diff --git a/.github/alternate_byond_versions.txt b/.github/alternate_byond_versions.txt new file mode 100644 index 00000000000..7b50af46885 --- /dev/null +++ b/.github/alternate_byond_versions.txt @@ -0,0 +1,7 @@ +# This file contains extra tests to run for specific BYOND versions. +# This is useful for making sure we maintain compatibility with both older and newer versions, +# while still having our main tests run on a guaranteed pinned version. + +# Format is version: map +# Example: +# 500.1337: runtimestation diff --git a/.github/max_required_byond_client.txt b/.github/max_required_byond_client.txt new file mode 100644 index 00000000000..faf8058076a --- /dev/null +++ b/.github/max_required_byond_client.txt @@ -0,0 +1,8 @@ +# Highest byond client version allowed to be required by the byond world. Set to 9999 to disable the check flat out. +# If the compiled world requires clients use a version higher than this, ci will fail. +# for instance: if this is set to 514, and a pr uses a 515 client feature, an alert will trigger +# If you have to update this number for your pr, you should make it VERY CLEAR in the pr body that you did so. +# (Requiring clients update to connect to the game server is not something we like to spring on them with no notice, +# especially for beta builds where the pager/updater won't let them update without additional configuration.) + +514 diff --git a/.github/workflows/ci_suite.yml b/.github/workflows/ci_suite.yml index 047e7083943..c88fa24721e 100644 --- a/.github/workflows/ci_suite.yml +++ b/.github/workflows/ci_suite.yml @@ -3,129 +3,236 @@ on: push: branches: - master + - 'project/**' + - 'gh-readonly-queue/master/**' + - 'gh-readonly-queue/project/**' pull_request: branches: - master + - 'project/**' + merge_group: + branches: + - master jobs: run_linters: - if: "!contains(github.event.head_commit.message, '[ci skip]')" + if: ( !contains(github.event.head_commit.message, '[ci skip]') ) name: Run Linters runs-on: ubuntu-22.04 + concurrency: + group: run_linters-${{ github.head_ref || github.run_id }} + cancel-in-progress: true steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Restore SpacemanDMM cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: - path: $HOME/SpacemanDMM - key: ${{ runner.os }}-spacemandmm + path: ~/SpacemanDMM + key: ${{ runner.os }}-spacemandmm-${{ hashFiles('dependencies.sh') }} + restore-keys: | + ${{ runner.os }}-spacemandmm- - name: Restore Yarn cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: tgui/.yarn/cache - key: ${{ runner.os }}-yarn-${{ secrets.CACHE_PURGE_KEY }} + key: ${{ runner.os }}-yarn-${{ hashFiles('tgui/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn- + - name: Restore Node cache + uses: actions/cache@v4 + with: + path: ~/.nvm + key: ${{ runner.os }}-node-${{ hashFiles('dependencies.sh') }} + restore-keys: | + ${{ runner.os }}-node- + - name: Restore Bootstrap cache + uses: actions/cache@v4 + with: + path: tools/bootstrap/.cache + key: ${{ runner.os }}-bootstrap-${{ hashFiles('tools/requirements.txt') }} + restore-keys: | + ${{ runner.os }}-bootstrap- + - name: Restore Rust cache + uses: actions/cache@v4 + with: + path: ~/.cargo + key: ${{ runner.os }}-rust-${{ hashFiles('tools/ci/ci_dependencies.sh')}} + restore-keys: | + ${{ runner.os }}-rust- + - name: Install OpenDream + uses: robinraju/release-downloader@v1.9 + with: + repository: "OpenDreamProject/OpenDream" + tag: "latest" + fileName: "DMCompiler_linux-x64.tar.gz" + extract: true - name: Install Tools run: | pip3 install setuptools - bash tools/ci/install_pcregrep.sh bash tools/ci/install_node.sh bash tools/ci/install_spaceman_dmm.sh dreamchecker + bash tools/ci/install_ripgrep.sh tools/bootstrap/python -c '' - - name: Run Linters + - name: Give Linters A Go + id: linter-setup + run: ':' + - name: Run Grep Checks + if: steps.linter-setup.conclusion == 'success' && !cancelled() + run: bash tools/ci/check_grep.sh + - name: Ticked File Enforcement + if: steps.linter-setup.conclusion == 'success' && !cancelled() + run: | + tools/bootstrap/python tools/ticked_file_enforcement/ticked_file_enforcement.py < tools/ticked_file_enforcement/schemas/tgmc_dme.json + tools/bootstrap/python tools/ticked_file_enforcement/ticked_file_enforcement.py < tools/ticked_file_enforcement/schemas/unit_tests.json + - name: Run DreamChecker + if: steps.linter-setup.conclusion == 'success' && !cancelled() + shell: bash + run: ~/dreamchecker 2>&1 | bash tools/ci/annotate_dm.sh + - name: Run OpenDream + if: steps.linter-setup.conclusion == 'success' && !cancelled() + run: ./DMCompiler_linux-x64/DMCompiler tgmc.dme --suppress-unimplemented --define=CIBUILDING | bash tools/ci/annotate_od.sh + - name: Run Map Checks + if: steps.linter-setup.conclusion == 'success' && !cancelled() run: | - bash tools/ci/check_filedirs.sh tgmc.dme - bash tools/ci/check_changelogs.sh - bash tools/ci/check_grep.sh - bash tools/ci/check_misc.sh - tools/bootstrap/python -m tools.maplint.source - tools/build/build --ci lint tgui-test - tools/bootstrap/python -m dmi.test tools/bootstrap/python -m mapmerge2.dmm_test - ~/dreamchecker > ${GITHUB_WORKSPACE}/output-annotations.txt 2>&1 - - name: Annotate Lints - uses: yogstation13/DreamAnnotate@v2 - if: always() - with: - outputFile: output-annotations.txt + tools/bootstrap/python -m tools.maplint.source + - name: Run DMI Tests + if: steps.linter-setup.conclusion == 'success' && !cancelled() + run: tools/bootstrap/python -m dmi.test + - name: Check File Directories + if: steps.linter-setup.conclusion == 'success' && !cancelled() + run: bash tools/ci/check_filedirs.sh tgmc.dme + - name: Check Changelogs + if: steps.linter-setup.conclusion == 'success' && !cancelled() + run: bash tools/ci/check_changelogs.sh + - name: Check Miscellaneous Files + if: steps.linter-setup.conclusion == 'success' && !cancelled() + run: bash tools/ci/check_misc.sh + - name: Run TGUI Checks + if: steps.linter-setup.conclusion == 'success' && !cancelled() + run: tools/build/build --ci lint tgui-test compile_all_maps: - if: "!contains(github.event.head_commit.message, '[ci skip]')" + if: ( !contains(github.event.head_commit.message, '[ci skip]') ) name: Compile Maps - runs-on: ubuntu-20.04 + needs: [collect_data] + runs-on: ubuntu-22.04 + concurrency: + group: compile_all_maps-${{ github.head_ref || github.run_id }} + cancel-in-progress: true steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Restore BYOND cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: - path: $HOME/BYOND - key: ${{ runner.os }}-byond + path: ~/BYOND + key: ${{ runner.os }}-byond-${{ hashFiles('dependencies.sh') }} - name: Compile All Maps run: | bash tools/ci/install_byond.sh source $HOME/BYOND/byond/bin/byondsetup tools/build/build --ci dm -DCIBUILDING -DCITESTING -DALL_MAPS + - name: Check client Compatibility + uses: tgstation/byond-client-compatibility-check@v3 + with: + dmb-location: tgmc.dmb + max-required-client-version: ${{needs.collect_data.outputs.max_required_byond_client}} - run_all_tests: - if: "!contains(github.event.head_commit.message, '[ci skip]')" - name: Integration Tests - runs-on: ubuntu-20.04 - services: - mysql: - image: mysql:latest - env: - MYSQL_ROOT_PASSWORD: root - ports: - - 3306 - options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 + collect_data: + if: ( !contains(github.event.head_commit.message, '[ci skip]') ) + name: Collect data for other tasks + runs-on: ubuntu-22.04 + outputs: + maps: ${{ steps.map_finder.outputs.maps }} + alternate_tests: ${{ steps.alternate_test_finder.outputs.alternate_tests }} + max_required_byond_client: ${{ steps.max_required_byond_client.outputs.max_required_byond_client }} + concurrency: + group: find_all_maps-${{ github.head_ref || github.run_id }} + cancel-in-progress: true steps: - - uses: actions/checkout@v3 - - name: Setup cache - uses: actions/cache@v3 - with: - path: $HOME/BYOND - key: ${{ runner.os }}-byond - - name: Setup database + - uses: actions/checkout@v4 + - name: Find Maps + id: map_finder run: | - sudo systemctl start mysql - mysql -u root -proot -e 'CREATE DATABASE tg_ci;' - mysql -u root -proot tg_ci < SQL/tgmc-schema.sql - mysql -u root -proot -e 'CREATE DATABASE tg_ci_prefixed;' - - name: Install rust-g + echo "$(ls -mw0 _maps/*.json)" > maps_output.txt + sed -i -e s+_maps/+\"+g -e s+.json+\"+g maps_output.txt + echo "Maps: $(cat maps_output.txt)" + echo "maps={\"paths\":[$(cat maps_output.txt)]}" >> $GITHUB_OUTPUT + - name: Find Alternate Tests + id: alternate_test_finder run: | - bash tools/ci/install_rust_g.sh - - name: Compile and run tests + ALTERNATE_TESTS_JSON=$(jq -nRc '[inputs | capture("^(?[0-9]+)\\.(?[0-9]+): (?.+)$")]' .github/alternate_byond_versions.txt) + echo "alternate_tests=$ALTERNATE_TESTS_JSON" >> $GITHUB_OUTPUT + - name: Collect byond client version configuration + id: max_required_byond_client + #the regex here does not filter out non-numbers because error messages about no input are less helpful then error messages about bad input (which includes the bad input) run: | - bash tools/ci/install_byond.sh - source $HOME/BYOND/byond/bin/byondsetup - tools/build/build --ci -DCIBUILDING - bash tools/ci/run_server.sh + echo "max_required_byond_client=$(grep -Ev '^[[:blank:]]{0,}#{1,}|^[[:blank:]]{0,}$' .github/max_required_byond_client.txt | tail -n1)" >> $GITHUB_OUTPUT + + run_all_tests: + if: ( !contains(github.event.head_commit.message, '[ci skip]') ) + name: Integration Tests + needs: [collect_data] + strategy: + fail-fast: false + matrix: + map: ${{ fromJSON(needs.collect_data.outputs.maps).paths }} + concurrency: + group: run_all_tests-${{ github.head_ref || github.run_id }}-${{ matrix.map }} + cancel-in-progress: true + uses: ./.github/workflows/run_integration_tests.yml + with: + map: ${{ matrix.map }} + max_required_byond_client: ${{needs.collect_data.outputs.max_required_byond_client}} + + run_alternate_tests: + if: ( !contains(github.event.head_commit.message, '[ci skip]') && needs.collect_data.outputs.alternate_tests != '[]' ) + name: Alternate Tests + needs: [collect_data] + strategy: + fail-fast: false + matrix: + setup: ${{ fromJSON(needs.collect_data.outputs.alternate_tests) }} + concurrency: + group: run_all_tests-${{ github.head_ref || github.run_id }}-${{ matrix.setup.major }}.${{ matrix.setup.minor }}-${{ matrix.setup.map }} + cancel-in-progress: true + uses: ./.github/workflows/run_integration_tests.yml + with: + map: ${{ matrix.setup.map }} + major: ${{ matrix.setup.major }} + minor: ${{ matrix.setup.minor }} + max_required_byond_client: ${{needs.collect_data.outputs.max_required_byond_client}} + + check_alternate_tests: + if: ( !contains(github.event.head_commit.message, '[ci skip]') && needs.collect_data.outputs.alternate_tests != '[]' ) + name: Check Alternate Tests + needs: [run_alternate_tests] + runs-on: ubuntu-22.04 + steps: + - run: echo Alternate tests passed. test_windows: - if: "!contains(github.event.head_commit.message, '[ci skip]')" + if: ( !contains(github.event.head_commit.message, '[ci skip]') ) name: Windows Build + needs: [collect_data] runs-on: windows-latest concurrency: group: test_windows-${{ github.head_ref || github.run_id }} cancel-in-progress: true steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Restore Yarn cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: tgui/.yarn/cache key: ${{ runner.os }}-yarn-${{ hashFiles('tgui/yarn.lock') }} restore-keys: | - ${{ runner.os }}-build- - ${{ runner.os }}- + ${{ runner.os }}-yarn- - name: Compile run: pwsh tools/ci/build.ps1 env: DM_EXE: "C:\\byond\\bin\\dm.exe" - - name: Create artifact - run: | - md deploy - bash tools/deploy.sh ./deploy - - name: Deploy artifact - uses: actions/upload-artifact@v3 + - name: Check client Compatibility + uses: tgstation/byond-client-compatibility-check@v3 with: - name: deploy - path: deploy + dmb-location: tgmc.dmb + max-required-client-version: ${{needs.collect_data.outputs.max_required_byond_client}} diff --git a/.github/workflows/run_integration_tests.yml b/.github/workflows/run_integration_tests.yml new file mode 100644 index 00000000000..6f78b743e27 --- /dev/null +++ b/.github/workflows/run_integration_tests.yml @@ -0,0 +1,72 @@ +# This is a reusable workflow to run integration tests on a single map. +# This is run for every single map in ci_suite.yml. You might want to edit that instead. +name: Run Integration Tests +on: + workflow_call: + inputs: + map: + required: true + type: string + major: + required: false + type: string + minor: + required: false + type: string + max_required_byond_client: + required: true + type: string +jobs: + run_integration_tests: + runs-on: ubuntu-latest + services: + mysql: + image: mysql:latest + env: + MYSQL_ROOT_PASSWORD: root + ports: + - 3306 + options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 + steps: + - uses: actions/checkout@v4 + - name: Restore BYOND cache + uses: actions/cache@v4 + with: + path: ~/BYOND + key: ${{ runner.os }}-byond-${{ hashFiles('dependencies.sh') }} + - name: Setup database + run: | + sudo systemctl start mysql + mysql -u root -proot -e 'CREATE DATABASE tg_ci;' + mysql -u root -proot tg_ci < SQL/tgmc-schema.sql + - name: Install rust-g + run: | + bash tools/ci/install_rust_g.sh + - name: Configure version + run: | + echo "BYOND_MAJOR=${{ inputs.major }}" >> $GITHUB_ENV + echo "BYOND_MINOR=${{ inputs.minor }}" >> $GITHUB_ENV + if: ${{ inputs.major }} + - name: Compile Tests + id: compile_tests + run: | + bash tools/ci/install_byond.sh + source $HOME/BYOND/byond/bin/byondsetup + tools/build/build --ci dm -DCIBUILDING -DANSICOLORS -WError -NWTG0001 + - name: Run Tests + run: | + source $HOME/BYOND/byond/bin/byondsetup + bash tools/ci/run_server.sh ${{ inputs.map }} + - name: Upload screenshot tests + if: always() + uses: actions/upload-artifact@v4 + with: + name: test_artifacts_${{ inputs.map }}_${{ inputs.major }}_${{ inputs.minor }} + path: data/screenshots_new/ + retention-days: 1 + - name: Check client Compatibility + if: always() && steps.compile_tests.outcome == 'success' + uses: tgstation/byond-client-compatibility-check@v3 + with: + dmb-location: tgmc.dmb + max-required-client-version: ${{inputs.max_required_byond_client}} diff --git a/.gitignore b/.gitignore index 60e1a24d00d..b560c67adbc 100644 --- a/.gitignore +++ b/.gitignore @@ -46,6 +46,7 @@ dmdoc/* tools/UnstandardnessTestForDM/UnstandardnessTestForDM/obj/x86/Debug/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs tools/hyperscale_converter/output/* + config/shipmaps.txt config/motd.txt config/modes.txt @@ -54,3 +55,15 @@ config/dbconfig.txt config/config.txt config/admins.txt config/admin_ranks.txt + +# JavaScript tools +**/node_modules + +# named byond versions config +/tools/build/dm_versions.json + +# From /tools/define_sanity/check.py - potential output file that we load onto the user's machine that we don't want to have committed. +define_sanity_output.txt + +# Running OpenDream locally +tgmc.json diff --git a/__odlint.dm b/__odlint.dm new file mode 100644 index 00000000000..b7c120514a1 --- /dev/null +++ b/__odlint.dm @@ -0,0 +1,10 @@ +// This file is included right at the start of the DME. +// Its purpose is to enable multiple lints (pragmas) that are supported by OpenDream to better validate the codebase +// These are essentially nitpicks the DM compiler should pick up on but doesnt + +#if !defined(SPACEMAN_DMM) && defined(OPENDREAM) +// This is in a separate file as a hack to avoid SpacemanDMM +// evaluating the #pragma lines, even if its outside a block it cares about +// (Also so people can code-own it. Shoutout to AA) +#include "tools/ci/od_lints.dm" +#endif diff --git a/_maps/map_files/Barrenquilla_Mining/Barrenquilla_Mining_Facility.dmm b/_maps/map_files/Barrenquilla_Mining/Barrenquilla_Mining_Facility.dmm index 41328e05fae..03311105878 100644 --- a/_maps/map_files/Barrenquilla_Mining/Barrenquilla_Mining_Facility.dmm +++ b/_maps/map_files/Barrenquilla_Mining/Barrenquilla_Mining_Facility.dmm @@ -332,11 +332,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/ground/lavaland/basalt, /area/barren/cave/north) -"bM" = ( -/obj/structure/cable, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/barren/caves/south) "bN" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/green/hidden{ @@ -377,11 +372,6 @@ }, /turf/open/floor/plating/ground/lavaland/basalt, /area/barren/cave/north) -"bX" = ( -/obj/structure/rack, -/obj/item/stack/sheet/mineral/phoron/small_stack, -/turf/open/floor/plating, -/area/barren/caves/south) "bZ" = ( /obj/machinery/light{ dir = 1 @@ -656,11 +646,6 @@ /obj/structure/noticeboard, /turf/closed/wall, /area/barren/civilian) -"dx" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/lavaland/basalt, -/area/barren/caves/south) "dy" = ( /obj/item/ore/silver, /turf/open/floor/plating/ground/lavaland/basalt, @@ -2676,13 +2661,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/shuttle/plating, /area/barren/security) -"mk" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/blood/writing{ - dir = 4 - }, -/turf/open/floor/plating/ground/lavaland/basalt, -/area/barren/caves/south) "mm" = ( /obj/effect/landmark/weed_node, /obj/structure/cable, @@ -4261,13 +4239,6 @@ }, /turf/open/floor/plating/ground/lavaland/basalt, /area/barren/cave/north) -"tE" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/decal/cleanable/cobweb{ - dir = 4 - }, -/turf/open/floor/plating, -/area/barren/caves/south) "tF" = ( /obj/item/shard, /obj/effect/decal/cleanable/dirt, @@ -4618,10 +4589,6 @@ }, /turf/open/floor/prison/bright_clean/two, /area/barren/security) -"vn" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/barren/caves/south) "vo" = ( /turf/closed/wall/r_wall, /area/barren) @@ -5192,14 +5159,6 @@ "yh" = ( /turf/closed/wall/r_wall/unmeltable, /area/barren/misc/eastarmory) -"yj" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/mainship/engineering/free_access{ - dir = 2; - name = "\improper Generator One" - }, -/turf/open/floor/plating, -/area/barren/caves/south) "yk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/writing, @@ -5805,11 +5764,6 @@ /obj/item/ammo_magazine/pistol/g22, /turf/open/floor/tile/red/full, /area/barren/security) -"Bn" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/marking, -/area/barren/cave/central) "Bo" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/miner, @@ -6843,11 +6797,6 @@ }, /turf/open/floor/plating, /area/barren/cave/central) -"Gg" = ( -/obj/structure/cable, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/barren/caves/south) "Gh" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/green/hidden{ @@ -8441,10 +8390,6 @@ dir = 4 }, /area/barren/medical) -"NT" = ( -/obj/structure/cable, -/turf/open/floor/marking, -/area/barren/cave/central) "NU" = ( /obj/structure/flora/pottedplant/twentytwo, /turf/open/floor/tile/bar{ @@ -9078,10 +9023,6 @@ /obj/effect/landmark/weed_node, /turf/open/floor/prison/kitchen, /area/barren/civilian/cook) -"Ra" = ( -/obj/structure/cable, -/turf/open/floor/plating/dmg1, -/area/barren/cave/central) "Rb" = ( /obj/machinery/power/apc/drained{ dir = 1 @@ -9459,11 +9400,6 @@ /obj/effect/landmark/weed_node, /turf/open/floor/wood, /area/barren/security) -"SU" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/plating, -/area/barren/caves/south) "SV" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8 @@ -9941,11 +9877,6 @@ /obj/item/trash/cigbutt/cigarbutt, /turf/open/floor/wood, /area/barren/civilian/workdorm) -"Vy" = ( -/obj/structure/fence, -/obj/structure/cable, -/turf/open/floor/plating/ground/lavaland/basalt, -/area/barren/caves/south) "Vz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/weed_node, @@ -10075,10 +10006,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/barren/security) -"VZ" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/lavaland/basalt, -/area/barren/caves/south) "Wa" = ( /obj/structure/cable, /obj/machinery/door/poddoor/mainship/indestructible{ @@ -10402,7 +10329,6 @@ /turf/open/floor/plating/ground/lavaland/basalt, /area/barren/caves/south) "XD" = ( -/obj/structure/cable, /turf/open/floor/plating/ground/lavaland/basalt/glowing, /area/barren/caves/south) "XG" = ( @@ -10664,11 +10590,6 @@ name = "medical" }, /area/barren/medical) -"YS" = ( -/obj/item/lightstick/red/anchored, -/obj/structure/cable, -/turf/open/floor/plating/ground/lavaland/basalt, -/area/barren/caves/south) "YU" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/manifold/green/hidden{ @@ -10821,11 +10742,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/barren/civilian) -"ZD" = ( -/obj/structure/cable, -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/lavaland/basalt, -/area/barren/caves/south) "ZF" = ( /obj/machinery/light{ dir = 4 @@ -37819,17 +37735,17 @@ ZL ZL RH Lm -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -dx -VZ +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +WF +Zg Zg Zg Zg @@ -38070,13 +37986,13 @@ wl jl Ta ZL -Rq -Rq -Rq -Rq -Rq -Rq -Rq +ZL +ZL +ZL +ZL +ZL +ZL +ZL ZL ZL ZL @@ -38086,12 +38002,12 @@ Ta ZL ZL Zg -VZ -VZ -ZD -VZ -VZ -VZ +Zg +Zg +Zb +Zg +Zg +Zg Zg Zg Zg @@ -38320,14 +38236,14 @@ Ru SQ aA Zd -Bn -NT -NT -NT -Ra -Hj -Rq -Rq +AG +SQ +SQ +SQ +MJ +Ta +ZL +ZL ZL ZL ZL @@ -38348,9 +38264,9 @@ Zg Zg Zg Zg -dx -VZ -VZ +WF +Zg +Zg Zg Zg ZS @@ -38607,7 +38523,7 @@ ZS Zg Zg WF -VZ +Zg Zg Zg ZS @@ -38864,7 +38780,7 @@ ZS ZS Zg Zg -VZ +Zg ZS RO ZS @@ -39121,7 +39037,7 @@ ZS ZS BN BN -Vy +BN ZS ZS ZS @@ -39378,7 +39294,7 @@ ZS ZS Zg Zg -VZ +Zg Zg ZS ZS @@ -39635,7 +39551,7 @@ Zg Zg Zg Zg -VZ +Zg Zg ZS ZS @@ -39892,7 +39808,7 @@ Zg Zg Zb Zg -VZ +Zg Zg zY ZS @@ -40149,7 +40065,7 @@ SM Zg Zg Zg -VZ +Zg Zg Zg ZS @@ -40663,7 +40579,7 @@ Zg Zg Zg Zg -VZ +Zg Zg Zg Zg @@ -40920,15 +40836,15 @@ Zg Zg Zg Zg -VZ Zg Zg Zg -sS -sS -sS -sS -sS +Zg +Zg +Zg +ZS +ZS +ZS ZS XB Zg @@ -41177,15 +41093,15 @@ Zg Zg Zg WF -YS +Zg To Zg Zg -sS -SU -HN -bX -sS +Zg +Zg +Zg +ZS +ZS ZS XB Zg @@ -41434,15 +41350,15 @@ Zg Zb Zg Zg -VZ -mk -VZ -VZ -yj -vn -vn -Gg -sS +Zg +jy +Zg +Zg +Zg +Zg +Zg +Zg +ZS ZS XB Zg @@ -41695,11 +41611,11 @@ Zg jy Zb Zg -sS -tE -HN -bM -sS +Zg +Zg +Zg +Zg +ZS ZS XB Zg @@ -41952,11 +41868,11 @@ Zg jy Zg Zg -sS -sS -sS -sS -sS +Zg +Zg +Zg +Zg +ZS ZS ZS XB diff --git a/_maps/map_files/BigRed_v2/BigRed_v2.dmm b/_maps/map_files/BigRed_v2/BigRed_v2.dmm index 4ca269f0dc6..6f4bdf7ac7f 100644 --- a/_maps/map_files/BigRed_v2/BigRed_v2.dmm +++ b/_maps/map_files/BigRed_v2/BigRed_v2.dmm @@ -2728,7 +2728,6 @@ /area/bigredv2/caves/lambda_lab) "axF" = ( /obj/structure/barricade/wooden, -/obj/structure/barricade/wooden, /turf/open/floor/plating/ground/mars/random/sand, /area/bigredv2/outside/n) "axP" = ( diff --git a/_maps/map_files/Campaign maps/jungle_outpost/jungle_outpost.dmm b/_maps/map_files/Campaign maps/jungle_outpost/jungle_outpost.dmm deleted file mode 100644 index 62f0a70242f..00000000000 --- a/_maps/map_files/Campaign maps/jungle_outpost/jungle_outpost.dmm +++ /dev/null @@ -1,34673 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/ground/jungle) -"ab" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/tool/pen/blue, -/turf/open/floor/mainship/mono, -/area/campaign/jungle_outpost/outpost/medbay) -"ac" = ( -/obj/structure/rack, -/obj/item/weapon/gun/rifle/famas, -/obj/item/weapon/gun/rifle/famas, -/turf/open/floor/tile/red/redtaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/security) -"ad" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"af" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"ag" = ( -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"ah" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"ai" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req/depot) -"aj" = ( -/obj/vehicle/ridden/wheelchair{ - dir = 8 - }, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"ak" = ( -/obj/structure/prop/computer/broken/eighteen, -/obj/structure/table/reinforced, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"al" = ( -/obj/structure/stairs/edge{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"am" = ( -/obj/structure/catwalk, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"an" = ( -/obj/effect/spawner/random/misc/structure/broken_reinforced_window/colonyspawn, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"ao" = ( -/obj/machinery/door/airlock/glass{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"ap" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/computercircuit, -/obj/effect/spawner/random/engineering/tech_supply, -/obj/effect/spawner/random/engineering/tech_supply, -/turf/open/floor/tile/purple/whitepurple{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"aq" = ( -/obj/machinery/robotic_fabricator, -/turf/open/floor/tile/purple/whitepurple{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/science) -"as" = ( -/obj/machinery/power/smes/buildable/empty{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"au" = ( -/obj/structure/flora/tree/jungle, -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"av" = ( -/obj/item/trash/burger, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"ax" = ( -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living/hydro) -"ay" = ( -/obj/structure/cable, -/turf/open/floor, -/area/campaign/jungle_outpost/ground/jungle) -"aA" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"aB" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle) -"aC" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"aD" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"aE" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"aF" = ( -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"aG" = ( -/obj/structure/flora/pottedplant/ten, -/turf/open/floor/wood/variable/wide, -/area/campaign/jungle_outpost/outpost/outer/hermit) -"aH" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"aI" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"aJ" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle) -"aK" = ( -/turf/open/ground/grass/beach/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"aL" = ( -/obj/structure/extinguisher_cabinet/mini, -/obj/structure/cable, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"aM" = ( -/turf/open/floor/tile/blue/taupeblue{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/command) -"aN" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"aO" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/neutral{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/living/canteen) -"aQ" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/turf/open/ground/grass/beach/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"aR" = ( -/obj/structure/cable, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"aS" = ( -/obj/machinery/vending/nanomed{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"aU" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"aV" = ( -/turf/open/ground/grass/beach/corner2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"aX" = ( -/turf/open/floor/tile/brown{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/req) -"aY" = ( -/obj/structure/flora/tree/jungle, -/turf/open/ground/grass/beach/corner2, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"aZ" = ( -/turf/open/floor/tile/blue/taupeblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/command) -"ba" = ( -/turf/open/floor/iron/smooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"bb" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle) -"bc" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"be" = ( -/turf/open/floor/tile/red/redtaupecorner{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"bf" = ( -/obj/machinery/computer/general_air_control, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science) -"bg" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/science) -"bi" = ( -/obj/structure/rock/variable/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"bj" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"bk" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor/tile/purple/whitepurple{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"bl" = ( -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/west) -"bm" = ( -/obj/structure/table/reinforced, -/obj/item/mecha_parts/part/durand_left_arm, -/obj/structure/cable, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science) -"bo" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle/east) -"bp" = ( -/obj/structure/flora/tree/jungle/small, -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"bq" = ( -/turf/open/ground/grass/beach{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"br" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"bs" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"bt" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"bv" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"bw" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"by" = ( -/obj/structure/rock/variable/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"bz" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north) -"bA" = ( -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"bB" = ( -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science) -"bC" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req/depot) -"bD" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"bE" = ( -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"bF" = ( -/obj/structure/prop/machine_frame3, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"bG" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/landing) -"bH" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/green/greentaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/living) -"bJ" = ( -/turf/open/floor/tile/blue/whitebluecorner{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"bK" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"bL" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/tile/blue/taupeblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/command) -"bM" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"bN" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/tile/green/greentaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/living) -"bP" = ( -/obj/machinery/power/apc/drained{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/tile/purple/whitepurple{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"bQ" = ( -/obj/structure/catwalk, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"bR" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/glass{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"bS" = ( -/obj/structure/flora/jungle/grass, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"bT" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/ground/grass/beach{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"bU" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/river/east) -"bV" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"bW" = ( -/turf/open/floor/tile/blue/whitebluecorner{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"bX" = ( -/turf/open/floor/tile/neutral{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/living) -"bY" = ( -/obj/machinery/door/airlock/mainship/medical/free_access, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"bZ" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"ca" = ( -/obj/structure/table/mainship/nometal, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"cc" = ( -/obj/structure/rack, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"cd" = ( -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"ce" = ( -/obj/structure/flora/tree/jungle, -/obj/structure/flora/jungle/grass, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"cf" = ( -/obj/structure/closet, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/red/redtaupe{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/security) -"cg" = ( -/obj/structure/rock/variable/jungle_large, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"ch" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/north) -"ci" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"cj" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"ck" = ( -/obj/structure/flora/tree/jungle, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/lake) -"cl" = ( -/obj/structure/flora/tree/jungle, -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"cm" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"co" = ( -/obj/structure/stairs/seamless/edge_vert{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"cp" = ( -/obj/machinery/chem_master, -/obj/item/reagent_containers/glass/beaker/bluespace, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"cq" = ( -/obj/machinery/door/airlock/mainship/command/free_access{ - name = "\improper Operations Office" - }, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"cr" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"cs" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"ct" = ( -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/west) -"cu" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"cw" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/beach{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"cx" = ( -/obj/machinery/door/window/secure{ - dir = 2 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"cy" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/west) -"cz" = ( -/obj/structure/bed/chair/sofa/left{ - dir = 1 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"cA" = ( -/obj/structure/closet/wardrobe/toxins_white, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science) -"cG" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north) -"cH" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"cJ" = ( -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"cK" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"cM" = ( -/obj/structure/rack, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"cN" = ( -/obj/structure/closet/secure_closet/shiptech, -/turf/open/floor/tile/brown{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/req) -"cP" = ( -/turf/open/floor/tile/green/greentaupe{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/living) -"cR" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"cS" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle) -"cU" = ( -/obj/machinery/power/apc/drained{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/tile/blue/taupeblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/command) -"cV" = ( -/obj/structure/janitorialcart, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living) -"cW" = ( -/obj/machinery/door/airlock/glass_engineering, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"cX" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"cY" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"cZ" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/east) -"da" = ( -/obj/structure/stairs/seamless/edge_vert, -/turf/open/floor/tile/red/redtaupe, -/area/campaign/jungle_outpost/outpost/security/vault) -"db" = ( -/turf/open/ground/grass/beach{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/river/lake) -"dc" = ( -/obj/machinery/light, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"dd" = ( -/obj/machinery/vending/snack, -/turf/open/floor/tile/green/greentaupe, -/area/campaign/jungle_outpost/outpost/living) -"de" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"df" = ( -/obj/structure/cable, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science) -"dg" = ( -/obj/structure/rack, -/obj/effect/spawner/random/weaponry/explosive/grenade/multiplefour, -/turf/open/floor/tile/red/redtaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"dh" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living) -"dj" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/campaign/jungle_outpost/outpost/medbay) -"dk" = ( -/obj/structure/closet/secure_closet/guncabinet/nt_lab, -/turf/open/floor/tile/red/redtaupe{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/security) -"dl" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"dm" = ( -/turf/open/floor/plating, -/area/campaign/jungle_outpost/ground/jungle/west) -"dn" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"do" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle) -"dp" = ( -/obj/structure/cable, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"dq" = ( -/obj/structure/cargo_container/red{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"dr" = ( -/obj/structure/bed/chair/sofa/right, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"dt" = ( -/obj/structure/closet/secure_closet/shiptech, -/turf/open/floor/tile/brown{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/req) -"du" = ( -/obj/structure/bed/roller, -/turf/open/floor/tile/blue/whiteblue, -/area/campaign/jungle_outpost/outpost/medbay) -"dv" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/engibelt, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"dw" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/west) -"dx" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"dy" = ( -/obj/structure/flora/jungle/grass, -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle) -"dz" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle/north) -"dA" = ( -/turf/open/ground/coast/corner, -/area/campaign/jungle_outpost/ground/river/lake) -"dB" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 2 - }, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living) -"dC" = ( -/obj/structure/extinguisher_cabinet/mini, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"dD" = ( -/obj/structure/cable, -/turf/open/floor/tile/blue/whiteblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"dF" = ( -/obj/effect/spawner/random/engineering/structure/atmospherics_portable, -/turf/open/floor/tile/purple/whitepurple{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"dG" = ( -/obj/machinery/prop/computer/rdconsole, -/turf/open/floor/tile/purple/whitepurple{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"dH" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle/east) -"dI" = ( -/turf/open/floor/tile/purple/whitepurple{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"dJ" = ( -/obj/effect/turf_decal/grassdecal/corner2{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"dK" = ( -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"dL" = ( -/turf/open/ground/coast{ - dir = 5 - }, -/area/campaign/jungle_outpost/ground/river/lake) -"dM" = ( -/obj/structure/stairs/seamless/platform{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"dN" = ( -/obj/machinery/door/airlock/mainship/research/glass, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/science) -"dO" = ( -/obj/effect/spawner/random/misc/structure/broken_reinforced_window/colonyspawn, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"dP" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/powercell, -/obj/effect/spawner/random/engineering/powercell, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science) -"dQ" = ( -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"dR" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"dS" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/structure/flora/jungle/grass, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"dT" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/landing) -"dU" = ( -/obj/machinery/vending/cola, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"dV" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"dX" = ( -/turf/open/floor/tile/blue/whiteblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"dY" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/engineering) -"ea" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south) -"ed" = ( -/obj/structure/rock/variable/jungle, -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"ee" = ( -/obj/effect/spawner/random/misc/structure/broken_reinforced_window/colonyspawn, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"ef" = ( -/obj/structure/cable, -/turf/open/floor/tile/blue/whitebluecorner{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"eg" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/tile/green/greentaupe{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/living) -"eh" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"ei" = ( -/obj/structure/stairs/seamless/edge_vert{ - dir = 4 - }, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/north) -"ej" = ( -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"el" = ( -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req/qm) -"em" = ( -/turf/open/ground/grass/beach/corner, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"en" = ( -/obj/structure/prop/mainship/sensor_computer2, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"ep" = ( -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/bathroom) -"eq" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay) -"er" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south) -"es" = ( -/obj/structure/platform, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/engineering) -"et" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/hydro) -"eu" = ( -/obj/item/trash/raisins, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"ev" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/canteen) -"ew" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req/qm) -"ex" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle) -"ez" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/ground/grass/beach{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"eA" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"eB" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/ground/jungle/west) -"eC" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/west) -"eD" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"eF" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/engibelt, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"eG" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/science/south) -"eH" = ( -/turf/open/floor/tile/brown{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/req/qm) -"eJ" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"eK" = ( -/obj/machinery/power/smes/buildable/empty{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"eL" = ( -/obj/structure/flora/jungle/bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"eM" = ( -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"eN" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/tile/brown{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/req/depot) -"eO" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"eP" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/neutral{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/living/canteen) -"eR" = ( -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/science) -"eS" = ( -/obj/effect/spawner/random/engineering/structure/powergenerator, -/turf/open/floor/tile/purple/whitepurple{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"eT" = ( -/obj/structure/bed/chair/sofa/left{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/green/greentaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/living) -"eU" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"eV" = ( -/obj/structure/flora/jungle/bush, -/turf/open/ground/grass/beach/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"eW" = ( -/turf/open/floor/tile/green/greentaupe{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/living) -"eX" = ( -/obj/structure/table, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/engineering/insulatedgloves, -/turf/open/floor/tile/brown, -/area/campaign/jungle_outpost/outpost/req) -"eY" = ( -/obj/structure/platform, -/turf/open/floor, -/area/campaign/jungle_outpost/ground/jungle) -"eZ" = ( -/obj/effect/spawner/random/misc/structure/broken_reinforced_window/colonyspawn, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"fa" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"fb" = ( -/obj/structure/flora/jungle/grass, -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/jungle/east) -"fc" = ( -/obj/machinery/door/airlock/mainship/medical/free_access, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"fd" = ( -/obj/structure/table/woodentable, -/obj/item/tool/lighter/zippo, -/obj/item/storage/fancy/cigarettes/lady_finger, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"fe" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"ff" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/beach/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"fg" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"fi" = ( -/obj/effect/spawner/random/misc/structure/closet/electrical, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"fj" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"fk" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"fl" = ( -/turf/open/floor, -/area/campaign/jungle_outpost/ground/jungle) -"fo" = ( -/obj/structure/rack, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/engineering/tool, -/obj/machinery/vending/nanomed, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"fp" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating, -/area/campaign/jungle_outpost/ground/jungle/west) -"fq" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"fr" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform, -/turf/open/floor/tile/neutral/full, -/area/campaign/jungle_outpost/outpost/living/canteen) -"fs" = ( -/obj/structure/catwalk, -/obj/effect/turf_decal/riverdecal, -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/west) -"ft" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"fu" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"fw" = ( -/obj/structure/platform, -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/living/canteen) -"fx" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor/tile/neutral{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/living) -"fy" = ( -/obj/prop/hydroponics, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"fz" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/food_or_drink/burger, -/turf/open/floor/tile/neutral/full, -/area/campaign/jungle_outpost/outpost/living/canteen) -"fA" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/beach{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"fB" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/living) -"fC" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"fD" = ( -/obj/structure/prop/mainship/research/destructive_analyzer, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science) -"fF" = ( -/obj/structure/flora/tree/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"fG" = ( -/obj/structure/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living) -"fI" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req) -"fJ" = ( -/turf/open/floor/tile/blue/whiteblue, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"fK" = ( -/obj/structure/rack, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/tile/red/redtaupe{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"fL" = ( -/obj/structure/sink, -/obj/structure/cable, -/turf/open/floor/tile/blue/whiteblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"fN" = ( -/obj/machinery/vending/hydroseeds, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"fQ" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"fR" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/west) -"fS" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"fT" = ( -/obj/structure/filingcabinet, -/obj/machinery/light, -/turf/open/floor/tile/red/redtaupe{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/security) -"fU" = ( -/obj/structure/reagent_dispensers/wallmounted/peppertank, -/turf/open/floor/tile/red/redtaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/security) -"fV" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"fW" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"fX" = ( -/obj/machinery/door/airlock/mainship/command/free_access, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"fZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/bathroom) -"ga" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"gb" = ( -/obj/structure/table/mainship/nometal, -/obj/item/mass_spectrometer, -/obj/item/storage/box/pillbottles, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"gc" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"gd" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"ge" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/alt_seven, -/area/campaign/jungle_outpost/outpost/science/office) -"gf" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living) -"gg" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/north) -"gh" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"gj" = ( -/obj/structure/flora/jungle/bush, -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"gk" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/bomb_supply, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"gl" = ( -/obj/structure/rack, -/obj/item/clothing/head/helmet, -/obj/item/clothing/head/helmet, -/obj/item/clothing/head/helmet, -/turf/open/floor/tile/red/redtaupe{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"gm" = ( -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"gn" = ( -/obj/structure/table/woodentable, -/obj/item/storage/box/drinkingglasses, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"go" = ( -/obj/structure/flora/tree/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"gp" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/ground/jungle) -"gq" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/glass, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"gr" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"gs" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/science) -"gt" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/green/greentaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/living) -"gu" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/landing) -"gv" = ( -/obj/structure/table, -/obj/item/clothing/suit/apron, -/obj/item/clothing/gloves/botanic_leather, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"gw" = ( -/obj/structure/stairs/seamless/edge, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"gy" = ( -/turf/open/floor/tile/green/greentaupe, -/area/campaign/jungle_outpost/outpost/living) -"gz" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/extinguisher, -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science/south) -"gB" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/tile/red/redtaupe{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/security) -"gC" = ( -/obj/structure/closet/crate/secure/nanotrasen, -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science/south) -"gD" = ( -/obj/machinery/door/airlock/mainship/engineering/free_access{ - name = "\improper Engineering Dome" - }, -/obj/structure/cable, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"gE" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"gF" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"gG" = ( -/obj/machinery/light, -/turf/open/floor/tile/red/redtaupe{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/security) -"gH" = ( -/obj/structure/flora/tree/jungle, -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south) -"gI" = ( -/obj/structure/sink{ - dir = 4 - }, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"gK" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"gL" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/structure/table, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"gM" = ( -/obj/structure/rock/variable/jungle, -/turf/open/ground/grass/beach{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"gN" = ( -/obj/machinery/door/airlock/mainship/command/free_access, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"gO" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/north) -"gQ" = ( -/obj/structure/table, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"gR" = ( -/obj/effect/spawner/random/engineering/structure/powergenerator, -/turf/open/floor/tile/brown{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/req) -"gS" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/reagent_containers/food/drinks/bottle/gin, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"gT" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay) -"gU" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"gW" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"gX" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"gY" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north) -"gZ" = ( -/obj/structure/rock/variable/jungle, -/turf/open/ground/grass/beach/corner2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"ha" = ( -/turf/open/floor/tile/blue/taupeblue{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/command) -"hb" = ( -/obj/structure/stairs/seamless/edge{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"hc" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/tile/purple/whitepurple{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"hd" = ( -/obj/structure/flora/jungle/bush, -/turf/open/ground/grass/beach{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"he" = ( -/obj/structure/flora/jungle/grass, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"hf" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/mini, -/turf/open/floor/tile/neutral/full, -/area/campaign/jungle_outpost/outpost/living/canteen) -"hg" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"hh" = ( -/obj/structure/prop/mainship/telecomms/bus, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/command) -"hi" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"hj" = ( -/obj/structure/table/fancywoodentable, -/obj/effect/spawner/random/misc/book, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"hk" = ( -/turf/open/ground/grass/beach{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"hl" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/hydro) -"hm" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"hn" = ( -/obj/structure/stairs/seamless/edge_vert{ - dir = 4 - }, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle) -"ho" = ( -/obj/machinery/vending/snack, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"hp" = ( -/turf/open/floor/tile/blue/whiteblue{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"hq" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/tile/purple/whitepurple{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"hr" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"hs" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/assemblies, -/obj/effect/spawner/random/engineering/radio, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"ht" = ( -/turf/closed/mineral/smooth/indestructible, -/area/campaign/jungle_outpost/ground/jungle/east) -"hu" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"hv" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"hw" = ( -/obj/structure/cable, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req/qm) -"hx" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living) -"hz" = ( -/obj/structure/mirror{ - dir = 4 - }, -/obj/structure/sink/bathroom{ - dir = 8 - }, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/bathroom) -"hC" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/campaign/jungle_outpost/outpost/science) -"hD" = ( -/obj/structure/rack, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"hE" = ( -/obj/structure/prop/computer/broken/five, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"hF" = ( -/obj/structure/cargo_container/ch_green{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"hH" = ( -/obj/structure/coatrack, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"hI" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle) -"hJ" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/ground/grass/beach/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"hL" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"hN" = ( -/obj/structure/sign/greencross{ - dir = 1 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"hO" = ( -/obj/machinery/door/airlock/multi_tile/mainship/secdoor{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"hP" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/mineral, -/obj/effect/spawner/random/engineering/cable, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"hQ" = ( -/turf/open/floor/tile/blue/taupeblue{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/command) -"hS" = ( -/obj/structure/prop/vehicle/crane/destructible, -/turf/open/floor/iron/smooth, -/area/campaign/jungle_outpost/ground/river/west) -"hT" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/red/redtaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"hU" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"hV" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/landing) -"hW" = ( -/obj/machinery/door/airlock/multi_tile/mainship/secdoor/glass{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"hX" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/landing) -"hY" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/beach/corner2, -/area/campaign/jungle_outpost/ground/jungle/east) -"hZ" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/bomb_supply, -/obj/effect/spawner/random/engineering/bomb_supply, -/obj/effect/spawner/random/engineering/powercell, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"ia" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/tile/neutral/full, -/area/campaign/jungle_outpost/outpost/living/canteen) -"ib" = ( -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north) -"ic" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"id" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/ground/grass/beach/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"if" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"ig" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"ih" = ( -/obj/machinery/door/airlock/multi_tile/mainship/research{ - dir = 1 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"ii" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle) -"ij" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/hydro) -"il" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"im" = ( -/turf/open/ground/grass/beach/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"in" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/tool/plantspray/pests, -/obj/item/tool/plantspray/pests/old/carbaryl, -/obj/item/tool/shovel, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"io" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"ip" = ( -/obj/structure/table/reinforced, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"iq" = ( -/obj/structure/stairs/seamless/platform_vert/water{ - dir = 1 - }, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/outpost/science) -"ir" = ( -/obj/structure/window/reinforced, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"is" = ( -/turf/open/ground/grass/beach/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"it" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"ix" = ( -/obj/machinery/vending/nanomed, -/turf/open/floor/tile/brown{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/req/depot) -"iy" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/tile/red/redtaupe{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"iz" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2, -/area/campaign/jungle_outpost/ground/jungle/east) -"iA" = ( -/obj/machinery/computer/security, -/obj/structure/table/reinforced, -/turf/open/floor/tile/blue/taupeblue{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/command) -"iC" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/red/redtaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/security) -"iD" = ( -/turf/open/floor/tile/brown{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/req) -"iE" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"iF" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req/qm) -"iG" = ( -/turf/open/floor/plating/dmg3, -/area/campaign/jungle_outpost/ground/jungle/west) -"iH" = ( -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"iL" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/beach, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"iM" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"iN" = ( -/obj/structure/bookcase, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"iO" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle) -"iP" = ( -/turf/open/floor/iron/smooth, -/area/campaign/jungle_outpost/ground/river/west) -"iQ" = ( -/obj/structure/kitchenspike, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"iS" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"iT" = ( -/obj/structure/table/reinforced, -/obj/item/paper, -/obj/effect/spawner/random/medical/pillbottle, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"iU" = ( -/obj/structure/bed/roller, -/turf/open/floor/tile/blue/whiteblue{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"iV" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"iW" = ( -/turf/open/floor/tile/blue/taupebluecorner{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/command) -"iX" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/obj/structure/cable, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle) -"iY" = ( -/obj/structure/flora/tree/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"ja" = ( -/obj/machinery/smartfridge, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"jb" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/toolbox, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"jd" = ( -/turf/open/floor/tile/barber, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"je" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 31 - }, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"jf" = ( -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/landing) -"jg" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/beach, -/area/campaign/jungle_outpost/ground/jungle) -"ji" = ( -/obj/structure/flora/tree/jungle, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"jj" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south) -"jk" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/ground/grass/beach/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"jm" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"jn" = ( -/obj/machinery/light, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"jo" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"jp" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"jq" = ( -/obj/structure/table/mainship, -/obj/item/tool/kitchen/tray, -/obj/effect/spawner/random/food_or_drink/burger, -/turf/open/floor/tile/barber, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"jt" = ( -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"jv" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"jw" = ( -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"jy" = ( -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"jA" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"jB" = ( -/turf/open/floor/tile/red/redtaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/security) -"jC" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science/south) -"jD" = ( -/obj/effect/spawner/random/misc/structure/girder, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"jF" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"jG" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science) -"jH" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"jI" = ( -/turf/open/floor/tile/brown, -/area/campaign/jungle_outpost/outpost/req/depot) -"jJ" = ( -/turf/closed/wall, -/area/space) -"jK" = ( -/obj/structure/rock/variable/jungle, -/turf/open/ground/grass/beach{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"jL" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"jM" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/tile/green/greentaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/living) -"jN" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/office) -"jO" = ( -/turf/open/ground/coast{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/river/lake) -"jP" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south) -"jQ" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle/west) -"jS" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"jT" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/ground/grass/beach/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"jV" = ( -/turf/open/ground/grass/beach/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"jW" = ( -/obj/machinery/power/apc/drained{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"jX" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/item/trash/cigbutt, -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"jY" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/office) -"jZ" = ( -/obj/structure/cable, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security/vault) -"ka" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"kb" = ( -/obj/effect/turf_decal/lvsanddecal{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"kd" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/powercell, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"ke" = ( -/obj/machinery/door/airlock/mainship/security{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"kf" = ( -/turf/open/floor/tile/blue/whiteblue{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"kg" = ( -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/engineering) -"kh" = ( -/obj/structure/flora/tree/jungle/small, -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"ki" = ( -/obj/structure/bed/chair, -/turf/open/floor/tile/neutral/full, -/area/campaign/jungle_outpost/outpost/living/canteen) -"kj" = ( -/obj/machinery/researchcomp, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science) -"km" = ( -/obj/structure/rack, -/obj/effect/spawner/random/engineering/engibelt, -/obj/effect/spawner/random/engineering/engibelt, -/turf/open/floor/tile/red/redtaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"kn" = ( -/obj/structure/table/mainship/nometal, -/obj/item/storage/box/syringes{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"kp" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"ks" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle) -"kt" = ( -/turf/closed/mineral/smooth/indestructible, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"ku" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/obj/structure/cable, -/turf/open/ground/grass/beach/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"kv" = ( -/obj/machinery/botany/extractor, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"kw" = ( -/obj/machinery/door/airlock/mainship/security, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"kx" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/tile/brown{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/req/qm) -"ky" = ( -/obj/machinery/door/airlock/mainship/engineering{ - dir = 1 - }, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req/depot) -"kz" = ( -/obj/structure/closet/secure_closet/brig, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/red/redtaupe{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/security) -"kB" = ( -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt, -/turf/open/floor/tile/brown, -/area/campaign/jungle_outpost/outpost/req/depot) -"kC" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req/qm) -"kE" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/north) -"kG" = ( -/obj/structure/flora/jungle/bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"kH" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"kI" = ( -/obj/structure/mine_structure/wooden/support_wall, -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"kJ" = ( -/obj/structure/cable, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"kK" = ( -/turf/open/floor/tile/blue/taupebluecorner, -/area/campaign/jungle_outpost/outpost/command) -"kL" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"kM" = ( -/obj/structure/cable, -/turf/open/floor/tile/neutral, -/area/campaign/jungle_outpost/outpost/living/canteen) -"kN" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/beach/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"kO" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"kP" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle) -"kQ" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"kR" = ( -/obj/structure/stairs/seamless/edge, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"kS" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/west) -"kT" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/north) -"kU" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north) -"kV" = ( -/obj/machinery/door/airlock/mainship/medical/free_access{ - dir = 1 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"kX" = ( -/obj/structure/cable, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"kY" = ( -/obj/machinery/vending/nanomed, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"kZ" = ( -/obj/structure/flora/jungle/bush, -/turf/open/ground/grass/beach, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"la" = ( -/obj/structure/bookcase, -/obj/item/book/manual/engineering_singularity_safety, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"lb" = ( -/obj/structure/table, -/obj/structure/flora/pottedplant/two, -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/tile/blue/whiteblue{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"lc" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/ground/jungle) -"ld" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"le" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/insulatedgloves, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"lf" = ( -/obj/structure/sink/bathroom{ - dir = 8 - }, -/obj/structure/mirror{ - dir = 4 - }, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/command) -"lg" = ( -/obj/structure/table/mainship/nometal, -/obj/item/storage/box/beakers, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, -/turf/open/floor/tile/blue/whiteblue{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"lh" = ( -/obj/structure/bed/chair/sofa/left{ - dir = 4 - }, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"li" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science) -"lk" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"ll" = ( -/obj/structure/closet/cabinet, -/obj/effect/spawner/random/medical/pillbottle, -/turf/open/floor/wood/alt_seven, -/area/campaign/jungle_outpost/outpost/science/office) -"ln" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/tile/blue/whiteblue, -/area/campaign/jungle_outpost/outpost/medbay) -"lp" = ( -/obj/structure/flora/tree/jungle, -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"lr" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/bathroom) -"ls" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"lt" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/command/captain) -"lu" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"lv" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/security) -"lw" = ( -/obj/structure/catwalk, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/north) -"lx" = ( -/obj/structure/cargo_container{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"ly" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req/qm) -"lz" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"lA" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle) -"lB" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/ground/grass/beach/corner, -/area/campaign/jungle_outpost/ground/jungle) -"lC" = ( -/turf/open/floor/tile/neutral{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/living/canteen) -"lD" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"lE" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"lF" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/insulatedgloves, -/obj/effect/spawner/random/engineering/structure/handheld_lighting, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science) -"lG" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/obj/structure/cable, -/turf/open/ground/grass/beach/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"lH" = ( -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/living/canteen) -"lI" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/west) -"lJ" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"lK" = ( -/turf/closed/mineral/smooth/indestructible, -/area/campaign/jungle_outpost/ground/river/west) -"lL" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"lM" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/misc/folder, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"lN" = ( -/obj/structure/catwalk, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/east) -"lO" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/campaign/jungle_outpost/outpost/command/captain) -"lS" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/campaign/jungle_outpost/outpost/command/captain) -"lT" = ( -/obj/structure/table, -/obj/item/storage/firstaid/adv, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"lU" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle/west) -"lV" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"lW" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"lX" = ( -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"lY" = ( -/obj/structure/stairs/seamless/edge{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"lZ" = ( -/obj/structure/rock/variable/jungle, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"ma" = ( -/obj/structure/flora/tree/jungle/small, -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"mb" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/misc/folder/nooffset, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"mc" = ( -/obj/structure/flora/jungle/grass, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"me" = ( -/obj/structure/rock/variable/jungle_large, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/east) -"mh" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req) -"mi" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"mj" = ( -/obj/structure/flora/jungle/grass, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"ml" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/blue/taupeblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/command) -"mm" = ( -/obj/structure/flora/jungle/grass, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"mn" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"mo" = ( -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"mp" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/science) -"mq" = ( -/obj/structure/cargo_container/horizontal{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"ms" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"mu" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"mv" = ( -/obj/structure/table, -/obj/item/clothing/under/color/blue, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living) -"mw" = ( -/obj/structure/largecrate/supply/explosives, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"my" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living) -"mz" = ( -/obj/structure/closet/wardrobe/robotics_black, -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science) -"mA" = ( -/obj/structure/cargo_container/ch_green, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"mB" = ( -/obj/effect/spawner/random/misc/structure/closet/welding, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"mD" = ( -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"mE" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"mG" = ( -/obj/effect/spawner/random/engineering/structure/tank/fuelweighted, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"mH" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/beach/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"mI" = ( -/turf/open/floor/plating/dmg1, -/area/campaign/jungle_outpost/ground/jungle/west) -"mJ" = ( -/obj/effect/spawner/random/misc/structure/girder, -/turf/open/floor/plating, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"mK" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/east) -"mL" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"mO" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"mP" = ( -/obj/structure/cargo_container/red{ - dir = 4 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"mS" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"mT" = ( -/obj/structure/rock/variable/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"mU" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/engibelt, -/turf/open/floor/tile/brown{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/req/depot) -"mV" = ( -/obj/machinery/recharge_station, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/science) -"mW" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/ground/jungle) -"mX" = ( -/obj/machinery/door/airlock/multi_tile/mainship/research, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"mY" = ( -/obj/structure/prop/vehicle/crawler/crawler_red, -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"mZ" = ( -/obj/structure/flora/jungle/grass, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"na" = ( -/obj/structure/stairs/edge, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/east) -"nc" = ( -/obj/structure/table/reinforced, -/turf/open/floor/tile/blue/taupeblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/command) -"nd" = ( -/obj/effect/turf_decal/grassdecal{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"ne" = ( -/turf/open/ground/coast, -/area/campaign/jungle_outpost/ground/river/lake) -"nf" = ( -/obj/structure/cable, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"ng" = ( -/obj/structure/cable, -/turf/open/floor/iron/smooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"nj" = ( -/obj/structure/catwalk, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/west) -"nl" = ( -/obj/structure/flora/jungle/grass, -/turf/open/ground/grass/beach, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"nm" = ( -/turf/open/floor/tile/red/redtaupe{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/security) -"nn" = ( -/obj/structure/bed/stool, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"no" = ( -/obj/structure/closet/l3closet/security, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/red/redtaupe{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/security) -"nq" = ( -/obj/machinery/iv_drip, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"nr" = ( -/obj/structure/stairs/seamless/edge_vert, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"ns" = ( -/obj/structure/flora/jungle/grass, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"nv" = ( -/obj/structure/closet/cabinet, -/obj/item/weapon/claymore/mercsword/machete/alt, -/obj/item/weapon/karambit/fade, -/turf/open/floor/wood/variable/wide, -/area/campaign/jungle_outpost/outpost/outer/hermit) -"nw" = ( -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/east) -"nx" = ( -/obj/structure/flora/tree/jungle, -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"ny" = ( -/obj/effect/spawner/random/engineering/structure/tank_dispenser, -/turf/open/floor/tile/brown{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/req) -"nA" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"nB" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/atmos_alert, -/turf/open/floor/tile/blue/taupeblue{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/command) -"nC" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/beach/corner2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"nD" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"nE" = ( -/turf/open/floor/tile/red/redtaupe{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/security) -"nF" = ( -/obj/structure/rock/variable/jungle/big, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"nH" = ( -/obj/structure/table/mainship, -/obj/item/clothing/suit/chef/classic, -/obj/item/clothing/head/chefhat, -/obj/item/clothing/gloves/latex, -/turf/open/floor/tile/barber, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"nI" = ( -/turf/closed/gm/dense, -/area/campaign/jungle_outpost/ground/jungle/south) -"nJ" = ( -/turf/open/floor/tile/blue/whiteblue{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"nK" = ( -/obj/structure/cargo_container{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"nM" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"nN" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof, -/obj/machinery/light, -/turf/open/floor/tile/red/redtaupe, -/area/campaign/jungle_outpost/outpost/command) -"nO" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"nP" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"nQ" = ( -/obj/structure/bed/chair/sofa/right, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"nR" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/tile/blue/taupeblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/command) -"nS" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"nT" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"nU" = ( -/obj/structure/cargo_container/green, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"nV" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"nX" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/misc/earmuffs, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"nY" = ( -/obj/machinery/door/airlock/glass_engineering, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/living/canteen) -"nZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/tile/blue/taupeblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/command) -"ob" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north) -"oc" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"od" = ( -/obj/structure/table/fancywoodentable, -/obj/effect/spawner/random/misc/folder, -/turf/open/floor/carpet, -/area/campaign/jungle_outpost/outpost/command/captain) -"oe" = ( -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"of" = ( -/obj/structure/mine_structure/wooden/support_wall/beams, -/turf/open/floor/plating/ground/dirt, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"og" = ( -/obj/machinery/vending/medical, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"oh" = ( -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south) -"oj" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"ok" = ( -/turf/open/ground/grass/beach/corner2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/river/lake) -"ol" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req) -"oo" = ( -/obj/structure/cable, -/turf/open/floor/tile/red/full, -/area/campaign/jungle_outpost/outpost/security/vault) -"op" = ( -/obj/effect/turf_decal/lvsanddecal, -/turf/open/floor/iron/smooth, -/area/campaign/jungle_outpost/ground/jungle) -"or" = ( -/turf/open/floor/tile/green/greentaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/living) -"os" = ( -/obj/structure/table, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"ot" = ( -/obj/structure/cable, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"ou" = ( -/obj/structure/platform, -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req/qm) -"ov" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/west) -"ow" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/command) -"ox" = ( -/obj/machinery/door/airlock/multi_tile/mainship/secdoor, -/turf/open/floor/tile/red/full, -/area/campaign/jungle_outpost/outpost/security/vault) -"oy" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north) -"oz" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"oA" = ( -/obj/machinery/vending/nanomed{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/red/redtaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/security) -"oB" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req/depot) -"oD" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/neutral/full, -/area/campaign/jungle_outpost/outpost/living/canteen) -"oE" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"oG" = ( -/obj/structure/prop/mainship/telecomms/processor, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/command) -"oH" = ( -/obj/structure/flora/jungle/grass, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"oI" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"oJ" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"oK" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"oL" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"oM" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"oN" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/command/captain) -"oO" = ( -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"oP" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"oQ" = ( -/obj/machinery/vending/snack, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"oR" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/science) -"oS" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/tile/green/greentaupe, -/area/campaign/jungle_outpost/outpost/living) -"oT" = ( -/obj/structure/filingcabinet, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/brown{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/req/qm) -"oU" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"oW" = ( -/obj/structure/stairs/seamless/edge{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"oX" = ( -/obj/effect/spawner/random/engineering/structure/tank, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req) -"oY" = ( -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/bathroom) -"oZ" = ( -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle) -"pa" = ( -/obj/structure/prop/mainship/sensor_computer2, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"pb" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"pc" = ( -/turf/open/floor/plating/ground/dirt, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"pd" = ( -/obj/structure/table/reinforced, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"pe" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/red/redtaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/security) -"pf" = ( -/obj/structure/prop/mainship/telecomms/broadcaster, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/command) -"ph" = ( -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/west) -"pi" = ( -/obj/effect/spawner/random/engineering/structure/gascan, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"pj" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/science) -"pl" = ( -/obj/structure/table, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/engineering/tech_supply, -/turf/open/floor/tile/brown{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/req/qm) -"pn" = ( -/obj/structure/cargo_container/wy{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"pp" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/beach/corner2, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"pq" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"pr" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req/depot) -"pt" = ( -/obj/effect/turf_decal/grassdecal, -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"pu" = ( -/obj/structure/table/reinforced, -/turf/open/floor/tile/red/redtaupe{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/command) -"pv" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/north) -"pw" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"px" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/beach, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"pA" = ( -/obj/structure/rock/variable/jungle, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle) -"pB" = ( -/obj/machinery/vending/engineering, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"pD" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay) -"pF" = ( -/obj/structure/prop/mainship/protolathe/sci, -/turf/open/floor/tile/purple/whitepurple{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"pG" = ( -/obj/structure/stairs/seamless/edge, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"pH" = ( -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/north) -"pI" = ( -/obj/structure/platform, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/science) -"pJ" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"pL" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"pM" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"pN" = ( -/obj/structure/bookcase, -/obj/item/book/manual/atmospipes, -/obj/machinery/light, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"pP" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"pQ" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/turf/open/ground/grass/beach/corner2, -/area/campaign/jungle_outpost/ground/jungle/north) -"pR" = ( -/obj/machinery/power/apc/drained{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"pS" = ( -/obj/structure/bed/chair/sofa/right{ - dir = 4 - }, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"pT" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/skills, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"pV" = ( -/obj/structure/catwalk, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"pW" = ( -/obj/structure/filingcabinet, -/turf/open/floor/tile/brown{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/req/depot) -"pX" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science) -"qa" = ( -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"qd" = ( -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"qe" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/beach/corner, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"qg" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"qi" = ( -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"qj" = ( -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security/vault) -"qk" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"ql" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req) -"qm" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north) -"qn" = ( -/obj/structure/table, -/obj/item/tool/hatchet{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/tool/analyzer/plant_analyzer, -/obj/effect/spawner/random/weaponry/melee, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"qo" = ( -/obj/structure/flora/jungle/bush, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south) -"qp" = ( -/obj/structure/flora/tree/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"qq" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/beach/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"qr" = ( -/obj/structure/prop/mainship/telecomms/bus, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/command) -"qs" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"qt" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"qu" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/toolbox, -/obj/effect/spawner/random/engineering/tool, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science) -"qv" = ( -/obj/structure/cable, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science) -"qx" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/ground/grass/beach, -/area/campaign/jungle_outpost/ground/jungle/north) -"qz" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"qA" = ( -/obj/structure/bed/chair/sofa/right, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"qC" = ( -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle/north) -"qD" = ( -/obj/structure/cargo_container/red, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"qE" = ( -/obj/structure/cargo_container/wy, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"qF" = ( -/obj/machinery/microwave, -/obj/structure/table/mainship, -/turf/open/floor/tile/barber, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"qG" = ( -/obj/structure/platform, -/obj/effect/spawner/random/misc/structure/broken_reinforced_window/colonyspawn, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"qH" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/tech_supply, -/obj/effect/spawner/random/engineering/radio, -/obj/effect/spawner/random/engineering/tool, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/science) -"qI" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/vending/hydroseeds, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"qK" = ( -/obj/machinery/vending/medical, -/turf/open/floor/tile/blue/whiteblue{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"qL" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle) -"qM" = ( -/obj/structure/stairs/seamless/edge_vert{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"qP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/tile/brown{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/req/depot) -"qQ" = ( -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"qR" = ( -/obj/structure/computerframe{ - anchored = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/red/full, -/area/campaign/jungle_outpost/outpost/security/vault) -"qS" = ( -/obj/structure/rack, -/obj/effect/spawner/random/engineering/structure/handheld_lighting, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"qT" = ( -/obj/structure/platform, -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science) -"qU" = ( -/obj/structure/flora/jungle/grass, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"qV" = ( -/obj/machinery/computer/body_scanconsole, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"qW" = ( -/obj/structure/table/reinforced, -/obj/machinery/light, -/obj/effect/spawner/random/misc/folder, -/turf/open/floor/tile/blue/taupeblue, -/area/campaign/jungle_outpost/outpost/command) -"ra" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/command) -"rb" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"rc" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"rd" = ( -/obj/effect/turf_decal/grassdecal{ - dir = 1 - }, -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"re" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/tool/plantspray/pests, -/obj/item/tool/plantspray/pests/old/lindane, -/obj/item/tool/scythe, -/obj/item/tool/shovel/spade, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"rf" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"rg" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/ground/jungle) -"rh" = ( -/obj/structure/catwalk, -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/north) -"ri" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/landing) -"rj" = ( -/obj/structure/largecrate/supply/weapons/flamers, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req) -"rk" = ( -/obj/structure/flora/jungle/grass, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"rl" = ( -/obj/structure/table/reinforced, -/obj/item/radio, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"rm" = ( -/turf/open/ground/grass/beach{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"rn" = ( -/obj/structure/platform_decoration, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"ro" = ( -/obj/effect/spawner/random/engineering/structure/canister, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/brown{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/req) -"rp" = ( -/obj/structure/table/mainship/nometal, -/obj/item/explosive/grenade/chem_grenade/cleaner, -/obj/item/storage/backpack/satchel/chem, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"rq" = ( -/obj/structure/table/mainship, -/obj/item/tool/kitchen/rollingpin, -/obj/effect/spawner/random/food_or_drink/kitchenknife, -/turf/open/floor/tile/barber, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"rr" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"rs" = ( -/obj/structure/bed/chair/sofa/left{ - dir = 1 - }, -/turf/open/floor/tile/green/greentaupe, -/area/campaign/jungle_outpost/outpost/living) -"rt" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"ru" = ( -/obj/structure/flora/jungle/grass, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"rv" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/security) -"rw" = ( -/obj/structure/flora/jungle/bush, -/turf/open/ground/grass/beach/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"rx" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"ry" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"rz" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req/depot) -"rA" = ( -/obj/structure/table/reinforced, -/turf/open/floor/tile/brown{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/req/depot) -"rB" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living) -"rC" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"rD" = ( -/turf/open/floor/wood/alt_seven, -/area/campaign/jungle_outpost/outpost/science/office) -"rE" = ( -/obj/machinery/light, -/turf/open/floor/tile/blue/taupeblue, -/area/campaign/jungle_outpost/outpost/command) -"rG" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"rH" = ( -/obj/structure/flora/tree/jungle/small, -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"rI" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/beach/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"rJ" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"rK" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/beach{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"rL" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/ground/grass/beach{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"rM" = ( -/turf/open/floor/tile/blue/taupebluecorner{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"rN" = ( -/obj/effect/decal/cleanable/blood/writing{ - dir = 4 - }, -/obj/machinery/door/airlock/mainship/medical/free_access, -/turf/open/floor/mainship/mono, -/area/campaign/jungle_outpost/outpost/medbay) -"rO" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/beach{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"rP" = ( -/obj/machinery/door/airlock/glass, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"rQ" = ( -/obj/structure/stairs/seamless/edge_vert, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"rR" = ( -/obj/structure/cargo_container/horizontal{ - dir = 8 - }, -/obj/structure/cargo_container/horizontal{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"rS" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"rU" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"rV" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req/depot) -"rW" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/beach/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"rX" = ( -/obj/structure/flora/tree/jungle, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/east) -"rZ" = ( -/obj/structure/reagent_dispensers/fueltank/xfuel, -/turf/open/floor/tile/purple/whitepurplecorner{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science) -"sa" = ( -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/security/vault) -"sb" = ( -/obj/effect/turf_decal/lvsanddecal{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/campaign/jungle_outpost/ground/jungle/south) -"sc" = ( -/obj/prop/hydroponics, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"sd" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"se" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"sf" = ( -/obj/structure/extinguisher_cabinet/mini{ - dir = 4 - }, -/turf/open/floor/tile/red/redtaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/security) -"sg" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2, -/area/campaign/jungle_outpost/ground/jungle/west) -"sh" = ( -/obj/structure/flora/tree/jungle, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"si" = ( -/obj/machinery/shield_gen, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science) -"sj" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle) -"sk" = ( -/obj/structure/flora/jungle/bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south) -"sm" = ( -/obj/structure/flora/jungle/grass, -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"sp" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req) -"sq" = ( -/obj/structure/catwalk, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south) -"sr" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/science) -"ss" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"st" = ( -/obj/machinery/vending/engivend, -/turf/open/floor/tile/brown{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/req) -"su" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/tile/purple/whitepurple{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/science) -"sw" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"sx" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2, -/area/campaign/jungle_outpost/ground/jungle) -"sy" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"sz" = ( -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"sC" = ( -/obj/structure/flora/jungle/bush, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"sD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/tile/red/redtaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/security) -"sE" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"sF" = ( -/obj/structure/rack, -/obj/machinery/light, -/obj/effect/spawner/random/misc/folder, -/obj/effect/spawner/random/misc/folder, -/turf/open/floor/tile/blue/taupeblue{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/command) -"sG" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/east) -"sH" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/beach{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"sI" = ( -/obj/structure/stairs/edge{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"sJ" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"sK" = ( -/obj/structure/rack, -/obj/item/weapon/gun/smg/m25, -/obj/item/weapon/gun/smg/m25, -/obj/item/ammo_magazine/smg/m25, -/obj/item/ammo_magazine/smg/m25, -/obj/item/ammo_magazine/smg/m25, -/obj/item/ammo_magazine/smg/m25, -/obj/item/ammo_magazine/smg/m25, -/obj/item/ammo_magazine/smg/m25, -/turf/open/floor/tile/red/redtaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"sL" = ( -/turf/open/floor/tile/red/redtaupecorner, -/area/campaign/jungle_outpost/outpost/security) -"sM" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"sN" = ( -/obj/structure/rock/variable/jungle_large, -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"sO" = ( -/obj/structure/flora/tree/jungle, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north) -"sP" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/toolbox, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"sQ" = ( -/obj/structure/safe, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"sR" = ( -/obj/machinery/optable, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/blue/whitebluefull, -/area/campaign/jungle_outpost/outpost/medbay) -"sT" = ( -/obj/structure/table/reinforced, -/obj/structure/prop/computer/broken/sixteen, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"sU" = ( -/obj/machinery/door/airlock/multi_tile/mainship/research{ - dir = 1 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science) -"sV" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"sW" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"sX" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south) -"sY" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/command) -"ta" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/campaign/jungle_outpost/outpost/command/captain) -"tb" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/east) -"tc" = ( -/obj/structure/catwalk, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/west) -"td" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/turf/open/ground/grass/beach/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"te" = ( -/obj/structure/flora/jungle/bush, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"tf" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"tg" = ( -/obj/machinery/washing_machine, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living) -"tk" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"tm" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"tn" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/misc/earmuffs, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"to" = ( -/obj/structure/rock/variable/jungle, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south) -"tp" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living) -"tq" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/west) -"tr" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"ts" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"tt" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/east) -"tu" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay) -"tv" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"tw" = ( -/obj/structure/cable, -/turf/open/floor/tile/neutral{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"tx" = ( -/obj/structure/stairs/seamless/edge_vert, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"ty" = ( -/obj/structure/cable, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"tz" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/tile/barber, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"tA" = ( -/obj/structure/cable, -/turf/open/floor/tile/blue/whiteblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"tC" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"tD" = ( -/turf/open/floor/tile/blue/whitebluecorner{ - dir = 2 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"tF" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req) -"tH" = ( -/turf/open/ground/grass/beach/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/river/lake) -"tI" = ( -/obj/structure/stairs/seamless/platform{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"tK" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"tL" = ( -/turf/open/floor/tile/brown, -/area/campaign/jungle_outpost/outpost/req/qm) -"tM" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/tile/neutral/full, -/area/campaign/jungle_outpost/outpost/living/canteen) -"tN" = ( -/obj/structure/cargo_container/wy{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"tQ" = ( -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/science) -"tR" = ( -/obj/structure/rock/variable/jungle_large, -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south) -"tS" = ( -/obj/effect/spawner/random/engineering/structure/powergenerator/superweighted, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"tT" = ( -/turf/open/floor/tile/blue/taupeblue{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/command) -"tU" = ( -/obj/structure/table/mainship/nometal, -/obj/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/tile/blue/whiteblue, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"tV" = ( -/obj/machinery/vending/snack, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"tW" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"tX" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/landing) -"tZ" = ( -/obj/structure/prop/mainship/research/circuit_imprinter, -/turf/open/floor/tile/purple/whitepurple{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"ua" = ( -/obj/structure/table/reinforced, -/obj/item/paper, -/obj/effect/spawner/random/misc/folder, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"ub" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/science/south) -"uc" = ( -/obj/structure/stairs/seamless/edge_vert{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"uf" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "\improper Operations Bedroom" - }, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"ug" = ( -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"uh" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/beach{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"uj" = ( -/turf/closed/mineral/smooth/indestructible, -/area/campaign/jungle_outpost/ground/jungle/west) -"uk" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/reagent_containers/food/drinks/bottle/wine, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"ul" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"um" = ( -/obj/item/staff/broom, -/obj/item/stool, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/campaign/jungle_outpost/outpost/medbay) -"un" = ( -/obj/structure/table, -/obj/effect/spawner/random/medical/health_analyzer, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"uo" = ( -/turf/open/ground/grass/beach{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"up" = ( -/obj/structure/rock/variable/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south) -"ur" = ( -/obj/structure/table/reinforced, -/obj/item/radio, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"us" = ( -/obj/structure/table/mainship/nometal, -/obj/item/tool/screwdriver, -/obj/item/tool/wirecutters, -/obj/effect/spawner/random/engineering/cable, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"ut" = ( -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"uu" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"ux" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"uy" = ( -/turf/open/ground/coast{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/river/east) -"uz" = ( -/turf/open/floor/tile/red/redtaupe{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/security) -"uA" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/living) -"uC" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"uE" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"uG" = ( -/obj/effect/spawner/random/engineering/structure/tank/fuelweighted, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/science) -"uH" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req) -"uI" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"uJ" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle) -"uK" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"uN" = ( -/obj/structure/bed/chair/sofa/right{ - dir = 1 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"uO" = ( -/obj/structure/cable, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"uP" = ( -/obj/machinery/door/airlock/mainship/engineering/free_access{ - dir = 1; - name = "\improper Cargo Bay Offices" - }, -/obj/structure/cable, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req/qm) -"uQ" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"uR" = ( -/obj/structure/cable, -/turf/open/floor/tile/green/greentaupe, -/area/campaign/jungle_outpost/outpost/living) -"uT" = ( -/turf/open/floor/tile/purple/whitepurple{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"uU" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2, -/area/campaign/jungle_outpost/ground/jungle/east) -"uX" = ( -/obj/effect/spawner/random/misc/structure/broken_reinforced_window/colonyspawn, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"uY" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"uZ" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/west) -"va" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"vb" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay) -"vc" = ( -/obj/structure/rock/variable/jungle, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/west) -"vd" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/engineering) -"ve" = ( -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/north) -"vg" = ( -/obj/structure/catwalk, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle/north) -"vh" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"vi" = ( -/turf/open/floor/tile/green/greentaupecorner{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/living) -"vj" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/tile/green/greentaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/living) -"vl" = ( -/obj/machinery/computer3/server/rack, -/turf/open/floor/tile/blue/taupeblue{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/command) -"vn" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"vq" = ( -/obj/structure/table/reinforced, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"vr" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"vs" = ( -/obj/structure/rock/variable/jungle, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"vt" = ( -/obj/machinery/light, -/turf/open/floor/tile/red/redtaupe, -/area/campaign/jungle_outpost/outpost/security) -"vu" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"vv" = ( -/obj/machinery/bioprinter, -/turf/open/floor/tile/blue/whitebluefull, -/area/campaign/jungle_outpost/outpost/medbay) -"vw" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/obj/item/paper, -/turf/open/floor/tile/blue/taupeblue, -/area/campaign/jungle_outpost/outpost/command) -"vx" = ( -/obj/structure/sink{ - dir = 8 - }, -/turf/open/floor/tile/blue/whitebluefull, -/area/campaign/jungle_outpost/outpost/medbay) -"vy" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"vz" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/ground/grass/beach/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"vA" = ( -/obj/effect/spawner/random/misc/structure/closet/welding, -/obj/machinery/light, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"vB" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"vE" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle/north) -"vH" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle) -"vI" = ( -/obj/structure/bed/chair/sofa/corner{ - dir = 4 - }, -/turf/open/floor/tile/green/greentaupe{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/living) -"vJ" = ( -/obj/structure/flora/jungle/grass, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"vK" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/snacks/frozen/sundae, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/turf/open/floor/wood/variable/wide, -/area/campaign/jungle_outpost/outpost/outer/hermit) -"vL" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/hydro) -"vN" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"vP" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"vQ" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"vS" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"vU" = ( -/obj/structure/closet/crate/supply, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"vV" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/bathroom) -"vW" = ( -/obj/structure/flora/tree/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"vX" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/obj/structure/cable, -/turf/open/ground/grass/beach/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"vY" = ( -/obj/structure/sink/bathroom{ - dir = 4 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"vZ" = ( -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"wa" = ( -/obj/effect/decal/cleanable/blood/writing{ - dir = 5 - }, -/turf/open/floor/mainship/mono, -/area/campaign/jungle_outpost/outpost/medbay) -"wb" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"we" = ( -/turf/open/floor/tile/red/redtaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/command) -"wg" = ( -/obj/machinery/vending/snack, -/turf/open/floor/tile/neutral/full, -/area/campaign/jungle_outpost/outpost/living/canteen) -"wh" = ( -/obj/structure/stairs/edge, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle) -"wj" = ( -/obj/structure/closet/radiation, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"wk" = ( -/obj/structure/bed, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"wl" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"wm" = ( -/obj/structure/prop/vehicle/crawler/crawler_cargo, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"wn" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"wo" = ( -/obj/structure/table/woodentable, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"wp" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"wr" = ( -/obj/structure/flora/jungle/bush, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"wt" = ( -/obj/structure/cargo_container/green{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"wu" = ( -/obj/machinery/vending/hydronutrients, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"wv" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/security) -"wx" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/canteen) -"wy" = ( -/obj/structure/rock/variable/jungle/big, -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"wz" = ( -/obj/structure/prop/mainship/research/destructive_analyzer, -/turf/open/floor/tile/purple/whitepurple{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"wA" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/ground/grass/beach{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"wC" = ( -/obj/structure/platform_decoration, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle) -"wF" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/science) -"wG" = ( -/turf/open/floor/tile/blue/whitebluefull, -/area/campaign/jungle_outpost/outpost/medbay) -"wH" = ( -/obj/structure/rock/variable/jungle, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"wI" = ( -/turf/closed/mineral/smooth/indestructible, -/area/campaign/jungle_outpost/ground/jungle/south) -"wJ" = ( -/obj/structure/rock/variable/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"wK" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/river/east) -"wL" = ( -/obj/structure/stairs/railstairs{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"wM" = ( -/obj/machinery/vending/cola, -/turf/open/floor/tile/blue/taupeblue{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/command) -"wN" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sandbags_empty/full, -/obj/item/stack/sandbags_empty/full, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security/vault) -"wO" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle) -"wP" = ( -/obj/structure/prop/mainship/telecomms, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/command) -"wQ" = ( -/obj/structure/cable, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"wR" = ( -/obj/structure/prop/mainship/telecomms/hub, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/command) -"wS" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"wU" = ( -/obj/structure/cargo_container/horizontal{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"wV" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"wX" = ( -/obj/structure/flora/jungle/grass, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"wY" = ( -/obj/structure/platform, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"wZ" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"xa" = ( -/obj/machinery/power/apc/drained{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"xb" = ( -/obj/effect/spawner/random/engineering/structure/canister, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req) -"xc" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"xd" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"xf" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/security, -/turf/open/floor/tile/red/redtaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/security) -"xh" = ( -/obj/structure/stairs/edge, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"xi" = ( -/obj/structure/closet/cabinet, -/obj/item/reagent_containers/food/drinks/flask, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/bottle/experimentalliquor, -/obj/item/reagent_containers/food/drinks/bottle/specialwhiskey, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"xj" = ( -/obj/structure/flora/jungle/bush, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/east) -"xk" = ( -/obj/structure/rack, -/obj/item/weapon/gun/pistol/som, -/obj/item/weapon/gun/pistol/som, -/obj/item/weapon/gun/pistol/som, -/obj/item/ammo_magazine/pistol/som, -/obj/item/ammo_magazine/pistol/som, -/obj/item/ammo_magazine/pistol/som, -/obj/item/ammo_magazine/pistol/som, -/obj/item/ammo_magazine/pistol/som, -/obj/item/ammo_magazine/pistol/som, -/turf/open/floor/tile/red/redtaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"xl" = ( -/obj/structure/extinguisher_cabinet/mini, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"xm" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"xn" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/secure{ - dir = 8 - }, -/obj/machinery/door/window/secure, -/obj/structure/cable, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"xo" = ( -/obj/structure/catwalk, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/east) -"xp" = ( -/obj/structure/table/rusticwoodentable, -/obj/item/reagent_containers/food/snacks/soup/boiledrice, -/turf/open/floor/wood/variable/wide, -/area/campaign/jungle_outpost/outpost/outer/hermit) -"xq" = ( -/obj/structure/powerloader_wreckage, -/obj/effect/turf_decal/warning_stripes, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"xr" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay) -"xs" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"xt" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"xu" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req/depot) -"xv" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/beach/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"xw" = ( -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle) -"xx" = ( -/obj/structure/table/mainship/nometal, -/obj/item/explosive/grenade/chem_grenade/large, -/obj/item/explosive/grenade/chem_grenade, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"xz" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"xA" = ( -/obj/structure/table/reinforced, -/obj/item/storage/surgical_tray, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/blue/whitebluefull, -/area/campaign/jungle_outpost/outpost/medbay) -"xB" = ( -/obj/machinery/vending/MarineMed/Blood, -/turf/open/floor/tile/blue/whiteblue{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"xC" = ( -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/command) -"xD" = ( -/obj/structure/flora/tree/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"xF" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"xH" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"xI" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"xJ" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"xK" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/command) -"xL" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/spawner/random/misc/structure/broken_reinforced_window/colonyspawn, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"xM" = ( -/obj/machinery/smartfridge/chemistry, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"xN" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/landing) -"xO" = ( -/obj/structure/catwalk, -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/river/east) -"xP" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"xQ" = ( -/obj/structure/rock/variable/jungle, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"xR" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/east) -"xS" = ( -/turf/closed/mineral/smooth/indestructible, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"xT" = ( -/obj/structure/extinguisher_cabinet/mini{ - dir = 1 - }, -/turf/open/floor/tile/green/greentaupe{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/living) -"xU" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"xW" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"xX" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"xY" = ( -/obj/structure/closet, -/turf/open/floor/tile/red/redtaupe{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/command) -"xZ" = ( -/obj/structure/flora/tree/jungle/small, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"ya" = ( -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"yb" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/bathroom) -"yc" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req) -"ye" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"yf" = ( -/obj/structure/cable, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"yg" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"yh" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"yi" = ( -/obj/structure/bed/chair/sofa, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"yj" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/living) -"yl" = ( -/obj/machinery/door/airlock/multi_tile/mainship/research, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science) -"ym" = ( -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/command) -"yn" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"yp" = ( -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"yq" = ( -/obj/effect/turf_decal/grassdecal{ - dir = 1 - }, -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"yr" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"ys" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"yt" = ( -/obj/structure/rock/variable/jungle_large, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"yu" = ( -/obj/machinery/vending/MarineMed/Blood, -/turf/open/floor/tile/blue/whiteblue{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"yv" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"yx" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/living) -"yy" = ( -/obj/effect/spawner/random/engineering/structure/tank/fuelweighted, -/obj/machinery/light, -/turf/open/floor/tile/brown{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/req) -"yz" = ( -/turf/open/floor/tile/blue/whitebluecorner{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"yA" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"yC" = ( -/obj/structure/table/fancywoodentable, -/turf/open/floor/wood/alt_seven, -/area/campaign/jungle_outpost/outpost/science/office) -"yD" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"yF" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"yH" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/east) -"yI" = ( -/turf/open/floor/tile/green/greentaupecorner{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/living) -"yJ" = ( -/obj/effect/spawner/random/misc/structure/broken_reinforced_window/colonyspawn, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"yK" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"yM" = ( -/obj/structure/cable, -/turf/open/floor/tile/green/greentaupecorner{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/living) -"yN" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 4 - }, -/turf/open/floor/wood/alt_seven, -/area/campaign/jungle_outpost/outpost/science/office) -"yO" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/command/captain) -"yP" = ( -/obj/prop/hydroponics, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"yQ" = ( -/obj/structure/table/woodentable, -/obj/machinery/light, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/obj/item/paper, -/obj/item/paper, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"yR" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"yS" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"yT" = ( -/obj/structure/rack, -/obj/item/weapon/gun/shotgun/pump/standard, -/obj/item/weapon/gun/shotgun/pump/standard, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/tile/red/redtaupe{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/command) -"yU" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/ground/grass/beach{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"yV" = ( -/obj/structure/prop/vehicle/crane{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"za" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/security) -"zb" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering{ - dir = 1 - }, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"zc" = ( -/obj/structure/flora/jungle/large_bush, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"ze" = ( -/obj/structure/flora/jungle/grass, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle) -"zf" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/tile/green/greentaupe{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/living) -"zg" = ( -/obj/machinery/light, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"zh" = ( -/obj/machinery/chem_dispenser, -/turf/open/floor/tile/blue/whiteblue{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"zi" = ( -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"zj" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/tile/purple/whitepurple{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"zk" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/science) -"zl" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"zn" = ( -/obj/structure/table/reinforced, -/obj/item/radio/survivor, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"zo" = ( -/obj/machinery/prop/computer/dna, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"zp" = ( -/obj/machinery/processor{ - pixel_y = 5 - }, -/obj/machinery/light, -/turf/open/floor/tile/barber, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"zq" = ( -/obj/structure/flora/pottedplant/six, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"zr" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"zs" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay) -"zt" = ( -/obj/machinery/door/airlock/mainship/medical/free_access{ - dir = 1 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"zu" = ( -/obj/structure/flora/jungle/bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"zv" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"zw" = ( -/obj/structure/rock/variable/jungle, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"zx" = ( -/obj/machinery/door/airlock/mainship/command/free_access{ - name = "\improper Operations Office" - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"zy" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"zz" = ( -/obj/structure/extinguisher_cabinet/mini, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/green/greentaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/living) -"zA" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"zB" = ( -/obj/structure/closet/secure_closet/medical3/colony, -/turf/open/floor/tile/blue/whiteblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"zC" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"zD" = ( -/turf/open/floor/tile/green/greentaupecorner, -/area/campaign/jungle_outpost/outpost/living) -"zE" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"zF" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/lake) -"zG" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/ground/grass/beach/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"zH" = ( -/turf/open/floor/tile/purple/whitepurple{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"zK" = ( -/turf/open/ground/grass/beach, -/area/campaign/jungle_outpost/ground/jungle/east) -"zM" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/ground/jungle) -"zN" = ( -/obj/structure/rack, -/obj/item/clothing/head/helmet, -/obj/item/clothing/head/helmet, -/obj/item/clothing/head/helmet, -/turf/open/floor/tile/red/redtaupe, -/area/campaign/jungle_outpost/outpost/command) -"zO" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/engibelt, -/turf/open/floor/tile/red/redtaupe, -/area/campaign/jungle_outpost/outpost/command) -"zS" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"zU" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"zV" = ( -/obj/structure/flora/jungle/grass/thin, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"zW" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/science) -"zY" = ( -/obj/structure/flora/pottedplant/ten, -/turf/open/floor/tile/blue/taupeblue{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/command) -"zZ" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Aa" = ( -/obj/structure/flora/tree/jungle, -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"Ac" = ( -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"Ad" = ( -/turf/open/floor/tile/brown{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/req) -"Ae" = ( -/obj/effect/turf_decal/grassdecal/corner{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"Af" = ( -/turf/open/ground/grass/beach{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Ag" = ( -/obj/item/trash/chips, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"Ah" = ( -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Ai" = ( -/obj/structure/stairs/edge{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Aj" = ( -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/east) -"Al" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Ap" = ( -/obj/structure/closet/crate/mass_produced_crate/construction, -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science/south) -"Ar" = ( -/obj/structure/stairs/seamless/edge_vert{ - dir = 1 - }, -/turf/open/floor/tile/red/redtaupe, -/area/campaign/jungle_outpost/outpost/security/vault) -"As" = ( -/obj/structure/cable, -/turf/open/floor/tile/blue/taupeblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/command) -"At" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"Au" = ( -/obj/structure/table, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/engineering/tech_supply, -/obj/effect/spawner/random/engineering/powercell, -/obj/effect/spawner/random/engineering/engibelt, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/brown{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/req) -"Av" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Aw" = ( -/obj/machinery/door/airlock/colony/medical/hydroponics{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"Ax" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/technology_scanner, -/turf/open/floor/tile/purple/whitepurple{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/science) -"Ay" = ( -/obj/structure/flora/jungle/grass/thin, -/obj/structure/flora/tree/jungle, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"Az" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/beach/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"AA" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/tile/red/redtaupe, -/area/campaign/jungle_outpost/outpost/security) -"AB" = ( -/obj/structure/table, -/obj/machinery/light, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living) -"AC" = ( -/obj/structure/table/woodentable, -/obj/item/paper, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"AD" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/east) -"AE" = ( -/obj/structure/cargo_container/green, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"AF" = ( -/obj/effect/spawner/random/engineering/ore_box, -/turf/open/floor/tile/brown{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/req) -"AG" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"AJ" = ( -/obj/effect/spawner/random/misc/structure/broken_reinforced_window/colonyspawn, -/turf/open/floor/tile/neutral{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/command) -"AK" = ( -/turf/open/ground/grass/beach{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"AL" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/west) -"AM" = ( -/obj/effect/turf_decal/grassdecal{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"AN" = ( -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle) -"AO" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/tile/red/redtaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/security) -"AP" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"AQ" = ( -/obj/structure/bed/chair/sofa{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"AR" = ( -/obj/structure/platform, -/obj/effect/spawner/random/misc/structure/broken_reinforced_window/colonyspawn, -/turf/open/floor/tile/red/redtaupe, -/area/campaign/jungle_outpost/outpost/security) -"AS" = ( -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living) -"AU" = ( -/obj/structure/catwalk, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle) -"AV" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"AW" = ( -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"AX" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"AY" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/ground/river/west) -"AZ" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Ba" = ( -/obj/structure/table, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/bathroom) -"Bb" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/river/east) -"Bc" = ( -/turf/open/floor/tile/green/greentaupe{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/living) -"Be" = ( -/obj/structure/catwalk, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"Bf" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/east) -"Bg" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/command/captain) -"Bh" = ( -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"Bi" = ( -/turf/open/ground/grass/beach/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Bj" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south) -"Bl" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Bm" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"Bn" = ( -/obj/machinery/door/airlock/mainship/command/free_access, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/command) -"Bo" = ( -/obj/structure/cable, -/obj/item/trash/cigbutt, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"Bp" = ( -/obj/structure/cargo_container, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"Bq" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Br" = ( -/turf/open/ground/grass/beach/corner, -/area/campaign/jungle_outpost/ground/jungle) -"Bs" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"Bt" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/science/south) -"Bu" = ( -/obj/structure/table/reinforced, -/obj/item/tool/surgery/FixOVein, -/obj/item/storage/pill_bottle/inaprovaline{ - pixel_x = 7 - }, -/obj/effect/spawner/random/medical/pillbottle, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"Bv" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"Bw" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"By" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"BB" = ( -/turf/open/ground/grass/beach/corner2, -/area/campaign/jungle_outpost/ground/jungle) -"BD" = ( -/obj/structure/flora/jungle/grass, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"BF" = ( -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/engineering) -"BG" = ( -/obj/structure/stairs/edge, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle) -"BH" = ( -/obj/structure/flora/jungle/grass, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"BI" = ( -/obj/structure/table/reinforced, -/obj/structure/prop/mainship/weapon_recharger, -/turf/open/floor/tile/blue/taupeblue{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/command) -"BJ" = ( -/obj/structure/cargo_container/hd_blue, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"BK" = ( -/obj/machinery/door/airlock/mainship/engineering, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req/depot) -"BM" = ( -/obj/structure/platform, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/science) -"BN" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/obj/structure/cargo_container/horizontal{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"BO" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/landing) -"BP" = ( -/obj/structure/table, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/engineering/bomb_supply, -/turf/open/floor/tile/brown, -/area/campaign/jungle_outpost/outpost/req) -"BQ" = ( -/obj/structure/rack, -/obj/item/weapon/gun/pistol/rt3, -/obj/item/weapon/gun/pistol/rt3, -/obj/item/weapon/gun/pistol/rt3, -/obj/item/ammo_magazine/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/turf/open/floor/tile/red/redtaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"BR" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"BS" = ( -/obj/structure/cable, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"BT" = ( -/obj/structure/stairs/seamless/platform, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/landing) -"BU" = ( -/obj/structure/table/mainship, -/obj/item/trash/barcardine, -/turf/open/floor/tile/neutral/full, -/area/campaign/jungle_outpost/outpost/living/canteen) -"BV" = ( -/turf/closed/gm/dense, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"BW" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle) -"BX" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle) -"BY" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"BZ" = ( -/turf/open/floor/plating/ground/dirt, -/area/campaign/jungle_outpost/ground/jungle/south) -"Ca" = ( -/obj/effect/spawner/random/misc/structure/flavorvending/engitool, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"Cb" = ( -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Cc" = ( -/obj/structure/extinguisher_cabinet/mini, -/turf/open/floor/tile/blue/taupeblue{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/command) -"Cd" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/security) -"Ce" = ( -/obj/effect/turf_decal/lvsanddecal{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Cf" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/beach/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Cg" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/spray/surgery, -/obj/item/clothing/gloves/latex, -/obj/item/clothing/suit/surgical, -/turf/open/floor/tile/blue/whitebluefull, -/area/campaign/jungle_outpost/outpost/medbay) -"Ci" = ( -/obj/structure/closet/secure_closet/guncabinet/nt_lab, -/turf/open/floor/tile/red/redtaupe{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/command) -"Cj" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/jungle/east) -"Ck" = ( -/obj/structure/table/reinforced, -/obj/item/t_scanner, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"Cl" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"Cm" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"Cn" = ( -/obj/item/trash/semki, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Co" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/west) -"Cp" = ( -/obj/structure/flora/tree/jungle, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Cq" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/beach/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Ct" = ( -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/east) -"Cu" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Cv" = ( -/obj/structure/flora/tree/jungle, -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"Cw" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south) -"Cx" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/science) -"Cy" = ( -/obj/structure/flora/tree/jungle, -/obj/structure/flora/jungle/grass, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"Cz" = ( -/obj/structure/table/mainship, -/obj/machinery/griddle, -/obj/structure/cable, -/turf/open/floor/tile/barber, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"CB" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/west) -"CC" = ( -/obj/structure/flora/jungle/grass, -/turf/open/ground/grass/beach/corner, -/area/campaign/jungle_outpost/ground/jungle/east) -"CD" = ( -/obj/structure/catwalk, -/turf/open/ground/grass/beach{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"CE" = ( -/obj/structure/bed, -/turf/open/floor/wood/variable/wide, -/area/campaign/jungle_outpost/outpost/outer/hermit) -"CF" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle/north) -"CG" = ( -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"CJ" = ( -/obj/machinery/door/airlock/mainship/engineering/free_access{ - dir = 1; - name = "\improper Engineering Dome" - }, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"CK" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/bomb_supply, -/obj/effect/spawner/random/engineering/bomb_supply, -/obj/effect/spawner/random/engineering/cable, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"CL" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/north) -"CM" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"CN" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/west) -"CO" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"CQ" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"CR" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/engineering) -"CS" = ( -/obj/structure/prop/mainship/mapping_computer, -/turf/open/floor/tile/blue/taupeblue, -/area/campaign/jungle_outpost/outpost/command) -"CT" = ( -/turf/closed/gm/dense, -/area/campaign/jungle_outpost/ground/jungle/east) -"CV" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"CX" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"CY" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/security) -"CZ" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Da" = ( -/obj/structure/flora/tree/jungle, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"Db" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Dc" = ( -/obj/structure/table, -/obj/item/tool/pen, -/obj/effect/spawner/random/misc/folder, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"Dd" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"De" = ( -/obj/machinery/light, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"Df" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"Dg" = ( -/obj/structure/stairs/seamless/platform_vert{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"Dh" = ( -/obj/item/trash/cheesie, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"Di" = ( -/obj/structure/prop/mainship/research/explosivecompressor, -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science) -"Dj" = ( -/obj/structure/table, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Dk" = ( -/obj/machinery/light, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Dl" = ( -/turf/open/floor/plating/scorched, -/area/campaign/jungle_outpost/ground/jungle/west) -"Do" = ( -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science) -"Dp" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Dq" = ( -/obj/structure/table/mainship, -/turf/open/floor/tile/neutral/full, -/area/campaign/jungle_outpost/outpost/living/canteen) -"Dr" = ( -/obj/structure/flora/jungle/bush, -/turf/open/ground/grass/beach/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Ds" = ( -/obj/structure/cargo_container/green{ - dir = 4 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"Du" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/science/south) -"Dv" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Dw" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"Dx" = ( -/obj/structure/table/reinforced, -/turf/open/floor/tile/red/redtaupe{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/security) -"Dz" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/science) -"DA" = ( -/obj/machinery/vending/cola, -/turf/open/floor/tile/green/greentaupe, -/area/campaign/jungle_outpost/outpost/living) -"DB" = ( -/obj/machinery/door/airlock/mainship/command/free_access{ - dir = 1 - }, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"DC" = ( -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/tile/green/greentaupe, -/area/campaign/jungle_outpost/outpost/living) -"DD" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"DE" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"DF" = ( -/obj/machinery/door/airlock/mainship/research/glass, -/obj/structure/cable, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/office) -"DG" = ( -/obj/structure/flora/jungle/grass, -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"DH" = ( -/obj/structure/rock/variable/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"DI" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"DJ" = ( -/turf/open/ground/coast{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/river/east) -"DK" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"DL" = ( -/obj/structure/flora/tree/jungle, -/obj/structure/rock/variable/jungle, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle) -"DM" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/turf/open/ground/grass/beach/corner, -/area/campaign/jungle_outpost/ground/jungle/north) -"DN" = ( -/turf/open/ground/grass/beach{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"DO" = ( -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"DP" = ( -/obj/structure/cable, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"DR" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req/qm) -"DT" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"DU" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"DV" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 31 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"DX" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/command) -"DZ" = ( -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/living) -"Eb" = ( -/obj/structure/stairs/seamless/edge{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Ec" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/command) -"Ed" = ( -/obj/structure/filingcabinet/security, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"Ef" = ( -/obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"Eh" = ( -/turf/open/ground/grass/beach/corner2, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Ei" = ( -/obj/machinery/light, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"Ej" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/office) -"El" = ( -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Em" = ( -/obj/machinery/iv_drip, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"En" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_hacking, -/turf/open/floor/tile/purple/whitepurple{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/science) -"Eo" = ( -/obj/structure/cable, -/turf/open/floor/tile/blue/whiteblue{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"Ep" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"Eq" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"Es" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"Et" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"Eu" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"Ev" = ( -/obj/structure/closet/crate/trashcart, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/brown{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/req) -"Ew" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"Ex" = ( -/turf/closed/gm/dense, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Ey" = ( -/obj/structure/closet/secure_closet/guncabinet/nt_lab, -/turf/open/floor/tile/red/redtaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"Ez" = ( -/obj/machinery/iv_drip, -/turf/open/floor/tile/blue/whitebluefull, -/area/campaign/jungle_outpost/outpost/medbay) -"EA" = ( -/obj/structure/table/woodentable, -/obj/item/camera, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"EB" = ( -/obj/structure/cable, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/living/canteen) -"ED" = ( -/obj/structure/coatrack, -/obj/machinery/power/apc/drained{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/wood/alt_seven, -/area/campaign/jungle_outpost/outpost/science/office) -"EF" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"EG" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"EI" = ( -/obj/structure/prop/mainship/research/tdoppler, -/turf/open/floor/tile/purple/whitepurple{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"EJ" = ( -/turf/open/floor/tile/neutral{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"EK" = ( -/obj/structure/flora/tree/jungle, -/turf/open/ground/grass/beach/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"EL" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/tile/red/redtaupe{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"EM" = ( -/obj/machinery/light, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"EN" = ( -/obj/structure/largecrate/supply/explosives, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"EO" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/misc/folder, -/turf/open/floor/tile/blue/taupeblue{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/command) -"EP" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"EQ" = ( -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req) -"ER" = ( -/obj/structure/filingcabinet, -/turf/open/floor/tile/brown{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/req/qm) -"ES" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"EU" = ( -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"EV" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/east) -"EW" = ( -/obj/structure/cable, -/turf/open/floor/tile/neutral/full, -/area/campaign/jungle_outpost/outpost/living/canteen) -"EX" = ( -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south) -"EY" = ( -/turf/open/floor/tile/green/greentaupecorner{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/living) -"EZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Fa" = ( -/obj/structure/table/fancywoodentable, -/obj/machinery/computer/security/wooden_tv, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/campaign/jungle_outpost/outpost/command/captain) -"Fb" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"Fc" = ( -/obj/machinery/power/apc/drained{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"Fd" = ( -/obj/structure/flora/jungle/bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"Fe" = ( -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"Ff" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/east) -"Fg" = ( -/obj/machinery/vending/boozeomat, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"Fh" = ( -/obj/structure/closet/secure_closet/medical3/colony, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/blue/whiteblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"Fi" = ( -/turf/open/ground/grass/beach/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Fj" = ( -/obj/structure/table, -/obj/effect/spawner/random/medical/firstaid, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/blue/whiteblue{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Fk" = ( -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Fn" = ( -/obj/structure/stairs/seamless/edge{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Fo" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/canteen) -"Fr" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/hydro) -"Ft" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Fu" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"Fv" = ( -/obj/structure/flora/jungle/bush, -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"Fw" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 2 - }, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"Fx" = ( -/turf/open/floor/tile/purple/whitepurple{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/science) -"Fy" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"FA" = ( -/obj/structure/stairs/railstairs_vert{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"FB" = ( -/obj/structure/closet/crate/secure, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"FD" = ( -/obj/structure/sign/greencross{ - dir = 1 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"FE" = ( -/obj/machinery/door/airlock/mainship/engineering/free_access{ - dir = 1; - name = "\improper Engineering Dome" - }, -/obj/structure/cable, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"FF" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"FH" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/landing) -"FI" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/command) -"FJ" = ( -/obj/structure/flora/jungle/grass, -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"FK" = ( -/obj/structure/bed/chair/sofa{ - dir = 1 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"FL" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"FM" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/landing) -"FO" = ( -/obj/structure/bed/stool, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"FP" = ( -/turf/open/ground/grass/beach/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"FQ" = ( -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science) -"FR" = ( -/obj/structure/cable, -/turf/open/floor/tile/barber, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"FS" = ( -/obj/machinery/vending/tool, -/turf/open/floor/tile/brown{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/req) -"FU" = ( -/turf/closed/mineral/smooth/indestructible, -/area/campaign/jungle_outpost/ground/river/lake) -"FW" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"FX" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/tile/blue/taupeblue{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/command) -"FY" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/red/redtaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"FZ" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirt, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Ga" = ( -/turf/open/floor/tile/green/greentaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/living) -"Gb" = ( -/obj/effect/turf_decal/grassdecal, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"Gd" = ( -/turf/closed/gm/dense, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Gf" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/tile/red/redtaupe, -/area/campaign/jungle_outpost/outpost/security/vault) -"Gi" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/tile/red/redtaupe{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/security) -"Gl" = ( -/obj/structure/flora/jungle/grass, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Gn" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"Go" = ( -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/west) -"Gp" = ( -/obj/structure/prop/tgbrokenvendor/chemdrobe, -/turf/open/floor/tile/blue/whiteblue{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"Gq" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"Gs" = ( -/turf/open/floor/plating/dmg2, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"Gt" = ( -/obj/structure/rack, -/turf/open/floor/tile/blue/taupeblue{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/command) -"Gu" = ( -/obj/structure/bed/chair/sofa/corner, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"Gv" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"Gw" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"Gx" = ( -/obj/machinery/door/airlock/mainship/medical/free_access{ - dir = 1 - }, -/turf/open/floor/tile/blue/whitebluefull, -/area/campaign/jungle_outpost/outpost/medbay) -"Gy" = ( -/obj/effect/turf_decal/riverdecal, -/obj/structure/catwalk, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/west) -"Gz" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"GA" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"GB" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/green/greentaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/living) -"GD" = ( -/obj/structure/table/woodentable, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"GE" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"GF" = ( -/obj/structure/cargo_container/red{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"GH" = ( -/obj/structure/table, -/obj/item/trash/pistachios, -/turf/open/floor/tile/green/greentaupe, -/area/campaign/jungle_outpost/outpost/living) -"GI" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"GJ" = ( -/turf/open/ground/grass/beach/corner, -/area/campaign/jungle_outpost/ground/jungle/east) -"GK" = ( -/turf/open/floor/plating/ground/dirt, -/area/campaign/jungle_outpost/ground/jungle) -"GL" = ( -/obj/structure/table, -/obj/item/flashlight, -/obj/effect/spawner/random/engineering/bomb_supply, -/obj/effect/spawner/random/engineering/bomb_supply, -/obj/effect/spawner/random/engineering/tech_supply, -/turf/open/floor/tile/brown{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/req) -"GN" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/tile/red/redtaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/security) -"GO" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/beach{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"GP" = ( -/obj/structure/flora/tree/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"GQ" = ( -/obj/machinery/smartfridge/chemistry, -/turf/open/floor/tile/blue/whiteblue{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"GR" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/north) -"GS" = ( -/turf/open/floor/plating, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"GU" = ( -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/east) -"GV" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/tile/brown{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/req) -"GW" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"GX" = ( -/obj/structure/stairs/seamless/edge_vert{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/east) -"GZ" = ( -/obj/structure/catwalk, -/obj/effect/turf_decal/riverdecal, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/west) -"Ha" = ( -/obj/structure/table, -/turf/open/floor/tile/green/greentaupe, -/area/campaign/jungle_outpost/outpost/living) -"Hb" = ( -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"Hd" = ( -/obj/structure/stairs/edge, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"He" = ( -/obj/machinery/door/airlock/multi_tile/secure, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security/vault) -"Hg" = ( -/obj/structure/table, -/turf/open/floor/tile/blue/whiteblue{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Hh" = ( -/obj/structure/table/woodentable, -/obj/machinery/light, -/obj/item/reagent_containers/food/drinks/bottle/rum, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"Hk" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/canteen) -"Hl" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/science/office) -"Hm" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/landing) -"Hn" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"Ho" = ( -/obj/structure/flora/jungle/bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Hp" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/tile/neutral/full, -/area/campaign/jungle_outpost/outpost/living/canteen) -"Hq" = ( -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/west) -"Hs" = ( -/turf/open/floor/mainship/mono, -/area/campaign/jungle_outpost/outpost/medbay) -"Ht" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"Hv" = ( -/obj/structure/cargo_container/hd_blue{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"Hy" = ( -/obj/structure/stairs/seamless/edge_vert{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle) -"Hz" = ( -/obj/machinery/vending/nanomed, -/turf/open/floor/tile/green/greentaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/living) -"HA" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"HB" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"HC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/item/trash/cigbutt, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req/depot) -"HD" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/river/east) -"HE" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"HF" = ( -/turf/open/ground/grass/beach/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"HG" = ( -/turf/open/ground/grass/beach/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"HH" = ( -/obj/machinery/light, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/bathroom) -"HI" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2, -/area/campaign/jungle_outpost/ground/jungle/north) -"HJ" = ( -/turf/open/floor/tile/blue/taupebluecorner{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/command) -"HK" = ( -/turf/open/ground/coast{ - dir = 6 - }, -/area/campaign/jungle_outpost/ground/river/lake) -"HM" = ( -/obj/structure/closet/crate/secure/phoron, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"HN" = ( -/obj/structure/flora/jungle/bush, -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"HO" = ( -/obj/structure/platform, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/landing) -"HP" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/food_or_drink/bread, -/obj/effect/spawner/random/food_or_drink/cheesewedge, -/turf/open/floor/tile/barber, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"HQ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"HR" = ( -/obj/structure/stairs/seamless/edge{ - dir = 4 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"HS" = ( -/obj/structure/rock/variable/jungle, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"HT" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof, -/turf/open/floor/tile/red/redtaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"HV" = ( -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"HX" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"HZ" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Ia" = ( -/obj/vehicle/ridden/powerloader, -/obj/effect/turf_decal/warning_stripes, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"Ib" = ( -/obj/structure/sink, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"Ic" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/science) -"Ie" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/west) -"If" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"Ig" = ( -/turf/open/floor/tile/neutral{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/living) -"Ih" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Ii" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"Ik" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/north) -"Im" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north) -"In" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/neutral/full, -/area/campaign/jungle_outpost/outpost/living/canteen) -"Io" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"Ip" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"Iq" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/item/book/manual/research_and_development, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science) -"Ir" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"It" = ( -/obj/structure/closet/crate/secure/gear, -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science/south) -"Iv" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"Iw" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/east) -"Iy" = ( -/obj/structure/bed/roller, -/obj/machinery/light, -/turf/open/floor/tile/blue/whiteblue, -/area/campaign/jungle_outpost/outpost/medbay) -"Iz" = ( -/obj/structure/table/mainship, -/obj/item/tool/kitchen/tray, -/obj/effect/spawner/random/food_or_drink/burger, -/obj/effect/spawner/random/food_or_drink/burger, -/turf/open/floor/tile/barber, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"IA" = ( -/obj/structure/cable, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"IB" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/tile/purple/whitepurple{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/science) -"IC" = ( -/obj/structure/stairs/seamless/edge_vert{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/tile/red/full, -/area/campaign/jungle_outpost/outpost/security/vault) -"ID" = ( -/obj/machinery/light, -/turf/open/floor/tile/brown, -/area/campaign/jungle_outpost/outpost/req) -"IF" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"IG" = ( -/obj/machinery/door/airlock/mainship/medical/glass/chemistry, -/obj/structure/cable, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"IH" = ( -/obj/structure/prop/mainship/research/mechafab, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science) -"II" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"IJ" = ( -/obj/structure/flora/tree/jungle, -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"IK" = ( -/obj/structure/flora/jungle/bush, -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"IM" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/beach/corner, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"IN" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"IP" = ( -/obj/structure/cable, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/bathroom) -"IQ" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/tile/green/greentaupe{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/living) -"IR" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"IS" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"IT" = ( -/turf/open/floor/tile/purple/whitepurple{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/science) -"IU" = ( -/obj/structure/cable, -/turf/open/floor/tile/green/greentaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/living) -"IV" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/command) -"IW" = ( -/obj/structure/cargo_container/hd, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"IZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"Ja" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Jb" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"Jd" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/tile/red/redtaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/security) -"Je" = ( -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/lake) -"Jf" = ( -/obj/structure/prop/mainship/protolathe, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"Jg" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/wood/alt_seven, -/area/campaign/jungle_outpost/outpost/science/office) -"Jh" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"Ji" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"Jk" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Jl" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req) -"Jn" = ( -/obj/effect/spawner/random/engineering/structure/canister, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science) -"Jo" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Jp" = ( -/obj/prop/hydroponics, -/obj/machinery/light, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"Jq" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south) -"Jr" = ( -/turf/open/ground/grass/beach, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Ju" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/item/storage/holster/blade/machete/full, -/turf/open/floor/tile/brown{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/req/qm) -"Jw" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/bathroom) -"Jx" = ( -/obj/structure/table, -/obj/item/radio/survivor, -/obj/item/flashlight, -/obj/effect/spawner/random/misc/book, -/turf/open/floor/tile/brown{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/req/qm) -"Jy" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2, -/area/campaign/jungle_outpost/ground/jungle/east) -"Jz" = ( -/obj/structure/prop/vehicle/van{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"JA" = ( -/obj/machinery/door/airlock/multi_tile/mainship/comdoor/free_access, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/command) -"JB" = ( -/turf/open/floor/tile/brown{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/req/qm) -"JE" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"JG" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living) -"JH" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle/west) -"JI" = ( -/turf/open/floor/iron/smooth, -/area/campaign/jungle_outpost/ground/river/east) -"JJ" = ( -/obj/structure/cargo_container/ch_green{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"JL" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"JO" = ( -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/river/lake) -"JP" = ( -/obj/structure/cable, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"JQ" = ( -/obj/item/clothing/gloves/botanic_leather, -/obj/structure/table, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"JR" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/science/south) -"JS" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay) -"JU" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/ground/grass/beach/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"JW" = ( -/obj/structure/stairs/seamless/platform_vert{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/landing) -"JX" = ( -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"JY" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Kc" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/bathroom) -"Kd" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science/south) -"Ke" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/ground/grass/beach/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Kf" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/meat/monkey, -/obj/item/reagent_containers/food/snacks/meat/monkey, -/obj/item/reagent_containers/food/snacks/meat/monkey, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"Kh" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Ki" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/east) -"Kk" = ( -/obj/structure/flora/jungle/bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Kl" = ( -/obj/structure/rock/variable/jungle, -/turf/open/ground/grass/beach/corner2, -/area/campaign/jungle_outpost/ground/jungle/east) -"Km" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"Kn" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Ko" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/plating, -/area/campaign/jungle_outpost/ground/jungle/west) -"Kp" = ( -/obj/structure/table/mainship, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/turf/open/floor/tile/barber, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"Kq" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"Kr" = ( -/obj/structure/cable, -/turf/open/floor/tile/green/greentaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/living) -"Ku" = ( -/obj/structure/flora/jungle/large_bush, -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Kv" = ( -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/beach/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Kw" = ( -/obj/structure/bookcase, -/turf/open/floor/wood/alt_seven, -/area/campaign/jungle_outpost/outpost/science/office) -"Kx" = ( -/turf/open/floor/tile/purple/whitepurplecorner{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/science) -"Ky" = ( -/obj/structure/rock/variable/jungle, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"KA" = ( -/obj/machinery/shower, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/command) -"KC" = ( -/obj/structure/bed/roller, -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/tile/blue/whiteblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"KD" = ( -/obj/structure/rack, -/obj/item/weapon/gun/pistol/g22, -/obj/item/weapon/gun/pistol/g22, -/obj/item/weapon/gun/pistol/g22, -/obj/item/ammo_magazine/pistol/g22, -/obj/item/ammo_magazine/pistol/g22, -/obj/item/ammo_magazine/pistol/g22, -/obj/item/ammo_magazine/pistol/g22, -/obj/item/ammo_magazine/pistol/g22, -/obj/item/ammo_magazine/pistol/g22, -/turf/open/floor/tile/red/redtaupe{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"KE" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/east) -"KG" = ( -/obj/structure/bed/chair/sofa/left{ - dir = 8 - }, -/turf/open/floor/wood/variable/wide, -/area/campaign/jungle_outpost/outpost/outer/hermit) -"KH" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/tile/red/redtaupe{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/security) -"KI" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"KJ" = ( -/turf/open/floor/tile/red/redtaupe{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/security) -"KK" = ( -/obj/machinery/vending/snack, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"KL" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"KM" = ( -/turf/open/floor/wood/variable/wide, -/area/campaign/jungle_outpost/outpost/outer/hermit) -"KO" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/assemblies, -/obj/effect/spawner/random/engineering/cable, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science) -"KP" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"KQ" = ( -/obj/machinery/door/airlock/mainship/command/free_access{ - name = "\improper Operations Office" - }, -/obj/structure/cable, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"KR" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle) -"KS" = ( -/obj/structure/catwalk, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"KT" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2, -/area/campaign/jungle_outpost/ground/jungle) -"KU" = ( -/turf/closed/mineral/smooth/indestructible, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"KV" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle) -"KX" = ( -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle) -"KY" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"KZ" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req) -"Lb" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/fuelcell, -/obj/effect/spawner/random/engineering/glass, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science) -"Ld" = ( -/obj/structure/stairs/seamless/platform_vert/water, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/outpost/science) -"Le" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"Lf" = ( -/obj/structure/sink/kitchen{ - dir = 1 - }, -/turf/open/floor/tile/barber, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"Lg" = ( -/obj/machinery/door/airlock/mainship/generic, -/obj/structure/cable, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/bathroom) -"Lh" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/structure/platform, -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/east) -"Li" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"Lj" = ( -/obj/structure/flora/jungle/grass, -/turf/open/ground/grass/beach, -/area/campaign/jungle_outpost/ground/jungle) -"Lk" = ( -/obj/effect/spawner/random/engineering/structure/atmospherics_portable, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req) -"Ll" = ( -/obj/structure/bookcase, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"Lm" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/command) -"Ln" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"Lo" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Lp" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/tile/red/redtaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"Lt" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"Lu" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/west) -"Lv" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"Lw" = ( -/obj/structure/flora/jungle/bush, -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Lx" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Ly" = ( -/obj/machinery/vending/snack, -/turf/open/floor/tile/red/redtaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/security) -"Lz" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"LA" = ( -/obj/machinery/vending/cigarette/colony, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"LB" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req) -"LC" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/science/office) -"LD" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"LE" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"LF" = ( -/obj/machinery/light, -/turf/open/floor/tile/red/redtaupe{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/security) -"LG" = ( -/obj/structure/flora/jungle/grass, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south) -"LI" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/ground/grass/beach{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"LJ" = ( -/obj/structure/flora/jungle/grass, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/east) -"LM" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/canteen) -"LN" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/science/office) -"LP" = ( -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"LQ" = ( -/obj/structure/prop/mainship/mission_planning_system, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"LR" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/obj/item/paper, -/obj/item/paper, -/turf/open/floor/tile/brown{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/req/depot) -"LS" = ( -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"LT" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"LU" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"LV" = ( -/obj/prop/hydroponics, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"LW" = ( -/obj/machinery/door/airlock/mainship/engineering/free_access{ - name = "\improper Engineering Dome" - }, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"LX" = ( -/obj/effect/spawner/random/misc/structure/broken_reinforced_window/colonyspawn, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"Mb" = ( -/obj/structure/largecrate/supply/generator, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"Mc" = ( -/obj/structure/mecha_wreckage/durand, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science) -"Md" = ( -/turf/open/ground/grass/beach/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"Me" = ( -/obj/machinery/door/airlock/mainship/medical/free_access{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Mf" = ( -/obj/effect/spawner/random/engineering/structure/tank_dispenser, -/turf/open/floor/tile/purple/whitepurple{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/science) -"Mg" = ( -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"Mh" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"Mj" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"Ml" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science) -"Mn" = ( -/obj/effect/spawner/random/engineering/structure/tank/fuelweighted, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/science) -"Mp" = ( -/obj/structure/flora/jungle/grass, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"Mr" = ( -/obj/machinery/prop/computer/rdservercontrol, -/turf/open/floor/tile/purple/whitepurplecorner{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"Ms" = ( -/obj/structure/flora/jungle/grass, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Mt" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"Mu" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/campaign/jungle_outpost/outpost/command/captain) -"Mv" = ( -/obj/structure/bed/chair/sofa{ - dir = 1 - }, -/turf/open/floor/tile/green/greentaupe, -/area/campaign/jungle_outpost/outpost/living) -"Mw" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/tile/barber, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"My" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/command/captain) -"MA" = ( -/turf/open/ground/grass/beach/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"MC" = ( -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"MD" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2, -/area/campaign/jungle_outpost/ground/jungle) -"ME" = ( -/obj/structure/platform_decoration{ - dir = 6 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"MF" = ( -/obj/structure/cable, -/turf/open/floor/iron/smooth, -/area/campaign/jungle_outpost/ground/river/east) -"MG" = ( -/turf/closed/gm/dense, -/area/campaign/jungle_outpost/ground/jungle/north) -"MH" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"MK" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"ML" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"MM" = ( -/obj/structure/cargo_container/green{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"MN" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"MO" = ( -/obj/structure/prop/mainship/research/tdoppler, -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science) -"MP" = ( -/obj/structure/table/mainship, -/obj/structure/extinguisher_cabinet/mini{ - dir = 4 - }, -/turf/open/floor/tile/barber, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"MR" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"MS" = ( -/obj/structure/flora/jungle/bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"MU" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"MV" = ( -/obj/structure/platform{ - dir = 9 - }, -/obj/structure/sign/greencross, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"MX" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req) -"MY" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"MZ" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"Na" = ( -/turf/open/floor/tile/blue/taupeblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/command) -"Nb" = ( -/turf/open/ground/grass/beach/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Nc" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/east) -"Ne" = ( -/obj/effect/turf_decal/lvsanddecal{ - dir = 1 - }, -/obj/structure/powerloader_wreckage, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req) -"Nf" = ( -/obj/structure/flora/pottedplant/twentyone, -/obj/structure/sign/greencross{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Ng" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"Nh" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/ground/grass/beach/corner, -/area/campaign/jungle_outpost/ground/jungle/north) -"Ni" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req/qm) -"Nj" = ( -/obj/structure/flora/jungle/grass, -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"Nk" = ( -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/east) -"Nm" = ( -/obj/structure/flora/jungle/grass, -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle/north) -"Nn" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"No" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"Np" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/engineering) -"Nq" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Nr" = ( -/obj/structure/table, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living) -"Nu" = ( -/obj/machinery/light, -/turf/open/floor/tile/red/redtaupe, -/area/campaign/jungle_outpost/outpost/security/vault) -"Nv" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/science) -"Nw" = ( -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/medbay) -"Nx" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/medbay) -"Ny" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"Nz" = ( -/obj/item/flashlight, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"NA" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/canteen) -"NC" = ( -/obj/machinery/computer/telecomms/server, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/command) -"ND" = ( -/obj/structure/platform, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/command) -"NE" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/brown{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/req) -"NG" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/ground/river/east) -"NH" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/tile/purple/whitepurple{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"NI" = ( -/obj/structure/cable, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/science) -"NJ" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"NK" = ( -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle) -"NL" = ( -/obj/machinery/light, -/turf/open/floor/tile/blue/taupeblue{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/command) -"NM" = ( -/obj/machinery/computer/body_scanconsole, -/obj/machinery/light, -/turf/open/floor/tile/blue/whiteblue, -/area/campaign/jungle_outpost/outpost/medbay) -"NN" = ( -/obj/machinery/power/monitor, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"NO" = ( -/obj/structure/rock/variable/jungle, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"NQ" = ( -/obj/structure/rack, -/obj/item/weapon/gun/rifle/ar11, -/obj/item/weapon/gun/rifle/ar11, -/turf/open/floor/tile/red/redtaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/security) -"NR" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/roller, -/turf/open/floor/tile/blue/whiteblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"NS" = ( -/obj/structure/cargo_container/hd_blue{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"NT" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"NU" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/science/south) -"NV" = ( -/obj/item/trash/cigbutt, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"NW" = ( -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/tile/neutral, -/area/campaign/jungle_outpost/outpost/living/canteen) -"NY" = ( -/obj/structure/flora/jungle/grass/thin, -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"NZ" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/structure/handheld_lighting, -/obj/machinery/light, -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science/south) -"Oa" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/tile/green/greentaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/living) -"Ob" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"Oc" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req/depot) -"Od" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Oe" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/science) -"Of" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/science/south) -"Og" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"Oi" = ( -/obj/structure/stairs/seamless/edge_vert{ - dir = 4 - }, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/east) -"Oj" = ( -/obj/machinery/computer/telecomms/monitor, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/command) -"Ok" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/tile/red/redtaupe{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/security) -"Ol" = ( -/turf/open/ground/grass/beach/corner2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"On" = ( -/obj/structure/flora/jungle/bush, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle) -"Oo" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle) -"Op" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"Oq" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"Os" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2, -/area/campaign/jungle_outpost/ground/jungle/north) -"Ou" = ( -/obj/structure/flora/tree/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south) -"Ov" = ( -/obj/structure/rock/variable/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"Ow" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor/tile/neutral{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/living) -"Ox" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north) -"Oy" = ( -/obj/structure/table/woodentable, -/obj/item/binoculars, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"Oz" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"OB" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"OC" = ( -/obj/structure/flora/jungle/grass, -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south) -"OD" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req/depot) -"OE" = ( -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/east) -"OF" = ( -/obj/structure/cable, -/turf/open/floor/wood/alt_seven, -/area/campaign/jungle_outpost/outpost/science/office) -"OG" = ( -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/north) -"OH" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/beach/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"OI" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req) -"OJ" = ( -/obj/machinery/vending/robotics, -/turf/open/floor/tile/purple/whitepurple{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/science) -"OK" = ( -/obj/effect/spawner/random/engineering/structure/tank, -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science) -"OL" = ( -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south) -"OM" = ( -/obj/structure/flora/tree/jungle, -/turf/open/ground/grass/beach{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"ON" = ( -/obj/structure/closet/secure_closet/chemical/colony, -/turf/open/floor/tile/blue/whiteblue{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"OO" = ( -/obj/machinery/door/airlock/colony/medical/hydroponics{ - dir = 1 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"OP" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"OQ" = ( -/obj/structure/bed/chair/sofa/right{ - dir = 8 - }, -/turf/open/floor/wood/variable/wide, -/area/campaign/jungle_outpost/outpost/outer/hermit) -"OR" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/science) -"OS" = ( -/obj/structure/catwalk, -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/east) -"OT" = ( -/turf/closed/gm/dense, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"OU" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"OV" = ( -/obj/effect/spawner/random/misc/structure/closet/tool, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"OW" = ( -/obj/structure/flora/jungle/grass, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"OX" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"OY" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle) -"OZ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"Pb" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Pc" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/reagent_containers/food/drinks/bottle/sake, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"Pd" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"Pe" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Pg" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/ground/grass/beach/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Ph" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Pi" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Pk" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"Pm" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/engineering) -"Pn" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Po" = ( -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"Pp" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"Pq" = ( -/obj/effect/spawner/random/engineering/structure/tank/fuelweighted, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"Pr" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Ps" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Pu" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south) -"Pv" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"Pw" = ( -/obj/structure/cable, -/obj/structure/table/reinforced, -/obj/effect/spawner/random/medical/medbelt, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security/vault) -"Py" = ( -/obj/machinery/telecomms/relay/preset/telecomms, -/turf/closed/mineral/smooth/indestructible, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Pz" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/science/office) -"PA" = ( -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/command) -"PB" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"PC" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2, -/area/campaign/jungle_outpost/ground/jungle) -"PD" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"PF" = ( -/obj/structure/rack, -/obj/effect/spawner/random/engineering/engibelt, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"PG" = ( -/obj/structure/flora/jungle/grass, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"PH" = ( -/obj/structure/closet/secure_closet/chemical/colony, -/turf/open/floor/tile/blue/whiteblue{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"PJ" = ( -/obj/structure/table/fancywoodentable, -/obj/item/storage/fancy/cigar, -/obj/item/ashtray/bronze, -/obj/item/storage/box/matches, -/turf/open/floor/carpet, -/area/campaign/jungle_outpost/outpost/command/captain) -"PK" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"PL" = ( -/turf/open/ground/coast/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/river/lake) -"PM" = ( -/obj/structure/rack, -/obj/effect/spawner/random/engineering/powercell, -/obj/effect/spawner/random/engineering/powercell, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"PN" = ( -/obj/machinery/door/airlock/mainship/security{ - dir = 8 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"PO" = ( -/obj/machinery/vending/phoronresearch, -/turf/open/floor/tile/purple/whitepurple{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/science) -"PP" = ( -/turf/open/ground/grass/beach, -/area/campaign/jungle_outpost/ground/jungle) -"PQ" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"PR" = ( -/obj/structure/stairs/seamless/platform_vert{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/landing) -"PT" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/landing) -"PX" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/misc/book, -/turf/open/floor/tile/blue/taupeblue, -/area/campaign/jungle_outpost/outpost/command) -"PY" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"PZ" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Qb" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/security) -"Qc" = ( -/obj/structure/flora/jungle/grass, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"Qd" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Qe" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north) -"Qf" = ( -/obj/structure/stairs/edge{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Qh" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Qi" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/eyepatch, -/obj/item/storage/box/rxglasses{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"Qj" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"Qk" = ( -/turf/open/floor/tile/red/redtaupecorner{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/security) -"Ql" = ( -/obj/machinery/vending/snack, -/turf/open/floor/tile/purple/whitepurple{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/science) -"Qm" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Qn" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Qo" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Qp" = ( -/obj/effect/spawner/random/misc/structure/girder, -/turf/open/floor/plating, -/area/campaign/jungle_outpost/ground/jungle/west) -"Qq" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/tile/neutral/full, -/area/campaign/jungle_outpost/outpost/living/canteen) -"Qs" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/hydro) -"Qu" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Qv" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"Qy" = ( -/obj/machinery/light, -/turf/open/floor/tile/neutral/full, -/area/campaign/jungle_outpost/outpost/living/canteen) -"Qz" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay) -"QB" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"QC" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/living/canteen) -"QD" = ( -/obj/structure/table/rusticwoodentable, -/obj/item/reagent_containers/food/snacks/pizzapasta/beefnoodle, -/turf/open/floor/wood/variable/wide, -/area/campaign/jungle_outpost/outpost/outer/hermit) -"QE" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "\improper Operations Toilet" - }, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/command) -"QG" = ( -/turf/open/ground/grass/beach/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/river/lake) -"QH" = ( -/turf/open/floor/plating/dmg3, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"QI" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/tile/blue/taupeblue, -/area/campaign/jungle_outpost/outpost/command) -"QJ" = ( -/turf/open/floor/tile/green/greentaupe{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/living) -"QK" = ( -/obj/structure/table, -/obj/item/storage/firstaid, -/turf/open/floor/tile/blue/whiteblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"QL" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"QM" = ( -/obj/structure/closet, -/turf/open/floor/tile/red/redtaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"QN" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"QP" = ( -/obj/machinery/light, -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science/south) -"QR" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living) -"QT" = ( -/obj/machinery/prop/autolathe, -/turf/open/floor/tile/brown{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/req) -"QV" = ( -/obj/machinery/cic_maptable/no_flags, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"QW" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/east) -"QX" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req) -"QY" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/tile/green/greentaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/living) -"QZ" = ( -/obj/structure/cable, -/obj/structure/table/reinforced, -/obj/item/storage/holster/blade/machete/full, -/obj/item/storage/holster/blade/machete/full, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security/vault) -"Ra" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living/bathroom) -"Rb" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/west) -"Rc" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Rd" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/tile/brown/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/req) -"Re" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Rf" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"Rh" = ( -/obj/machinery/computer/prisoner, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"Ri" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/landing) -"Rj" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Rk" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Rl" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"Rm" = ( -/obj/effect/spawner/random/engineering/extinguisher, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"Rn" = ( -/obj/structure/rock/variable/jungle, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north) -"Ro" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/north) -"Rp" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle) -"Rq" = ( -/obj/structure/catwalk, -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/east) -"Rr" = ( -/obj/effect/turf_decal/lvsanddecal{ - dir = 1 - }, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req) -"Rs" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags, -/obj/item/roller, -/turf/open/floor/tile/blue/whiteblue{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"Rt" = ( -/obj/structure/stairs/seamless/edge_vert, -/turf/open/floor/tile/red/full, -/area/campaign/jungle_outpost/outpost/security/vault) -"Ru" = ( -/obj/machinery/vending/medical/shipside, -/turf/open/floor/tile/blue/whiteblue{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"Rv" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"Rw" = ( -/obj/structure/table/reinforced, -/turf/open/floor/tile/blue/taupeblue, -/area/campaign/jungle_outpost/outpost/command) -"Rx" = ( -/obj/structure/flora/tree/jungle, -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"Rz" = ( -/turf/open/ground/grass/beach/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"RA" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"RC" = ( -/obj/machinery/vending/coffee, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"RE" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"RF" = ( -/obj/effect/spawner/random/misc/structure/broken_reinforced_window/colonyspawn, -/obj/structure/platform, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"RH" = ( -/obj/structure/closet/cabinet, -/obj/item/stack/sheet/wood/large_stack, -/obj/item/grown/log, -/obj/item/reagent_containers/food/drinks/bottle/specialwhiskey, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/wood/variable/wide, -/area/campaign/jungle_outpost/outpost/outer/hermit) -"RI" = ( -/turf/open/floor/tile/red/redtaupecorner{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/security) -"RK" = ( -/obj/structure/catwalk, -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north) -"RL" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south) -"RM" = ( -/obj/structure/stairs/seamless/edge_vert{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/north) -"RN" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south) -"RO" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/tile/blue/whiteblue, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"RP" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/machinery/door/window{ - dir = 8 - }, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/bathroom) -"RQ" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/weaponry/explosive/plastiqueexplosive, -/obj/effect/spawner/random/weaponry/explosive/plastiqueexplosive, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security/vault) -"RR" = ( -/obj/machinery/computer/atmoscontrol, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"RS" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"RT" = ( -/turf/open/floor/tile/purple/whitepurplecorner{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science) -"RV" = ( -/obj/structure/bookcase, -/obj/item/clipboard, -/turf/open/floor/wood/alt_seven, -/area/campaign/jungle_outpost/outpost/science/office) -"RW" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/spawner/random/misc/structure/broken_reinforced_window/colonyspawn, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"RX" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/science/south) -"RY" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"RZ" = ( -/turf/open/floor/carpet, -/area/campaign/jungle_outpost/outpost/outer/hermit) -"Sa" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"Sb" = ( -/turf/open/ground/grass/beach/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"Sc" = ( -/obj/structure/rock/variable/jungle, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle) -"Sd" = ( -/obj/structure/prop/vehicle/crawler/crawler_blue, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"Se" = ( -/obj/effect/spawner/random/misc/structure/flavorvending/engivend, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"Sf" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"Sg" = ( -/turf/open/ground/grass/beach/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Sh" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/engineering) -"Sj" = ( -/obj/structure/prop/mainship/chimney, -/turf/open/floor/wood/variable/wide, -/area/campaign/jungle_outpost/outpost/outer/hermit) -"Sk" = ( -/obj/structure/flora/tree/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"Sl" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"Sp" = ( -/obj/machinery/door/airlock/glass_engineering, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/living) -"Sr" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living) -"St" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"Su" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"Sv" = ( -/obj/structure/rack, -/obj/item/weapon/gun/shotgun/pump/standard, -/obj/item/weapon/gun/shotgun/pump/standard, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/tile/red/redtaupe{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"Sw" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/neutral{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/living/canteen) -"Sx" = ( -/obj/structure/table/reinforced, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"Sy" = ( -/obj/structure/sign/pharmacy{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Sz" = ( -/obj/structure/stairs/seamless/edge{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"SA" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle) -"SE" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/security) -"SF" = ( -/obj/structure/stairs/edge, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/west) -"SG" = ( -/obj/structure/rock/variable/jungle, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"SH" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"SL" = ( -/obj/machinery/light, -/turf/open/floor/tile/green/greentaupe, -/area/campaign/jungle_outpost/outpost/living) -"SM" = ( -/obj/structure/rack, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/red/redtaupe{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/security) -"SN" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"SO" = ( -/turf/open/floor/tile/green/greentaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/living) -"SP" = ( -/turf/open/floor/tile/blue/taupeblue, -/area/campaign/jungle_outpost/outpost/command) -"SR" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"SS" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"ST" = ( -/turf/closed/mineral/smooth/indestructible, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"SU" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"SV" = ( -/turf/open/ground/grass/beach/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"SW" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"SX" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/living/canteen) -"SZ" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 4 - }, -/turf/open/floor/wood/variable/wide, -/area/campaign/jungle_outpost/outpost/outer/hermit) -"Tb" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/west) -"Tc" = ( -/obj/structure/cable, -/turf/open/floor/tile/red/redtaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/security) -"Td" = ( -/obj/structure/closet/secure_closet/guncabinet/nt_lab, -/turf/open/floor/tile/red/redtaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/security) -"Te" = ( -/obj/structure/table/fancywoodentable, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/medical/pillbottle, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"Tf" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"Ti" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"Tk" = ( -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/security) -"Tl" = ( -/obj/machinery/gibber, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"Tm" = ( -/turf/open/floor/tile/purple/whitepurplecorner, -/area/campaign/jungle_outpost/outpost/science) -"Tn" = ( -/obj/structure/flora/jungle/bush, -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"Tp" = ( -/obj/machinery/door/airlock/mainship/security/glass{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"Tr" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/landing) -"Ts" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Tv" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Tw" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/tile/blue/whiteblue{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"Tx" = ( -/obj/structure/platform, -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"Ty" = ( -/obj/structure/cargo_container/hd{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"TA" = ( -/obj/machinery/power/apc/drained{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/tile/red/redtaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/security) -"TB" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/misc/folder, -/obj/item/tool/pen/red, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"TC" = ( -/obj/structure/table/fancywoodentable, -/obj/machinery/prop/computer/PC, -/turf/open/floor/wood/alt_seven, -/area/campaign/jungle_outpost/outpost/science/office) -"TE" = ( -/obj/structure/cable, -/turf/open/floor/tile/blue/whitebluecorner{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"TF" = ( -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"TG" = ( -/obj/machinery/door/airlock/mainship/command/free_access, -/obj/structure/cable, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"TJ" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"TL" = ( -/obj/machinery/vending/security, -/turf/open/floor/tile/red/redtaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/security) -"TM" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/living) -"TN" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"TO" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req/depot) -"TP" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"TQ" = ( -/turf/open/ground/grass/beach{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"TS" = ( -/obj/effect/spawner/random/misc/structure/broken_reinforced_window/colonyspawn, -/turf/open/floor/tile/neutral{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/command) -"TT" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south) -"TU" = ( -/turf/open/floor/tile/red/redtaupecorner{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"TV" = ( -/turf/open/floor/tile/brown/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/req) -"TW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"TX" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/neutral{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/living) -"TY" = ( -/obj/structure/stairs/edge{ - dir = 4 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"TZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/red/full, -/area/campaign/jungle_outpost/outpost/security/vault) -"Ua" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Ub" = ( -/turf/open/floor/tile/purple/whitepurplecorner{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science) -"Uc" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/liquid/water, -/area/campaign/jungle_outpost/ground/jungle) -"Ud" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/living/canteen) -"Ug" = ( -/obj/machinery/computer/ordercomp, -/turf/open/floor/tile/brown{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/req/qm) -"Uh" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Ui" = ( -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"Uj" = ( -/obj/structure/flora/jungle/bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Uk" = ( -/obj/structure/flora/jungle/large_bush, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"Um" = ( -/obj/structure/closet/l3closet/janitor, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living) -"Un" = ( -/turf/closed/mineral/smooth/indestructible, -/area/campaign/jungle_outpost/ground/river/east) -"Up" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/engineering) -"Uq" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/tile/blue/whiteblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Ur" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Ut" = ( -/obj/effect/spawner/random/engineering/toolbox, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"Uu" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Uv" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/command/captain) -"Uw" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Ux" = ( -/obj/structure/stairs/railstairs_vert{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"Uy" = ( -/obj/structure/table, -/obj/effect/spawner/random/engineering/toolbox, -/obj/effect/spawner/random/engineering/toolbox, -/turf/open/floor/tile/brown, -/area/campaign/jungle_outpost/outpost/req) -"Uz" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/medical/pillbottle, -/turf/open/floor/tile/blue/taupeblue{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/command) -"UA" = ( -/obj/machinery/computer/security, -/obj/structure/table/reinforced, -/turf/open/floor/tile/red/redtaupe{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/security) -"UB" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"UC" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/beach{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"UD" = ( -/obj/structure/flora/jungle/bush, -/turf/open/ground/grass/beach/corner{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"UE" = ( -/obj/structure/stairs/railstairs_vert{ - dir = 4 - }, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/east) -"UF" = ( -/obj/structure/bed/chair/sofa/left{ - dir = 8 - }, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"UG" = ( -/turf/open/floor/tile/blue/whiteblue, -/area/campaign/jungle_outpost/outpost/medbay) -"UH" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"UI" = ( -/obj/structure/prop/vehicle/truck, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"UJ" = ( -/turf/closed/gm/dense, -/area/campaign/jungle_outpost/ground/jungle) -"UL" = ( -/obj/structure/stairs/seamless/edge{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"UN" = ( -/obj/machinery/door/airlock/glass_engineering, -/obj/structure/cable, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/living/canteen) -"UP" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/prox_sensor, -/obj/item/tool/multitool, -/obj/item/clothing/head/hardhat/orange, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"UQ" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle) -"UR" = ( -/obj/machinery/computer3/server/rack, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"US" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"UU" = ( -/obj/structure/cable, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"UV" = ( -/obj/structure/platform_decoration{ - dir = 6 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"UY" = ( -/obj/structure/rock/variable/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/west) -"UZ" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/campaign/jungle_outpost/outpost/landing) -"Va" = ( -/obj/structure/stairs/seamless/platform_vert{ - dir = 4 - }, -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"Vb" = ( -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/jungle/east) -"Vc" = ( -/obj/structure/stairs/seamless/edge{ - dir = 4 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"Vd" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Ve" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/tile/blue/taupeblue{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/command) -"Vf" = ( -/turf/open/floor/carpet, -/area/campaign/jungle_outpost/outpost/command/captain) -"Vg" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle) -"Vh" = ( -/obj/machinery/vending/nanomed, -/turf/open/floor/tile/blue/whiteblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"Vi" = ( -/turf/open/floor/tile/red/redtaupe, -/area/campaign/jungle_outpost/outpost/security) -"Vj" = ( -/obj/structure/prop/vehicle/truck{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirt, -/area/campaign/jungle_outpost/ground/jungle/south) -"Vk" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle) -"Vl" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 10 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"Vm" = ( -/obj/structure/bed/chair/sofa/left{ - dir = 8 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"Vn" = ( -/obj/structure/flora/jungle/grass, -/turf/open/ground/grass/beach/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Vo" = ( -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/plating, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"Vp" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/powercell, -/obj/effect/spawner/random/engineering/structure/handheld_lighting, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"Vq" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/science/south) -"Vr" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"Vu" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle) -"Vv" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Vw" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/beach, -/area/campaign/jungle_outpost/ground/jungle/east) -"Vx" = ( -/obj/structure/closet/crate/internals, -/obj/machinery/light, -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science/south) -"Vy" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/blue/taupeblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/command) -"Vz" = ( -/obj/machinery/grill/unwrenched, -/turf/open/floor, -/area/campaign/jungle_outpost/ground/jungle) -"VB" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/tile/red/redtaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"VC" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"VD" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req/qm) -"VE" = ( -/obj/structure/bed/chair/sofa/corner, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"VF" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/computercircuit, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"VG" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/west) -"VH" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"VI" = ( -/obj/structure/cable, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/living) -"VJ" = ( -/obj/machinery/door/airlock/mainship/research/glass, -/obj/structure/cable, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/science) -"VK" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/southwest) -"VL" = ( -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/river/east) -"VM" = ( -/obj/machinery/power/geothermal, -/obj/structure/cable, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"VN" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"VO" = ( -/obj/machinery/door/airlock/colony/medical/hydroponics, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"VP" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"VQ" = ( -/obj/machinery/vending/cigarette/colony, -/turf/open/floor/tile/green/greentaupe, -/area/campaign/jungle_outpost/outpost/living) -"VR" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"VS" = ( -/obj/machinery/sleeper, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"VT" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/misc/folder, -/turf/open/floor/tile/blue/taupeblue, -/area/campaign/jungle_outpost/outpost/command) -"VU" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/bathroom) -"VV" = ( -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/river/north) -"VW" = ( -/obj/machinery/botany/editor, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"VY" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/tile/red/redtaupe, -/area/campaign/jungle_outpost/outpost/security/vault) -"VZ" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Wa" = ( -/obj/structure/safe, -/turf/open/floor/wood/alt_seven, -/area/campaign/jungle_outpost/outpost/science/office) -"Wb" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/liquid/water/river, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Wc" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"Wd" = ( -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"We" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/west) -"Wf" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Wg" = ( -/obj/structure/prop/mainship/research/tankcompressor, -/turf/open/floor/tile/purple/whitepurple{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/science) -"Wh" = ( -/turf/open/floor/plating/dmg2, -/area/campaign/jungle_outpost/ground/jungle/west) -"Wj" = ( -/obj/structure/cable, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/command) -"Wk" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req) -"Wl" = ( -/obj/structure/bed/chair/sofa/corner, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"Wm" = ( -/obj/machinery/power/apc/drained{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science) -"Wn" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/west) -"Wo" = ( -/obj/structure/flora/tree/jungle, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Wp" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/tile/red/redtaupe{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/security) -"Wq" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"Wr" = ( -/obj/structure/sink/bathroom{ - dir = 1 - }, -/obj/structure/mirror{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/command/captain) -"Ws" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"Wu" = ( -/obj/machinery/door/airlock/multi_tile/mainship/comdoor/free_access, -/obj/structure/cable, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"Wv" = ( -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"Ww" = ( -/obj/effect/spawner/random/misc/structure/flavorvending/coffeeweighted, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"Wx" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Wy" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"Wz" = ( -/obj/structure/cable, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req) -"WA" = ( -/obj/structure/stairs/edge{ - dir = 8 - }, -/turf/open/floor/plating/ground/dirtgrassborder/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south) -"WD" = ( -/obj/structure/catwalk, -/turf/open/ground/grass/beach/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"WE" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"WF" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"WG" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/liquid/water/river/autosmooth, -/area/campaign/jungle_outpost/ground/river/north) -"WH" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer3/laptop, -/turf/open/floor/tile/blue/taupeblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/command) -"WI" = ( -/obj/machinery/door/airlock/colony/medical/hydroponics, -/obj/structure/cable, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"WJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/station_alert, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"WK" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"WL" = ( -/obj/machinery/door/airlock/multi_tile/mainship/research, -/obj/structure/cable, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science) -"WM" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/req) -"WN" = ( -/obj/structure/table/mainship/nometal, -/obj/item/storage/pill_bottle/inaprovaline{ - pixel_x = 7 - }, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"WO" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/ground/grass/beach/corner2, -/area/campaign/jungle_outpost/ground/jungle) -"WP" = ( -/turf/open/ground/grass/beach{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"WQ" = ( -/obj/structure/extinguisher_cabinet/mini, -/turf/open/floor/tile/green/greentaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/living) -"WR" = ( -/obj/structure/toilet, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"WS" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/tile/blue/whiteblue{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"WU" = ( -/obj/structure/stairs/edge{ - dir = 4 - }, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"WV" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south) -"WW" = ( -/obj/structure/prop/vehicle/crawler/crawler_fuel, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"WX" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/science) -"WY" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/landing) -"Xb" = ( -/turf/open/floor/tile/neutral/full, -/area/campaign/jungle_outpost/outpost/living/canteen) -"Xc" = ( -/obj/structure/flora/tree/jungle/small, -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"Xd" = ( -/obj/effect/spawner/random/misc/structure/flavorvending/snackweighted, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"Xe" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"Xf" = ( -/obj/structure/bed/chair/wood/wings, -/turf/open/floor/carpet, -/area/campaign/jungle_outpost/outpost/outer/hermit) -"Xg" = ( -/turf/open/floor/tile/red/redtaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/security) -"Xh" = ( -/obj/machinery/robotic_cradle, -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science) -"Xi" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/blue/taupeblue{ - dir = 10 - }, -/area/campaign/jungle_outpost/outpost/command) -"Xj" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"Xl" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/green/greentaupe{ - dir = 9 - }, -/area/campaign/jungle_outpost/outpost/living) -"Xm" = ( -/obj/structure/extinguisher_cabinet/mini, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science) -"Xn" = ( -/obj/structure/cargo_container/hd{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/containers) -"Xo" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"Xp" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/security) -"Xr" = ( -/obj/machinery/sleeper, -/turf/open/floor/tile/blue/whiteblue, -/area/campaign/jungle_outpost/outpost/medbay) -"Xs" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"Xt" = ( -/obj/machinery/vending/nanomed, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"Xv" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"Xw" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/outer/west) -"Xx" = ( -/obj/structure/prop/vehicle/van/destructible{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/campaign/jungle_outpost/ground/river/west) -"Xz" = ( -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"XA" = ( -/turf/open/floor/tile/red/redtaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/security) -"XB" = ( -/obj/structure/cable, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living/hydro) -"XC" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle) -"XD" = ( -/obj/structure/prop/mainship/telecomms/receiver, -/obj/machinery/light, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/command) -"XE" = ( -/turf/open/ground/grass/beach/corner2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"XF" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/ground/grass/beach{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"XH" = ( -/obj/structure/closet/wardrobe/robotics_black, -/turf/open/floor/tile/purple/whitepurple{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/science) -"XI" = ( -/obj/structure/catwalk, -/obj/structure/platform, -/obj/structure/cable, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle) -"XJ" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/misc/folder, -/obj/item/tool/pen, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"XK" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/engineering/bomb_supply, -/obj/effect/spawner/random/engineering/bomb_supply, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science/south) -"XL" = ( -/obj/structure/table/fancywoodentable, -/obj/item/phone, -/turf/open/floor/wood/alt_seven, -/area/campaign/jungle_outpost/outpost/science/office) -"XM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/tile/brown{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/req/depot) -"XN" = ( -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/outer/west) -"XP" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/snacks/flour, -/obj/item/reagent_containers/food/snacks/flour, -/obj/item/reagent_containers/food/snacks/flour, -/obj/item/reagent_containers/food/snacks/flour, -/obj/item/reagent_containers/food/snacks/flour, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"XR" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/snacks/chocolatebar, -/obj/item/reagent_containers/food/snacks/chocolatebar, -/obj/item/reagent_containers/food/snacks/chocolatebar, -/turf/open/floor/freezer, -/area/campaign/jungle_outpost/outpost/living/kitchen) -"XS" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/science) -"XT" = ( -/turf/open/floor/tile/purple/whitepurple{ - dir = 6 - }, -/area/campaign/jungle_outpost/outpost/science) -"XU" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/neutral{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/living) -"XV" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"XW" = ( -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/south) -"XX" = ( -/obj/structure/sink{ - dir = 4 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"XY" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/north) -"Yb" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"Yc" = ( -/turf/open/floor/tile/purple/whitepurplecorner{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"Yd" = ( -/obj/structure/sink{ - dir = 1 - }, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"Yf" = ( -/obj/structure/prop/mainship/research/circuit_imprinter, -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science) -"Yg" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/medbay) -"Yh" = ( -/obj/structure/cargo_container/red{ - dir = 8 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"Yi" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/beach/corner{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Yl" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/beach/corner2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Ym" = ( -/obj/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"Yn" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Yo" = ( -/obj/structure/bed/chair/sofa/left{ - dir = 8 - }, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"Yp" = ( -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"Yq" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer3/laptop, -/obj/machinery/light, -/turf/open/floor/tile/blue/taupeblue, -/area/campaign/jungle_outpost/outpost/command) -"Yr" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Yt" = ( -/obj/machinery/science/centrifuge, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science) -"Yu" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall, -/area/campaign/jungle_outpost/ground/jungle) -"Yv" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle) -"Yw" = ( -/turf/open/floor/plating/ground/dirtgrassborder2/corner2, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"Yy" = ( -/turf/open/ground/coast{ - dir = 10 - }, -/area/campaign/jungle_outpost/ground/river/lake) -"Yz" = ( -/obj/structure/platform, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/security) -"YA" = ( -/obj/structure/cable, -/turf/open/floor/tile/green/greentaupecorner{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/living) -"YB" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/engineering) -"YC" = ( -/turf/closed/wall, -/area/campaign/jungle_outpost/outpost/medbay/chemistry) -"YE" = ( -/obj/structure/cable, -/turf/open/floor/wood/alt_four, -/area/campaign/jungle_outpost/outpost/command/captain) -"YG" = ( -/obj/structure/table/woodentable, -/obj/effect/spawner/random/medical/pillbottle, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"YH" = ( -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science) -"YK" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) -"YL" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/machinery/light, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/science) -"YM" = ( -/obj/structure/table, -/obj/item/storage/box/botanydisk, -/obj/item/tool/analyzer/plant_analyzer, -/obj/item/reagent_containers/food/drinks/flask/vacuumflask, -/turf/open/floor/tile/hydro, -/area/campaign/jungle_outpost/outpost/living/hydro) -"YO" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"YP" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/landing/storage) -"YQ" = ( -/obj/vehicle/ridden/wheelchair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/blue/whiteblue{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/medbay) -"YR" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/living) -"YS" = ( -/turf/open/liquid/water/river/autosmooth/deep, -/area/campaign/jungle_outpost/ground/river/north) -"YU" = ( -/obj/structure/rock/variable/jungle, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"YV" = ( -/obj/machinery/door/airlock/multi_tile/mainship/comdoor/free_access{ - dir = 1; - name = "\improper Operations" - }, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"YW" = ( -/turf/closed/mineral/smooth/indestructible, -/area/campaign/jungle_outpost/ground/river/north) -"YX" = ( -/obj/structure/flora/jungle/grass/thin, -/turf/open/floor/plating/ground/dirtgrassborder2/corner, -/area/campaign/jungle_outpost/ground/jungle/north_east) -"YY" = ( -/obj/structure/rock/variable/jungle, -/turf/open/floor/plating/ground/dirtgrassborder2/corner{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"YZ" = ( -/obj/structure/flora/jungle/large_bush, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/east) -"Za" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/science/south) -"Zc" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/turf/open/floor/plating/ground/dirt2, -/area/campaign/jungle_outpost/ground/jungle/east) -"Ze" = ( -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"Zf" = ( -/obj/structure/table/reinforced, -/obj/item/circuitboard/mecha/durand/peripherals, -/obj/effect/spawner/random/engineering/computercircuit, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 8 - }, -/area/campaign/jungle_outpost/outpost/science) -"Zj" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2/corner2{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Zk" = ( -/obj/structure/catwalk, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north_west) -"Zl" = ( -/obj/machinery/light, -/turf/open/floor/tile/blue/whiteblue, -/area/campaign/jungle_outpost/outpost/medbay) -"Zm" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/tile/brown{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/req) -"Zn" = ( -/obj/structure/largecrate/supply/machine, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/req/depot) -"Zq" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2, -/area/campaign/jungle_outpost/ground/jungle/south_west) -"Zr" = ( -/obj/machinery/vending/coffee, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/brown{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/req/depot) -"Zs" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/campaign/jungle_outpost/outpost/command) -"Zt" = ( -/obj/structure/table/reinforced, -/obj/item/mecha_parts/part/durand_torso, -/obj/structure/cable, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/science) -"Zv" = ( -/turf/open/ground/grass/beach{ - dir = 1 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"Zw" = ( -/obj/structure/table/woodentable, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/command) -"Zx" = ( -/obj/structure/sign/greencross{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"Zy" = ( -/turf/closed/mineral/smooth/indestructible, -/area/campaign/jungle_outpost/ground/jungle/north) -"Zz" = ( -/obj/structure/cable, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/tile/red/redtaupe{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/security/vault) -"ZA" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/east) -"ZD" = ( -/obj/effect/spawner/random/misc/structure/broken_window/colonyspawn, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/medbay/lobby) -"ZE" = ( -/turf/open/floor/tile/purple/whitepurple, -/area/campaign/jungle_outpost/outpost/science/south) -"ZF" = ( -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle/north) -"ZH" = ( -/turf/open/ground/grass/beach{ - dir = 4 - }, -/area/campaign/jungle_outpost/ground/jungle) -"ZI" = ( -/obj/machinery/vending/cigarette/colony, -/turf/open/floor/tile/blue/taupeblue{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/command) -"ZJ" = ( -/obj/structure/table, -/obj/item/storage/donut_box, -/turf/open/floor/tile/white, -/area/campaign/jungle_outpost/outpost/medbay) -"ZK" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/wood, -/area/campaign/jungle_outpost/outpost/command) -"ZL" = ( -/turf/open/floor/tile/dark/gray, -/area/campaign/jungle_outpost/outpost/req/depot) -"ZM" = ( -/obj/structure/flora/jungle/bush, -/turf/open/floor/plating/ground/dirtgrassborder2{ - dir = 8 - }, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"ZO" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/tile/green/greentaupe{ - dir = 5 - }, -/area/campaign/jungle_outpost/outpost/living) -"ZP" = ( -/obj/machinery/vending/tool, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/purple/whitepurple{ - dir = 1 - }, -/area/campaign/jungle_outpost/outpost/science) -"ZR" = ( -/obj/structure/stairs/seamless/platform{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/campaign/jungle_outpost/outpost/landing) -"ZS" = ( -/turf/closed/gm/dense, -/area/campaign/jungle_outpost/ground/jungle/west) -"ZU" = ( -/obj/effect/spawner/random/engineering/structure/tank/fuelweighted, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/dark, -/area/campaign/jungle_outpost/outpost/engineering) -"ZV" = ( -/obj/structure/cable, -/turf/open/floor, -/area/campaign/jungle_outpost/outpost/engineering) -"ZW" = ( -/obj/machinery/vending/snack, -/turf/open/floor/tile/green/greentaupe{ - dir = 4 - }, -/area/campaign/jungle_outpost/outpost/living) -"ZX" = ( -/obj/structure/rock/variable/jungle/big, -/turf/open/floor/plating/ground/dirtgrassborder2/autosmooth, -/area/campaign/jungle_outpost/ground/jungle/south_east) -"ZZ" = ( -/obj/structure/flora/jungle/grass/thin, -/obj/effect/landmark/mob_spawner/farwa, -/turf/open/ground/grass/weedable, -/area/campaign/jungle_outpost/ground/jungle/north) - -(1,1,1) = {" -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -ST -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -uj -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -xS -Py -"} -(2,1,1) = {" -ST -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -bl -bl -bl -Go -Go -Go -Go -Go -bl -bl -bl -ph -ph -bE -bE -Sa -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -Fd -mZ -bE -jp -jp -jp -jp -jp -bE -Fd -ZS -ZS -ZS -kQ -il -mZ -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -il -bE -bE -bE -bE -bE -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Ft -Ft -Gl -Uj -Ft -fa -Gd -Gd -Gd -Ft -Xz -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Xz -Ft -Xz -Xz -Gd -Gd -Gd -xD -Xz -Xz -cm -cm -cm -Gd -Gd -Gd -Gd -xS -"} -(3,1,1) = {" -ST -BV -RS -Ui -RS -RS -Fe -Fe -Fe -Lt -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Lt -BV -BV -mc -Lt -Fe -Fe -BV -BV -BV -BV -BV -BV -BV -BV -Fe -Fe -Fe -BV -BV -bl -bl -bl -bl -bl -Go -Go -Go -Go -bl -bl -bl -cy -il -JH -Wn -aH -mZ -kQ -bE -bE -Fd -bE -bE -Sa -il -il -bE -jp -ZS -ZS -jp -bE -bE -bE -bE -Sa -bE -bE -bE -Fd -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -kQ -il -bE -bE -ZS -ZS -ZS -ZS -jp -mZ -kQ -bE -bE -il -bE -il -bE -Xz -Xz -lp -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Ft -Xz -Xz -Xz -Xz -cm -cm -Xz -Xz -Uj -Ft -Xz -cm -cm -Gd -Gd -Gd -Gd -cm -Xz -Xz -Xz -Uj -Gd -Gd -Gd -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Uj -Gd -Gd -xS -"} -(4,1,1) = {" -ST -BV -Fe -RS -Ui -RS -Lt -MS -Fe -Fe -Fe -Fe -Fe -Fe -iY -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -BV -BV -BV -BV -BV -BV -Fe -Fe -ka -Fe -Fe -BV -BV -dQ -bl -bl -bl -bl -Go -Go -Go -Go -bl -bl -ph -ph -Eq -FL -Lv -Rl -Rl -Rl -Rl -Rl -Rl -Rl -Rl -Wn -aH -il -mZ -ZS -ZS -ZS -ZS -il -bE -bE -bE -il -bE -il -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -Fd -il -bE -jp -jp -jp -jp -jp -il -bE -bE -bE -kQ -mZ -bE -bE -Xz -Xz -Xz -Xz -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Xz -cm -cm -cm -cm -cm -cm -Xz -Xz -Xz -Uj -Gd -Gd -Gd -cm -cm -cm -Xz -Xz -Gd -Gd -Gd -Gd -Uj -Xz -Xz -Xz -Ft -Xz -Xz -Xz -Ft -Gl -Gd -xS -"} -(5,1,1) = {" -ST -BV -Fe -RS -Ui -Cv -RS -Lt -Fe -ka -Fe -Fe -Fe -Fe -Fe -Lt -Fe -MH -MH -MH -Fe -Fe -MS -Fe -Fe -Fe -BV -BV -BV -iY -Fe -Fe -Fe -Fe -Lt -Fe -Fe -MS -dQ -dQ -dQ -bl -bl -bl -bl -Go -Go -Go -bl -bl -ph -cy -Eq -af -af -af -af -Sf -af -af -af -af -FL -Cl -Fd -ZS -ZS -ZS -ZS -ZS -ZS -bE -Fd -bE -jp -jp -mZ -ZS -ZS -ZS -go -Fd -bE -ZS -ZS -ZS -ZS -bE -bE -bE -bE -jp -jp -jp -bE -bE -bE -bE -bE -ZS -ZS -bE -bE -Xz -Xz -Xz -Xz -Xz -Gd -Gd -Gd -Uj -Gd -Gd -Gd -Gd -Gd -cm -cm -Gd -Gd -cm -Xz -Xz -wJ -Gd -Gd -Gd -Gd -Xz -Xz -Xz -Xz -Xz -Uj -Gd -Gd -Gd -lp -Ft -Xz -Ft -Xz -GI -eh -Lx -Lx -Lx -Gd -xS -"} -(6,1,1) = {" -ST -BV -Fe -RS -RS -Ui -RS -Fe -Fe -Fe -Fe -Lt -Fe -Fe -Fe -Fe -MH -MH -MH -MH -Fe -Fe -Fe -Fe -Fe -Lt -BV -BV -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -dQ -dQ -bl -bl -bl -bl -Go -Go -Go -bl -bl -ph -ph -kQ -bE -bE -il -go -ZS -ZS -jp -jp -Co -Cl -ZS -ZS -ZS -UY -bE -ZS -ZS -Rx -bE -bE -jp -jp -ZS -ZS -ZS -ZS -bE -bE -il -bE -bE -bE -bE -bE -bE -bE -bE -bE -il -UY -bE -bE -bE -il -ZS -ZS -ZS -il -bE -Xz -Xz -Xz -Xz -Xz -CV -Ft -Xz -Xz -Xz -fa -Gd -Gd -Gd -Gd -Gd -Gd -fa -Xz -Xz -Ft -Gd -Gd -Gd -Xz -Xz -Xz -Xz -Xz -Xz -Ft -Xz -Gd -Gd -Gd -Gd -Xz -Xz -Xz -GI -JL -Zj -wl -wl -dx -Gd -xS -"} -(7,1,1) = {" -ST -BV -Lt -Fe -RS -Ui -RS -OP -Fe -Fe -Fe -Fe -Fe -MS -Fe -Fe -nA -MH -MH -Fe -Lt -Fe -Fe -ka -Fe -Fe -BV -BV -BV -Fe -Fe -mc -Fe -Fe -BV -BV -iY -Fe -Fe -Fe -lu -dQ -LU -dQ -dQ -bl -bl -Go -Go -Go -bl -bl -ph -cy -ph -bE -Fd -ZS -ZS -ZS -ZS -At -Lu -Cl -bE -Sa -bE -bE -bE -ZS -ZS -bE -bE -bE -jp -ZS -ZS -ZS -bE -bE -bE -il -bE -bE -UY -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -Sa -ZS -ZS -mZ -il -bE -Xz -Wx -Ft -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Uj -Xz -Gd -Gd -Gd -Ft -Xz -Xz -Xz -Ft -Xz -Xz -Xz -fa -Xz -Ft -Gl -CV -Xz -cm -Gd -Gd -Gd -Gd -Gd -Ft -Xz -CG -QL -Dp -Xz -Xz -Xz -Gd -xS -"} -(8,1,1) = {" -ST -BV -Fe -Fe -RS -RS -Ui -RS -Fe -Fe -lu -Fe -Fe -Fe -BV -BV -BV -BV -Fe -Fe -Fe -Fe -Fe -Fe -MS -Fe -Fe -BV -BV -Fe -Lt -Fe -Fe -BV -BV -BV -BV -BV -Fe -Fe -Fe -Fe -Fe -Fe -dQ -bl -bl -bl -Go -Go -Go -bl -bl -bl -ph -ph -ZS -ZS -ZS -ZS -ZS -jp -eC -Lv -Rl -Rl -Rl -Rl -aH -bE -ZS -Rl -Rl -Rl -aH -ZS -ZS -Fd -bE -bE -Ac -kS -Xw -Xw -Xw -Xw -Xw -jL -jL -Xw -tq -Bw -il -bE -bE -bE -bE -ZS -ZS -ZS -il -bE -bE -Xz -Gd -Uj -Xz -Xz -Xz -Ft -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Gd -Gd -Ft -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Gd -Gd -Uj -Xz -cm -cm -cm -Gd -Gd -Gd -GI -Lx -JL -gW -Xz -Xz -Xz -Xz -Gd -xS -"} -(9,1,1) = {" -ST -BV -Fe -ka -Fe -RS -Ui -RS -RS -Fe -Fe -BV -BV -BV -BV -BV -BV -BV -Fe -Fe -Fe -Fe -lu -Fe -Fe -Fe -Fe -BV -BV -lu -Fe -Fe -Fe -BV -BV -BV -BV -BV -Fe -Fe -Fe -Fe -Fe -mc -dQ -dQ -dQ -bl -bl -Go -Go -Go -bl -bl -bl -ph -ph -ph -ZS -mZ -bE -jp -ig -Ep -af -af -af -FL -Lv -Rl -sg -Fu -af -FL -Cl -bE -Sa -il -bE -bE -kS -lI -dv -pd -XN -lI -XN -XN -XN -OX -lI -tq -bE -bE -bE -ZS -ZS -ZS -ZS -il -UY -bE -il -cm -Gd -Gd -Gd -cm -cm -cm -Xz -Xz -Xz -cm -cm -Xz -Xz -Gd -Gd -Xz -Xz -Ft -Gd -Gd -Gd -Gd -Xz -Xz -Xz -Gd -Gd -Gd -Gd -Xz -Xz -cm -cm -cm -Ft -Gl -CG -QL -wl -Dp -Xz -Xz -Xz -Xz -Ft -xS -"} -(10,1,1) = {" -ST -BV -Fe -Fe -Lt -RS -RS -Ui -RS -Fe -Fe -BV -BV -BV -BV -BV -BV -Fe -Fe -bi -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -BV -BV -BV -BV -Fe -Fe -MH -MH -MH -Fe -Fe -CM -dQ -bl -bl -bl -Go -Go -Go -Go -bl -bl -bl -ph -uZ -il -bE -bE -jp -jp -bE -bE -il -zA -af -af -af -ah -vh -ct -Lv -Rl -Rl -aH -bE -bE -dw -XN -NV -eu -XN -xd -XN -XN -XN -XN -XN -AL -lU -Rl -ZS -ZS -ZS -ZS -mZ -bE -bE -bE -jp -cm -cm -Gd -Gd -Gd -cm -Gd -Gd -Uj -Gd -Gd -cm -cm -Xz -Wx -Xz -Xz -Xz -Gd -Gd -Gd -Gd -kh -Ft -Xz -Gd -Gd -Gd -Gd -Gd -xD -fa -Xz -Xz -Ft -Xz -Ft -Zq -Bl -Xz -Xz -Xz -Ft -wJ -Ft -Wx -xS -"} -(11,1,1) = {" -ST -BV -Fe -Fe -Lt -Fe -Nj -Ui -RS -Fe -mc -Fe -BV -BV -Fe -Fe -Fe -Fe -Fe -Fe -Fe -RS -RS -RS -RS -yt -Fe -Fe -Lt -Fe -Fe -Tn -Fe -Fe -BV -BV -BV -Fe -mc -Fe -MH -MH -MH -MH -Fe -Fe -LU -dQ -dQ -bl -bl -Go -Go -Go -Go -bl -bl -bl -ph -ph -il -ZS -ZS -ZS -ZS -ZS -ZS -kQ -bE -il -bE -vh -Fd -Eq -af -Sf -FL -Lv -Rl -Et -vn -XN -XN -XN -XN -Aw -XN -XN -XN -XN -XN -Aw -SF -Hq -ZS -ZS -ZS -mZ -il -bE -il -bE -jp -cm -cm -cm -Gd -Gd -cm -Gd -Gd -Gd -Gd -Gd -Gd -cm -Xz -Xz -Xz -Xz -wJ -Gd -Gd -Uj -Xz -Xz -Xz -Xz -Gd -Gd -Gd -Xz -GI -Lx -Lx -Lx -Lx -Lx -Lx -Lx -JL -TJ -Xz -Ft -wJ -Uj -Ft -cm -cm -xS -"} -(12,1,1) = {" -ST -BV -BV -lu -Fe -Fe -RS -Ui -RS -RS -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Lt -ka -Fe -Fe -RS -cR -Ui -RS -RS -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Lt -Fe -BV -BV -Fe -Fe -Fe -MH -MH -BV -MH -Fe -ka -Fe -Fe -dQ -bl -bl -bl -bl -bl -Go -Go -Go -bl -bl -ph -ph -Rx -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -mZ -il -bE -bE -bE -bE -wX -Sf -FL -Cl -vn -XN -XN -XN -Ei -lI -Fb -XN -XN -XN -XN -AL -Eq -Sf -oU -ZS -ZS -ZS -bE -il -bE -bE -bE -cm -cm -Gd -Gd -cm -cm -Xz -Wx -Gd -Gd -Ft -Gd -Gd -Ft -Xz -Ft -Gd -Gd -Gd -fa -Ft -Xz -Xz -Xz -Xz -GI -Lx -Lx -Lx -JL -QL -wl -wl -wl -wl -wl -wl -uI -TJ -Gd -Gd -Gd -Ft -Xz -cm -Gd -xS -"} -(13,1,1) = {" -ST -BV -BV -Fe -MS -Fe -RS -RS -Ui -RS -Fe -Fe -Fe -Fe -iY -Lt -Fe -Fe -Fe -Fe -Fe -RS -RS -Ui -Ui -RS -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -MH -BV -BV -BV -Fe -Fe -Fe -Fe -dQ -dQ -bl -bl -bl -bl -bl -Go -Go -bl -bl -bl -ph -ph -ph -il -UY -Fd -ZS -ZS -ZS -ZS -ZS -ZS -bE -bE -bE -ZS -ZS -ZS -ct -Cl -dw -Fb -XN -BS -Fc -lI -lI -XN -yr -lI -lI -AL -il -bE -il -ZS -ZS -ZS -Qp -Dl -bE -eB -dm -AZ -cm -Gd -Gl -Ft -Xz -Xz -Ft -Xz -fa -Xz -Ft -Gd -Xz -Xz -fa -Gd -Gd -Gd -Xz -Xz -Xz -Xz -Xz -Xz -CG -QL -wl -wl -wl -Dp -Xz -Xz -Xz -Xz -Xz -Wx -CG -TJ -Gd -Gd -Gd -Gl -Gd -Gd -Gd -xS -"} -(14,1,1) = {" -ST -BV -BV -BV -BV -Fe -Fe -RS -Ui -RS -Fe -Fe -Fe -Fe -Fe -CM -Fe -mc -Fe -Fe -BV -BV -RS -Ui -Ui -OP -mc -Fe -Fe -BV -BV -BV -Fe -Fe -Fe -Fe -Fe -ka -Fe -Fe -Fe -BV -BV -BV -BV -BV -Fe -Lt -Fe -FF -qg -qg -VG -VG -bl -bl -Go -Go -bl -bl -bl -bl -ph -vc -ph -ph -bE -ZS -go -ZS -ZS -ZS -ZS -il -ZS -ZS -ZS -jQ -sg -Cl -dw -XN -XN -BS -XN -lI -mG -XN -XN -OX -ej -AL -Fd -bE -ZS -ZS -ZS -bE -bE -bE -lU -Rl -iG -mJ -Gl -Ft -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Gd -Gd -Gd -Ft -Xz -cm -cm -Xz -Xz -Xz -CG -rt -Xz -Gd -Gd -wJ -Xz -fa -Xz -Xz -Xz -Xz -CG -LE -Qo -Gd -Gd -Gd -Gd -Gd -cm -xS -"} -(15,1,1) = {" -ST -BV -BV -BV -BV -BV -ka -RS -Ui -RS -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -BV -BV -Cv -RS -RS -RS -Fe -Fe -BV -BV -BV -BV -BV -BV -iY -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -BV -BV -BV -Fe -Fe -Fe -Fe -MH -qg -qg -qg -VG -bl -bl -Go -Go -bl -bl -bl -bl -bl -bl -ph -ph -ph -ph -cy -Fd -mZ -ZS -ZS -ZS -Fd -bE -ct -Hq -rQ -Wq -XN -XN -BS -XN -Wq -XN -ej -XN -NV -XN -sd -bE -bE -ZS -ZS -dm -iG -lU -Rl -sg -Hq -Hq -jD -Ft -Xz -Xz -Xz -Ft -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Gd -Gd -Xz -Xz -Xz -Gd -Gd -Gd -kh -Xz -CG -gW -Xz -Gd -Gd -Gd -Xz -Gd -Gd -Xz -Xz -Xz -Ua -uI -LE -Qo -Gd -Gd -Xz -cm -cm -xS -"} -(16,1,1) = {" -ST -BV -BV -BV -BV -BV -Fe -RS -Ui -RS -BV -BV -BV -BV -Fe -Fe -Fe -Fe -BV -BV -BV -BV -Fe -Fe -Fe -Fe -Fe -ka -BV -BV -BV -BV -BV -BV -Fe -Fe -Fe -Fe -Fe -Fe -Fe -MS -Fe -BV -BV -BV -BV -Fe -mc -Fe -Fe -Fe -Fe -ji -dQ -dQ -bl -Go -Go -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -ph -ph -ph -ph -ZS -go -bE -bE -ct -Hq -uc -BS -BS -BS -BS -XN -XN -XN -XN -XN -NV -bv -sd -bE -bE -bE -fp -dm -dm -ct -dm -Hq -Hq -kO -Dp -Xz -Uj -Xz -Xz -Li -jv -jv -jv -jv -pP -Xz -Xz -Xz -Ft -xD -Xz -Xz -Xz -Ft -Gd -Gd -Gd -Ft -Xz -CG -TJ -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Xz -Ft -Gd -Gd -Ua -uI -LE -Lx -Qo -Xz -cm -cm -xS -"} -(17,1,1) = {" -ST -BV -BV -BV -BV -BV -Fe -OP -Ui -RS -lu -BV -BV -Lt -mc -MS -Fe -Fe -BV -BV -BV -BV -Fe -Fe -Lt -CM -Fe -BV -BV -BV -BV -BV -BV -BV -Fe -Fe -BV -BV -lu -Fe -Fe -mc -Fe -Yp -BV -BV -BV -BV -Lt -MS -Fe -Fe -Fe -BV -BV -ji -bl -Go -Go -Go -Go -Go -Go -bl -bl -bl -bl -bl -bl -bl -bl -bl -ph -bE -bE -bE -bE -ct -kO -tr -dw -XN -XN -XN -Ei -lI -Fb -XN -XN -Dh -iT -AL -bE -bE -bE -eB -dm -dm -ct -Hq -Hq -Hq -Cl -Xz -Xz -Xz -Ft -Xz -VK -Mg -Mg -Mg -Mg -PQ -Xz -Xz -Ft -Xz -Xz -Ft -Xz -Xz -wJ -Gd -Gd -Gd -Gd -Xz -CG -TJ -Gd -Gd -Gd -Gd -Gd -Gd -Xz -Xz -Xz -Gd -Gd -Gd -pM -wl -uI -TJ -Xz -cm -Gd -xS -"} -(18,1,1) = {" -ST -BV -BV -BV -iY -Fe -Fe -OP -Ui -RS -Fe -Fe -ka -Fe -Fe -Fe -Fe -BV -BV -BV -BV -BV -Fe -Fe -Fe -Fe -Fe -BV -BV -BV -BV -BV -BV -Fe -Fe -BV -BV -BV -Fe -bi -Fe -Fe -Fe -BV -BV -BV -BV -BV -Fe -Fe -Fe -Fe -BV -BV -BV -BV -bl -Go -Go -Go -Go -Go -Go -Go -Go -bl -bl -bl -bl -bl -bl -bl -bl -vc -ph -Ie -bE -ct -MR -bE -CB -lI -XN -dl -dl -lI -mG -XN -XN -XN -lI -CN -bE -bE -bE -eB -mI -Ko -sg -Hq -Wh -dm -Cl -Ft -Xz -Xz -Li -Og -pL -GS -Mg -Mg -OZ -pL -Og -pP -Xz -Xz -Uj -CV -Xz -Ft -Xz -Gd -Gd -Gd -Gd -Ft -CG -TJ -Xz -Gd -Gd -Gd -Gd -Xz -Xz -Ft -Xz -Xz -Gd -Gd -Gl -Ft -CG -TJ -Xz -Xz -Gd -xS -"} -(19,1,1) = {" -ST -BV -BV -Fe -Fe -Lt -Fe -RS -Ui -RS -Fe -Fe -Fe -Fe -Fe -Fe -Fe -BV -BV -BV -Fe -Fe -Fe -Fe -Fe -Fe -MH -BV -BV -BV -MH -Fe -Fe -Lt -Fe -BV -BV -BV -Fe -Fe -Fe -Fe -BV -BV -BV -BV -BV -bi -Fe -Fe -Fe -Fe -Fe -BV -ve -ve -ve -bl -Go -Go -Go -Go -Go -Go -Go -Go -Go -bl -bl -bl -bl -bl -bl -bl -bl -ph -ph -ct -Km -bE -iV -CB -Rb -Rb -Rb -Rb -Rb -cH -cH -Rb -CN -uC -il -bE -bE -Qp -Dl -ct -Hq -Hq -dm -kO -oU -Xz -Xz -Xz -VK -Gs -GS -Mg -Nz -Mg -Mg -Mg -mw -PQ -Xz -Xz -Xz -Xz -fa -Xz -Xz -GI -Lx -Lx -eh -Lx -JL -TJ -Xz -lp -Xz -Gd -Gd -Ft -Uj -Xz -Xz -Xz -Gd -Gd -Gd -Gd -CG -xQ -Xz -Ft -Gd -xS -"} -(20,1,1) = {" -ST -BV -Fe -Fe -Fe -Fe -Fe -RS -Ui -Cv -Fe -Fe -Fe -Fe -MH -MH -BV -BV -BV -BV -Fe -Fe -Fe -Lt -Fe -Fe -MH -MH -MH -MH -MH -Fe -Lt -Fe -Fe -MS -BV -BV -Fe -Fe -BV -BV -BV -BV -BV -Fe -Fe -Fe -Fe -Fe -Zk -Be -sh -BV -ve -ve -ve -Go -Go -Go -Go -Go -Go -Go -Go -Go -Go -Go -Go -bl -bl -bl -bl -bl -bl -bl -ph -ct -Cl -bE -bE -bE -bE -il -bE -Fd -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -Eq -Sf -ns -af -fq -bE -Xz -Li -jv -pL -GS -Mg -Mg -Mg -Mg -EM -pL -pL -pL -jv -pP -Ft -Xz -GI -Lx -Lx -JL -Ih -wl -wl -wl -wl -Dp -Xz -Xz -Ft -Gd -Gd -Xz -Gl -Ft -fa -Gd -Gd -Gd -Gd -GI -JL -gW -Xz -Uj -Gd -xS -"} -(21,1,1) = {" -ST -BV -Fe -Fe -Fe -Fe -Fe -RS -Ui -RS -Lt -Fe -Fe -Fe -BV -MH -BV -BV -BV -BV -Lt -Lt -Fe -ka -Fe -Fe -Fe -MH -BV -BV -MH -Fe -Fe -Fe -Fe -Fe -Fe -Lt -Fe -Fe -BV -BV -BV -BV -Fe -Fe -Fe -Lt -Fe -cu -Be -SH -ve -ve -ve -ve -YS -YS -Go -bl -bl -bl -bl -Go -Go -Go -Go -Go -Go -Go -Go -bl -bl -bl -bl -bl -ph -Eq -tr -vh -bE -il -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -eB -Dl -bE -bE -Qp -eB -dm -bE -Xz -VK -jb -Mg -Mg -Mg -Mg -mo -GS -Mg -RA -Mg -rC -Mg -Tx -Xz -Xz -CG -QL -wl -wl -Dp -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Ft -Gd -Gd -Gd -Gd -cm -cm -CG -QL -Dp -Ft -Gd -Gd -xS -"} -(22,1,1) = {" -ST -BV -Fe -Fe -ka -Fe -Fe -RS -cR -RS -Lt -Fe -BV -BV -BV -MH -MH -MH -BV -BV -BV -Fe -Fe -Fe -Fe -Fe -Fe -MH -BV -BV -BV -Fe -Fe -Fe -Fe -ka -Fe -Fe -Fe -Fe -BV -BV -iY -Fe -Fe -ka -Fe -dQ -dQ -dQ -CL -gg -ve -ve -YS -YS -YS -ve -ve -bl -bl -bl -bl -bl -bl -bl -Go -Go -Go -Go -Go -Go -Go -bl -bl -bl -nj -nj -ph -ph -il -mZ -il -bE -il -il -ZS -ZS -kQ -il -bE -bE -bE -bE -il -il -bE -bE -bE -kQ -Fd -bE -bE -Xz -PY -tn -Mg -Mg -Mg -av -jA -xa -Bo -aR -aR -Mg -Mg -PQ -Lx -Qo -CG -gW -Xz -Xz -Xz -Xz -Xz -Gd -CV -Gl -Ft -Xz -Xz -Xz -Xz -Xz -Xz -Gd -Gd -Gd -cm -cm -Xz -CG -TJ -fa -Gd -Gd -Gd -xS -"} -(23,1,1) = {" -ST -BV -BV -Fe -Fe -Fe -Fe -RS -Ui -RS -Fe -Fe -BV -BV -BV -MH -Fe -Fe -BV -BV -BV -BV -Fe -Fe -lu -Fe -Fe -Fe -BV -BV -BV -BV -Fe -lu -Fe -CM -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -qg -qg -ve -ve -CL -gg -ve -YS -YS -YS -ve -ve -ve -AN -AN -bl -bl -bl -bl -bl -bl -bl -Go -Go -Go -Go -Go -Go -bl -bl -tc -tc -bl -ph -fR -ph -bE -il -mZ -ZS -ZS -mZ -il -bE -il -bE -jp -jp -bE -bE -bE -bE -bE -bE -bE -bE -bE -Xz -PY -Mg -Mg -Mg -CQ -Eu -pL -pL -aI -pL -aR -Mg -Mg -Dg -Lo -LE -JL -TJ -Xz -Gd -Gd -Xz -Gd -Gd -Wx -Xz -Xz -Xz -Xz -Xz -cm -cm -Gd -Gd -Gd -Gd -cm -cm -Xz -CG -TJ -Gd -Gd -Gd -Gd -xS -"} -(24,1,1) = {" -ST -BV -BV -MH -Fe -mc -Fe -RS -Ui -RS -lJ -Fe -BV -BV -BV -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -BV -BV -BV -Fe -Fe -Fe -Fe -Fe -MS -Fe -Fe -Fe -Fe -Fe -Fe -dQ -qg -qg -Ik -ve -ve -CL -gg -YS -YS -YS -ve -ve -ve -ve -AN -UJ -UJ -UJ -AN -bl -bl -bl -bl -GZ -bl -Go -Go -Go -Go -Go -Go -tc -GZ -bl -bl -bl -ph -ph -kQ -ZS -ZS -ZS -ZS -ZS -bE -bE -bE -jp -jp -bE -bE -bE -il -bE -bE -bE -bE -bE -Xz -PY -Mg -Mg -CQ -pL -aI -pL -pL -Mg -rC -aR -Mg -Mg -Va -jX -Cn -wl -Dp -CV -Gd -Gd -Gd -Gd -Gd -Uj -Ft -Xz -Xz -cm -cm -cm -Gd -Gd -Xz -Gd -Gd -Gd -Gd -Gl -CG -TJ -Xz -Xz -Gd -Gd -xS -"} -(25,1,1) = {" -ST -BV -BV -MH -MS -Fe -Fe -RS -xs -Ui -RS -BV -BV -BV -BV -BV -Fe -ka -Fe -Fe -MS -Fe -Fe -Fe -Fe -Fe -Fe -Fe -bi -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Lt -dQ -qg -qg -Ik -Ik -ve -ve -ve -gO -kT -YS -YS -ve -ve -AN -UJ -UJ -UJ -UJ -Sk -mD -OY -OY -AN -bl -bl -bl -bl -bl -Go -Go -fs -Go -Go -GZ -bl -bl -bl -bl -bl -ph -ZS -ZS -ZS -ZS -ZS -ZS -kQ -bE -bE -jp -ZS -ZS -bE -bE -bE -UY -bE -bE -bE -bE -Xz -PY -Mg -Mg -EM -pL -QH -GS -Mg -Mg -Mg -aR -aF -Mg -PQ -wl -Kn -Xz -Xz -Xz -Ft -Gd -Gd -Gd -Gl -Ft -Xz -Xz -Xz -cm -zU -Gd -Gd -Xz -Ft -Xz -Gd -Gd -kh -Uj -Yr -TJ -Xz -Xz -Xz -Gd -xS -"} -(26,1,1) = {" -ST -BV -BV -MH -BV -Fe -Lt -Fe -RS -Ui -RS -BV -BV -Fe -BV -BV -Lt -Fe -mc -Fe -Fe -Lt -Fe -Fe -Fe -Fe -iY -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -iY -Fe -Fe -Fe -dQ -dQ -dQ -dQ -Ik -Ik -Ik -ve -ve -ve -YS -gO -kT -ve -ve -ve -ve -AN -UJ -UJ -mD -mD -mD -dn -dn -dn -OY -OY -AN -bl -bl -bl -bl -Go -Go -Go -Go -Go -Go -bl -bl -bl -bl -bl -bl -bl -ZS -ZS -ZS -ZS -mZ -il -LP -ZS -ZS -ZS -go -bE -bE -bE -bE -bE -bE -bE -Xz -VK -Mg -Mg -Mg -pL -Vo -Mg -aR -aR -aR -aR -Mg -Mg -Tx -Xz -Xz -Xz -Xz -Xz -Xz -Gd -Gd -Gd -Uj -Xz -Xz -Xz -Xz -Xz -cm -cm -Xz -Uj -Xz -Xz -Xz -Uj -Gl -Ft -CG -LE -Qo -Xz -Xz -Gd -xS -"} -(27,1,1) = {" -ST -BV -MH -MH -BV -BV -Fe -Fe -RS -Ui -RS -BV -BV -Fe -Fe -bi -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -MH -MH -dQ -dQ -ve -ve -ve -ve -ve -ve -ve -ve -YS -YS -gO -gg -ve -ve -AN -AN -Vk -eL -mD -KY -mD -ts -Pp -Pp -Pp -Vl -IK -AN -AN -AN -bl -bl -bl -bl -bl -Go -Go -Go -Go -Go -bl -bl -bl -bl -bl -bl -bl -ZS -ZS -ZS -ZS -bE -ZS -ZS -bE -mZ -Fd -bE -jp -jp -jp -bE -bE -Xz -xP -oP -pL -pL -pL -LT -Mg -aR -Mg -Mg -Eu -pL -oP -rU -Xz -Xz -Xz -lp -Xz -Gd -Gd -Gd -Gd -Gd -Gd -fa -Xz -Xz -Ft -Xz -Xz -Xz -Xz -Xz -Xz -Ft -Xz -Xz -Xz -Ua -uI -TJ -Uj -Gd -Gd -xS -"} -(28,1,1) = {" -ST -BV -MH -MH -BV -BV -BV -Fe -RS -Ui -RS -RS -MH -MH -Fe -Fe -Fe -Fe -CM -Fe -Fe -Fe -Fe -Fe -BV -BV -BV -BV -ka -Fe -Fe -Lt -Fe -Fe -MH -MH -qg -qg -dQ -ve -ve -ve -ve -ve -ve -ve -ve -YS -YS -YS -CL -gg -ve -ve -AN -sy -mD -mD -KY -Fr -Pp -Oz -fy -Po -fy -Oz -Pp -hl -Sk -AN -AN -bl -bl -bl -bl -bl -bl -Go -Go -Go -Go -Go -bl -bl -bl -bl -bl -bl -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -jp -jp -jp -jp -bE -bE -Xz -Xz -Xz -VK -GS -Mg -Mg -Mg -aR -Mg -CQ -CQ -PQ -Xz -Xz -Xz -Xz -Xz -Xz -Uj -Gd -Gd -Xz -Xz -Gd -Gd -Gd -wJ -Xz -Xz -Xz -Xz -Xz -Ft -Xz -Xz -Xz -Ft -Ft -Xz -Ft -CG -xQ -Gd -Gd -Gd -xS -"} -(29,1,1) = {" -ST -BV -Fe -Fe -BV -BV -BV -Fe -OP -Nj -Ui -ye -MH -MH -Fe -Fe -Fe -Fe -lu -Fe -Fe -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -Lt -Fe -qg -qg -qg -dQ -ve -ve -ve -ve -ve -ve -ve -ve -ve -YS -YS -YS -ve -CL -gg -AN -AN -Vk -KY -mD -ts -Pp -Oz -fy -ij -fy -Po -fy -fy -fy -Oz -Pp -Vl -AN -AN -AN -bl -bl -bl -bl -bl -bl -Go -Go -Go -Go -Go -bl -bl -bl -bl -bl -ZS -ZS -ZS -ZS -ZS -ZS -ZS -ZS -jp -jp -jp -jp -bE -bE -fa -Xz -Xz -xP -UB -pL -Mg -Mg -aR -Mg -pL -UB -rU -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Ft -Xz -Xz -Xz -Xz -Gd -Gd -Xz -Xz -Xz -Xz -Xz -lp -CV -Xz -Gd -Gd -Gd -Gl -Uj -Gd -CG -gW -Gd -Gd -Gd -xS -"} -(30,1,1) = {" -ST -BV -Fe -mc -Fe -BV -BV -BV -Fe -OP -Ui -ye -MH -MH -nA -Fe -Fe -Fe -Fe -Fe -Fe -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -BV -ve -ve -ve -ve -ve -ve -ve -ve -YS -YS -YS -YS -YS -YS -ve -ve -CL -gg -AN -mD -mD -mD -sy -pq -fy -fy -Po -OO -Po -Po -fy -fy -Po -fy -fy -EG -dV -KY -AN -bl -bl -bl -bl -Gy -bl -bl -bl -Go -Go -Go -Go -bl -bl -bl -bl -bl -bl -ZS -ZS -ZS -ZS -ZS -ZS -ZS -jp -jp -jp -jp -jp -Xz -Xz -Ft -Uj -Xz -VK -aF -Mg -aR -Mg -PQ -Xz -Xz -Xz -Xz -eU -eU -eU -eU -eU -eU -eU -eU -eU -Xz -Xz -Ft -Xz -Xz -Xz -Xz -Xz -CV -fa -Xz -Ft -Gd -Gd -Gd -Gd -Gd -CG -TJ -fa -Gd -Gd -xS -"} -(31,1,1) = {" -ST -BV -Fe -bi -Fe -BV -BV -BV -Fe -RS -Ui -RS -MH -MH -MH -Fe -Fe -Fe -mc -Lt -Fe -Fe -BV -BV -Fe -Fe -BV -BV -BV -BV -BV -BV -ve -ve -ve -ve -ve -ve -ve -YS -YS -YS -YS -YS -YS -YS -YS -ve -ve -pv -AU -AU -BX -mD -mD -mD -Fr -Oz -Po -Po -Po -Oz -fy -Po -Po -Po -Po -Po -Po -Oz -hl -eL -AN -vH -AN -bl -tc -GZ -bl -bl -bl -bl -Go -Go -Go -Go -Go -bl -bl -bl -bl -bl -bl -ph -il -ZS -ZS -ZS -ZS -ZS -jp -jp -jp -cm -cm -Xz -Ft -Xz -xP -oP -dM -tI -oP -rU -Xz -Xz -Xz -eU -eU -vZ -vZ -mY -vZ -vZ -vZ -vZ -eU -eU -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Ft -Xz -Xz -Xz -cm -cm -cm -Gd -Gl -CG -TJ -Xz -Gd -Gd -xS -"} -(32,1,1) = {" -ST -BV -Fe -Fe -Fe -BV -BV -BV -Fe -RS -Ui -RS -Fe -Fe -Fe -Lt -Fe -Fe -Lt -Fe -Fe -Fe -Fe -Fe -Fe -Fe -Fe -BV -BV -BV -Ik -Ik -ve -ve -ve -ve -ve -YS -YS -YS -YS -YS -YS -YS -YS -YS -ve -ve -ve -ve -Vk -wO -oM -oM -CO -Qc -pq -fy -fy -fy -Po -ij -yP -Po -XX -wZ -Po -LV -fy -fy -EG -Qc -KY -mD -AN -AU -AU -tc -bl -bl -bl -bl -bl -Go -Go -Go -Go -Go -Go -bl -bl -bl -bl -ph -ph -kQ -bE -ZS -ZS -ZS -jp -jp -jp -cm -cm -Xz -Xz -Xz -Xz -CG -Lo -Pn -TJ -Xz -Xz -Xz -Xz -eU -vZ -vZ -vZ -vZ -vZ -sN -vZ -vZ -vZ -eU -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Ft -Gd -Gd -Gd -cm -cm -Ft -CG -LE -Qo -Gd -Gd -xS -"} -(33,1,1) = {" -ST -BV -Fe -MS -Fe -Fe -BV -BV -iY -RS -Ui -RS -Fe -Fe -Fe -Fe -ka -Fe -Fe -MH -MH -MH -Fe -Lt -Fe -Lt -dQ -qg -Ik -Ik -Ik -ve -ve -ve -ve -YS -YS -YS -YS -YS -YS -YS -YS -ve -ve -ve -ve -ve -AN -cS -AN -XC -cX -fQ -kH -ts -Oz -fy -fy -fy -zg -ij -ij -VO -ij -ij -VO -ij -Oz -ij -ij -hl -mD -KY -mD -mD -UJ -UJ -bl -bl -bl -bl -bl -bl -Go -Go -Go -Go -Go -bl -bl -bl -bl -bl -ph -ph -il -mZ -ZS -ZS -bE -bE -jp -cm -Xz -Xz -Xz -Xz -Xz -CG -vZ -vZ -TJ -Xz -Ft -Xz -eU -eU -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -eU -Xz -Xz -Xz -cm -cm -Xz -Xz -Xz -Xz -Gd -Gd -Gd -Gd -Gd -Gd -Xz -Ua -uI -TJ -Ft -Gd -xS -"} -(34,1,1) = {" -ST -BV -Fe -Fe -Fe -Fe -BV -BV -RS -RS -Ui -RS -Fe -Fe -lu -Fe -Fe -Fe -MH -MH -MH -MH -Fe -Fe -Fe -dQ -qg -Ik -Ik -ve -ve -ve -ve -YS -YS -YS -YS -YS -YS -YS -ve -ve -ve -ve -ve -ve -ve -ve -AN -KY -mD -eL -UJ -hI -kH -pq -YM -Po -Po -Po -Yd -ij -qI -Po -gL -gv -Po -fy -fy -sc -Yb -et -wO -oM -CO -dn -UJ -UJ -AN -AN -bl -bl -bl -bl -bl -bl -Go -Go -Go -Go -Go -bl -bl -bl -bl -ph -ph -Fd -ZS -ZS -ZS -bE -bE -Xz -Xz -Xz -Xz -Xz -Xz -CG -vZ -QL -Dp -fa -CV -Xz -eU -vZ -vZ -sN -vZ -vZ -vZ -vZ -eU -eU -eU -eU -Xz -Xz -cm -cm -cm -cm -Xz -Xz -Xz -Xz -Xz -Ft -Gd -Gd -Gd -Gd -Gd -Yn -TJ -Xz -Gd -xS -"} -(35,1,1) = {" -ST -BV -Fe -bp -Fe -Fe -BV -BV -RS -Ui -Xc -RS -Fe -Fe -Fe -MS -Fe -Fe -BV -BV -MH -MH -iY -Fe -dQ -qg -Ik -Ik -ve -ve -ve -ve -YS -YS -YS -YS -ve -ve -ve -ve -ve -ve -ve -ve -ve -AN -AN -AN -pA -mD -mD -UJ -UJ -ze -kH -pq -Dc -FO -Po -Po -JQ -Oz -wu -Po -Po -Po -Po -Po -Po -Po -Po -St -Hy -xw -kH -dn -dn -UJ -UJ -AN -AN -AN -bl -bl -bl -bl -bl -Go -Go -Go -Go -Go -bl -bl -bl -bl -ph -bE -Sa -ZS -ZS -bE -bE -Xz -Xz -Xz -Gd -Gd -Xz -CG -vZ -TJ -Xz -Xz -Xz -Xz -eU -vZ -vZ -vZ -vZ -eU -eU -eU -eU -Xz -Xz -Xz -Xz -Xz -cm -Gd -Gd -Gd -fa -Ft -Xz -Ft -fa -Xz -Gd -Gd -Xz -Gd -Gd -CG -aN -cm -Gd -xS -"} -(36,1,1) = {" -ST -BV -Lt -Fe -ka -Fe -Lt -Fe -RS -Ui -RS -Fe -Fe -Fe -Fe -Fe -Fe -BV -BV -BV -MH -Fe -Fe -dQ -dQ -ve -ve -ve -ve -ve -YS -YS -YS -YS -ve -ve -ve -ve -ve -ve -ve -ve -AN -AN -AN -vH -Qc -mD -mD -mD -UJ -UJ -UJ -lA -kH -pq -VW -FO -Po -Po -Po -St -Po -ot -ot -ot -ot -ot -ot -ot -ot -ot -hn -xw -ld -oM -CO -UJ -UJ -UJ -UJ -AN -AN -AN -bl -bl -bl -bl -Go -Go -Go -Go -Go -bl -bl -bl -ph -ph -bE -ZS -ZS -ZS -bE -Xz -Xz -Xz -Gd -Gd -Gd -CG -QL -Dp -Xz -Xz -Xz -Xz -eU -vZ -vZ -vZ -eU -eU -Xz -Gd -Gd -Gd -Xz -Xz -Xz -Xz -cm -Gd -Gd -Gd -Gd -Gd -Xz -Xz -Uj -Gd -Gd -Xz -Xz -Wx -GI -JL -aN -Gd -Gd -xS -"} -(37,1,1) = {" -ST -BV -Fe -Fe -Fe -Fe -Fe -Fe -RS -Ui -OP -Fe -ka -Fe -BV -BV -BV -BV -BV -Lt -Fe -ka -dQ -dQ -ve -ve -ve -ve -ve -YS -YS -YS -YS -ve -ve -ve -ve -ve -ve -ve -AN -AN -Vk -sy -mD -mD -mD -mD -mD -UJ -UJ -UJ -dV -NK -kH -pq -kv -Po -Po -Po -Po -Po -Po -ot -Po -Po -Po -Po -Po -Po -mS -et -XC -cX -cX -fQ -kH -eL -UJ -UJ -UJ -UJ -UJ -AN -bl -bl -bl -bl -bl -Go -Go -Go -Go -bl -bl -bl -bl -ph -il -ZS -ZS -bE -bE -Xz -Xz -Gd -Gd -Gd -Gd -CG -TJ -Xz -Ft -Uj -Ft -Xz -eU -eU -eU -eU -eU -Xz -Xz -Gd -Gd -Gd -Gd -cm -Xz -Xz -Ft -Gd -Gd -Gd -Gd -Gd -Ft -Xz -Ft -Xz -Ft -Xz -Xz -Xz -CG -QL -OB -Gd -Gd -xS -"} -(38,1,1) = {" -ST -BV -Fe -Fe -MH -MH -MH -Fe -RS -Ui -RS -Lt -Fe -Fe -BV -BV -BV -Fe -Fe -Fe -dQ -dQ -dQ -ve -ve -ve -ve -YS -YS -YS -YS -ve -ve -ve -ve -ve -ve -ve -OY -OY -AN -mD -mD -mD -mD -mD -mD -mD -KY -mD -mD -UJ -KY -NK -kH -rr -Oz -fy -fy -fy -Po -Oz -Ib -ot -fy -fy -Po -fy -fy -Jp -ij -Qs -mD -mD -KY -NK -xU -UJ -UJ -UJ -UJ -UJ -dn -AN -AN -AN -bl -bl -bl -Go -Go -Go -Go -Go -bl -bl -bl -vc -cy -jp -ZS -jp -bE -Xz -Gd -Gd -Gd -Gd -Ft -CG -TJ -Xz -Ft -Xz -Xz -Xz -Xz -Uj -Gd -Gd -Gd -Xz -Xz -Gd -Gd -Gd -Gd -cm -cm -cm -Xz -Xz -Ft -Gd -Gd -Gd -Gd -cm -cm -cm -Xz -Xz -Xz -Xz -CG -TJ -Gd -Gd -Gd -xS -"} -(39,1,1) = {" -ST -BV -Fe -mc -MH -MH -MH -MH -ye -Ui -RS -Fe -BV -BV -BV -BV -BV -Fe -dQ -dQ -ji -ve -ve -ve -ve -ve -YS -YS -YS -ve -VV -VV -VV -VV -ve -lw -AN -OY -OY -dn -dn -mD -eL -Qc -mD -mD -KY -sy -Qc -KY -mD -mD -mD -NK -kH -sy -pq -fy -fy -fy -Po -ij -wu -ot -fy -fy -Po -fy -fy -fy -EG -mD -mD -mD -Sk -Sc -kH -eL -UJ -UJ -KY -dn -dn -dn -dn -AN -AN -bl -bl -bl -Go -Go -Go -Go -Go -bl -bl -bl -ph -Tb -jp -jp -bE -CV -Gd -Gd -Gd -lp -Xz -CG -TJ -Xz -Xz -Xz -Xz -Ft -Xz -Gd -Gd -Gd -Gd -Uj -Xz -Gd -Gd -Gd -Gd -Gd -Gd -cm -Xz -Xz -Xz -Gd -Gd -Gd -Gd -Gd -Gd -cm -Xz -Xz -Xz -Ft -CG -TJ -Gd -Gd -Gd -xS -"} -(40,1,1) = {" -ST -BV -Fe -Fe -MH -MH -MH -ye -ye -ga -RS -Fe -BV -BV -BV -Fe -ka -Fe -dQ -ve -ve -ve -ve -ve -ve -YS -YS -YS -ve -ve -eq -Dw -Dw -JS -JS -rN -JS -JS -JS -JS -JS -JS -JS -Dw -Dw -JS -JS -JS -JS -JS -JS -zs -mD -NK -kH -KY -vL -Oz -Po -Po -zg -ij -fN -ot -Po -Po -Po -Po -Po -Oz -Qs -mD -mD -mD -mD -NK -ld -oM -oM -CO -KY -Qc -dn -dn -UJ -mD -AN -bl -bl -bl -bl -Go -Go -Go -Go -Go -bl -bl -bl -Tb -jp -bE -bE -Xz -Gd -Gd -cm -Xz -Xz -CG -TJ -Xz -Xz -Ft -Xz -Ft -Gd -Gd -Gd -Gd -Uj -Xz -Xz -Gd -Gd -Uj -Ft -Xz -Gd -Xz -Xz -Uj -Ft -Xz -Xz -Gd -Gd -Gd -Gd -Uj -Ft -Xz -Xz -Xz -CG -TJ -Ft -Gd -Gd -xS -"} -(41,1,1) = {" -ST -BV -BV -Fe -Fe -MH -MH -ye -ga -ye -RS -Fe -Fe -Fe -Fe -Lt -dQ -LU -dQ -ve -ve -ve -YS -YS -YS -YS -YS -ve -ve -VV -mn -oe -oe -uN -vb -wa -Hs -dj -dj -dj -vb -xB -Ob -GA -Qv -og -qK -vb -Tw -Bm -hp -tu -hN -NK -ld -CO -dn -pq -fy -fy -Po -ij -qn -ot -Po -Po -Po -fy -fy -EG -mD -mD -mD -mD -mD -sV -cX -cX -fQ -ld -CO -dV -DH -dn -UJ -UJ -UJ -AN -bl -bl -bl -bl -Go -Go -Go -Go -bl -bl -bl -Tb -jp -Fd -bE -Xz -Gd -Gd -cm -cm -GI -JL -gW -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Xz -Xz -Xz -Xz -Wx -Ft -Xz -Xz -Xz -Xz -CV -fa -wJ -Xz -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Xz -Xz -CG -LE -Qo -Gd -Gd -xS -"} -(42,1,1) = {" -ST -BV -BV -BV -Fe -Fe -MH -ye -Ui -RS -Fe -Fe -Fe -Fe -Fe -ji -dQ -ve -ve -ve -ve -YS -YS -YS -YS -YS -ve -ve -ve -ve -mn -oe -os -FK -vb -um -Hs -Hs -Hs -Hs -vb -zB -oe -oe -oe -oe -Zl -vb -NR -oe -UG -de -Nx -NK -xw -kH -dn -rr -io -Oz -in -ij -Le -ot -Po -zC -re -Oz -io -gF -mD -mD -Qc -UJ -UJ -Fv -KY -mD -gh -fQ -kH -cj -KY -mD -KY -UJ -UJ -UJ -bl -bl -bl -bl -bl -Go -Go -Go -Go -bl -bl -ph -ph -il -bE -Xz -cm -cm -cm -xH -JL -QL -lD -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Xz -Xz -Xz -eU -eU -eU -eU -Xz -Xz -Ft -Xz -Xz -Xz -Xz -Xz -Ft -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Xz -Xz -GE -Cu -TJ -Gd -Gd -xS -"} -(43,1,1) = {" -ST -BV -BV -BV -BV -Fe -Fe -RS -Ui -OP -Fe -Fe -Fe -Fe -dQ -dQ -ve -ve -ve -ve -ve -YS -YS -YS -ve -ve -ve -ve -ve -AN -mn -oe -ZJ -AQ -vb -ab -dj -dj -dj -Hs -vb -Fh -oe -oe -oe -oe -UG -vb -QK -oe -UG -de -Nw -Hy -xw -kH -dn -dn -dn -vL -io -ij -VN -ot -Po -ij -io -Qs -KX -XE -ZH -MA -UJ -UJ -UJ -UJ -UJ -UJ -UJ -hI -kH -mD -mD -mD -mD -mD -UJ -UJ -UJ -bl -bl -bl -bl -bl -Go -Go -Go -bl -bl -bl -ph -ph -bE -Xz -Xz -cm -cm -vs -QL -Kn -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -xD -Uj -eU -vZ -vZ -eU -eU -Gd -Gd -Xz -Xz -NY -Xz -Xz -Xz -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -fa -Ft -CV -CG -TJ -Ft -Gl -xS -"} -(44,1,1) = {" -ST -BV -BV -BV -BV -BV -Fe -RS -Ui -RS -Fe -CM -Lt -LU -dQ -ve -ve -ve -ve -YS -YS -YS -YS -ve -ve -ve -ve -ve -AN -AN -mn -oe -oe -cz -vb -vb -vb -vb -vb -fc -vb -Rs -Qi -Bu -vq -bJ -UG -vb -Vh -oe -yz -WS -Nw -iO -xw -ld -oM -if -jS -oM -oM -vL -WI -ij -VO -Qs -KX -KX -KX -KX -KX -WP -UJ -UJ -UJ -UJ -UJ -UJ -DH -NK -kH -mD -mD -mD -mD -mD -KY -UJ -UJ -UJ -bl -bl -bl -bl -Go -Go -Go -Go -bl -bl -bl -ph -ph -Xz -Xz -cm -cm -CG -TJ -Gd -Gd -Gd -Gd -Gd -Gd -Xz -Xz -Gd -Gd -fa -Xz -eU -vZ -vZ -vZ -eU -Xz -Gd -Gd -lp -Gl -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Xz -Xz -Ua -lD -ag -tK -xS -"} -(45,1,1) = {" -ST -BV -BV -BV -BV -BV -RS -RS -Ui -RS -Fe -ka -dQ -dQ -ve -ve -ve -ve -YS -YS -YS -YS -ve -ve -ve -ve -ve -AN -AN -mD -mn -qA -oe -oe -oe -oe -zt -yz -bD -oe -vb -vb -de -vb -de -dX -ln -vb -KC -oe -tD -dK -Nw -iO -xw -Jo -cX -cX -cX -cX -fQ -Qf -XB -ax -ax -BG -im -DN -DN -Fi -KX -XE -MA -UJ -UJ -dV -dy -uK -oM -MD -kH -mD -KY -UJ -eL -mD -mD -mD -mD -UJ -UJ -OY -bl -bl -bl -Go -Go -Go -bl -bl -bl -bl -ph -Xz -Xz -cm -cm -CG -TJ -Gd -Gd -Gd -Gl -Ft -Xz -Xz -Xz -Xz -Xz -Xz -Xz -eU -eU -eU -eU -eU -Xz -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Xz -Ft -wJ -tK -ag -BZ -xS -"} -(46,1,1) = {" -ST -BV -BV -BV -BV -Fe -RS -Ui -Ui -RS -Fe -dQ -dQ -ve -ve -ve -ve -YS -YS -YS -ve -ve -ve -ve -ve -AN -AN -AN -mD -mD -xr -Wl -Vm -xX -ho -US -de -dX -oe -oe -bD -Ti -cK -Ti -Bh -bW -yz -bD -TE -oe -UG -de -Nw -hn -xw -kH -mD -dV -eL -mD -NK -kH -Qj -WD -aQ -im -jV -mD -dV -HF -Fi -im -jV -mD -mD -KY -NK -Jo -Qn -Qn -Ur -mD -mD -UJ -UJ -UJ -Qc -mD -mD -rH -dn -OY -bl -bl -bl -bl -Go -Go -Go -bl -bl -bl -vc -ag -Xz -Xz -cm -CG -TJ -Gd -Gd -Gd -Ft -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Ft -Xz -Xz -cm -cm -Uj -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -cm -Gd -Gd -Gd -Gl -Xz -ag -ag -BZ -BZ -xS -"} -(47,1,1) = {" -ST -BV -BV -MS -Fe -RS -RS -Ui -RS -RS -Fe -dQ -ve -ve -ve -ve -YS -YS -YS -ve -ve -ve -ve -AN -AN -AN -Sk -dn -mD -mD -xr -vb -vb -vb -vb -vb -vb -dX -oe -oe -oe -oe -oe -oe -oe -oe -JP -JP -JP -oe -UG -de -Yg -NK -Jo -tf -DH -cj -Qc -qL -MD -kH -Qj -am -td -jV -mD -mD -mD -mD -HF -jT -mD -DH -wO -oM -MD -kH -dn -UJ -sy -mD -mD -mD -UJ -UJ -UJ -sy -mD -mD -mD -OY -Vk -bl -bl -bl -Go -Go -Go -Go -bl -bl -bl -ag -Xz -Xz -Xz -CG -TJ -fa -Xz -Ft -Xz -Ft -fa -Gd -Gd -Gd -Ft -Xz -CV -Ft -Xz -Xz -cm -cm -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -cm -cm -cm -Xz -fa -ag -ag -BZ -BZ -BZ -xS -"} -(48,1,1) = {" -ST -BV -BV -Fe -RS -RS -Ui -RS -RS -Fe -Fe -ji -ve -ve -ve -YS -YS -YS -ve -ve -ve -ve -AN -AN -mD -mD -dn -dn -dn -mD -xr -vv -sR -vx -de -kf -Bh -bW -oe -oe -oe -oe -oe -oe -oe -oe -JP -oe -VS -oe -Xr -tu -FD -NK -kH -mD -mD -mD -KY -NK -Jo -tf -Qj -am -MZ -DH -mD -KY -mD -mD -mD -mD -KY -wO -MD -Bq -cX -tf -dn -UJ -UJ -Qc -mD -mD -mD -UJ -KY -mD -mD -mD -mD -KY -pA -AN -bl -bl -bl -Go -Go -Go -bl -bl -bl -ag -Ft -Xz -Xz -CG -gW -Ft -Xz -Xz -Xz -Xz -Gd -Gd -Gd -Gd -Xz -Xz -Uj -CV -Xz -cm -cm -cm -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -wJ -Xz -Gd -Gd -Gl -Ft -Ft -Xz -Ft -ag -ag -BZ -BZ -BZ -BZ -xS -"} -(49,1,1) = {" -ST -BV -BV -Fe -RS -Ui -RS -RS -Fe -Fe -Fe -LU -ve -ve -ve -YS -YS -YS -YS -ve -ve -ve -AN -mD -mD -UJ -UJ -dn -dn -mD -xr -wG -wG -wG -Gx -oe -oe -oe -oe -oe -oe -oe -oe -oe -oe -oe -JP -oe -qV -oe -NM -tu -mD -NK -sE -mD -mD -mD -mD -NK -kH -KY -Qj -am -MZ -KY -mD -eL -mD -dn -dn -mD -mD -NK -Jo -tf -KY -eL -UJ -UJ -UJ -UJ -UJ -eL -mD -KY -mD -mD -mD -KY -mD -mD -mD -AN -bl -bl -bl -bl -Go -Go -Go -bl -bl -ag -ag -Xz -Xz -CG -TJ -Xz -Xz -Xz -Xz -Xz -Gd -Gd -Xz -Xz -Xz -Xz -Ft -Xz -Xz -cm -cm -cm -Gd -Gd -Gd -Gd -Gd -Gd -Gd -lp -Xz -Xz -Gd -Gd -Gd -Wx -Uj -ag -ag -ag -BZ -BZ -BZ -BZ -BZ -xS -"} -(50,1,1) = {" -ST -BV -Fe -ka -RS -Ui -RS -Fe -BV -Fe -Fe -dQ -dQ -ve -ve -ve -YS -YS -YS -YS -ve -ve -AN -AN -mD -UJ -UJ -UJ -dn -mD -xr -Cg -xA -Ez -de -yu -Em -Io -nq -Io -YQ -aj -lT -BR -oe -dK -ef -oe -tD -dK -nJ -tu -Aa -NK -kH -mD -mD -sy -mD -NK -ld -Kh -Qj -am -MZ -mD -mD -mD -dn -dn -dn -mD -mD -NK -gK -mD -DH -OI -ql -ql -ql -ql -ql -ql -ql -Ni -VD -VD -VD -Ni -kC -mD -mD -Vk -AN -bl -bl -bl -Go -Go -Go -bl -bl -bl -ag -lp -Xz -CG -TJ -Ft -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Ft -Xz -Xz -Xz -Xz -Xz -cm -Gd -Gd -Gd -Gd -Gd -Gd -Wx -Xz -Xz -Ft -Xz -Xz -Gd -Gd -ag -ag -ag -BZ -BZ -BZ -BZ -BZ -BZ -OL -wI -"} -(51,1,1) = {" -ST -BV -Fe -Fe -RS -Ui -RS -Fe -BV -BV -Lt -Lt -dQ -dQ -ve -ve -ve -YS -YS -YS -ve -ve -ve -AN -KY -mD -UJ -UJ -cj -mD -Qz -gT -gT -gT -gT -gT -gT -gT -gT -gT -HZ -EF -EF -EF -bY -HZ -dD -oe -du -vb -gT -pD -KY -NK -kH -mD -UJ -UJ -Sk -XC -fQ -kH -Qj -am -MZ -mD -mD -mD -dn -dn -mD -mD -mD -NK -kH -mD -mD -Jl -cN -dt -dt -GL -Au -aX -QT -ew -JB -eH -ER -oT -DR -mD -mD -mD -Vk -AN -bl -bl -bl -Go -Go -bl -bl -bl -ag -ag -Xz -CG -gW -Xz -Xz -cm -cm -Ft -Xz -Xz -Xz -Gd -Xz -Xz -Xz -Xz -Xz -Xz -Xz -Gd -Gd -Gd -Uj -cm -cm -cm -cm -fa -ag -pJ -ag -ag -ag -ag -BZ -BZ -BZ -BZ -BZ -BZ -BZ -OL -OL -wI -"} -(52,1,1) = {" -ST -BV -Fe -Fe -RS -Ui -Cv -Fe -BV -BV -BV -Fe -Fe -dQ -ve -ve -ve -ve -YS -YS -YS -ve -ve -AN -AN -mD -mD -KY -mD -mD -mD -mD -dn -dn -dn -dn -mD -mD -mD -VP -Ps -Fj -Dj -ut -ya -EF -dD -oe -Iy -tu -OW -KY -mD -NK -xU -UJ -UJ -UJ -UJ -mD -NK -Qf -IA -yp -yp -xh -mD -mD -mD -mD -mD -DH -mD -NK -ld -oM -CO -WM -NE -EQ -EQ -EQ -EQ -Wz -Wz -uP -hw -el -el -tL -ou -KY -mD -mD -sy -AN -bl -bl -bl -Go -Go -Go -bl -bl -bl -ag -Xz -CG -TJ -Xz -cm -cm -Gd -Gd -Xz -Xz -Ft -Gd -Gd -Xz -Xz -Xz -Ft -Xz -Xz -Xz -Ft -Xz -Xz -cm -cm -ag -ag -ag -ag -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -OL -OL -OL -nI -wI -"} -(53,1,1) = {" -ST -BV -Fe -mc -RS -Ui -RS -Fe -Fe -BV -BV -BV -Fe -dQ -ji -ve -ve -ve -ve -YS -YS -ve -ve -ve -AN -AN -AN -mD -mD -mD -mD -mD -dV -dn -dn -KY -mD -mD -mD -qd -Ps -Uq -ya -nM -fJ -EF -dD -tD -iU -tu -zc -mD -mD -NK -kH -UJ -Sr -my -my -my -my -my -gq -QR -rP -my -my -my -Tf -Tf -my -TM -dV -jH -fQ -xw -nr -MX -EQ -EQ -EQ -EQ -EQ -Wz -eX -ew -kx -el -ly -tL -ou -mD -KY -mD -mD -AN -AN -bl -bl -Go -Go -Go -bl -bl -bl -ag -Xz -CG -TJ -cm -cm -cm -Gd -Gd -Gd -Gd -fa -Gd -Gd -Wx -Gd -Gd -xD -Ft -Xz -Xz -Xz -Gl -Uj -tK -ag -ag -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -OL -OL -Cw -RN -RN -nI -wI -"} -(54,1,1) = {" -ST -BV -Lt -Fe -RS -Ui -RS -RS -Fe -Fe -BV -BV -Fe -Fe -dQ -dQ -ve -ve -ve -YS -YS -YS -ve -ve -ve -ve -pA -AN -mD -KY -mD -mD -mD -mD -mD -mD -KY -qd -Lz -cs -HZ -lb -un -Ph -Hg -HZ -tA -RO -EF -HZ -ic -Db -mD -NK -ld -vJ -tp -tg -AS -mv -AB -QR -IA -or -yp -xT -QR -Xl -QY -or -IQ -gf -DH -wO -MD -xw -qM -EQ -EQ -EQ -EQ -EQ -EQ -Wz -BP -iF -Ju -Jx -pl -Ug -ou -mD -Aa -mD -mD -mD -AN -AN -bl -bl -Go -Go -Go -bl -bl -ag -fa -CG -TJ -cm -cm -cm -cm -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Gd -Uj -Xz -Xz -Xz -fa -ag -ag -ag -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -OL -OL -OL -RN -RN -RN -nI -nI -wI -"} -(55,1,1) = {" -ST -BV -Fe -Fe -RS -RS -Ui -RS -lJ -Fe -Fe -mc -Fe -Lt -Fe -dQ -dQ -ve -ve -ve -YS -YS -YS -ve -ve -ve -ve -AN -mD -mD -mD -mD -mD -mD -wO -oM -CO -MV -HZ -aD -oQ -nf -ya -ya -ya -Nf -nf -ya -ya -aS -EZ -Rk -eL -NK -xw -xU -tp -tg -AS -AS -AS -dB -IA -yp -yp -SL -QR -Ga -YR -yp -oS -DK -KY -NK -Jo -cX -Pb -WM -Ad -EQ -EQ -EQ -EQ -Wz -Uy -ew -ew -iF -iF -ew -DR -mD -KY -eL -mD -mD -dV -AN -bl -bl -Go -Go -Go -bl -bl -ag -CV -CG -TJ -Xz -Xz -cm -cm -cm -Uj -Xz -Xz -Gd -Gd -Gd -Xz -Gd -Gd -Gd -Ft -ag -ag -tK -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -OL -OL -OL -OL -sk -EX -RN -RN -RN -nI -nI -wI -"} -(56,1,1) = {" -ST -BV -lu -MS -Fe -RS -RS -Ui -RS -RS -RS -Fe -Fe -Fe -fk -xz -dQ -dQ -ve -ve -ve -YS -YS -ve -ve -ve -ve -On -oM -CO -ex -oM -oM -oM -PC -xw -nr -Fk -xc -ya -ya -nf -ya -ya -ya -ya -nf -ya -ya -ya -EZ -Rk -zc -gh -al -zV -tp -tg -AS -Nr -AB -QR -Kr -yp -yp -yp -tW -yp -yp -yp -gy -DK -mD -NK -kH -mD -mD -Jl -Ad -EQ -oX -oX -EQ -Wz -Rd -ro -AF -aX -aX -yy -yc -cS -AN -mD -mD -mD -mD -BW -bl -AY -Go -Go -Go -AY -bl -Uw -Ft -Ua -AV -Xz -Xz -Ft -Xz -Xz -Xz -Ft -Xz -Xz -Wx -Ft -Xz -Xz -Gd -Xz -ag -tK -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -OL -OL -OL -OL -EX -EX -EX -EX -jP -EX -EX -RN -nI -nI -wI -"} -(57,1,1) = {" -ST -BV -Fe -Fe -Fe -Fe -OP -RS -Ui -Ui -RS -OP -RS -RS -lW -Zk -fj -GR -GR -GR -GR -XY -XY -GR -GR -GR -GR -AU -xw -ld -KT -xw -Vg -xw -xw -xw -bZ -Fk -yK -ya -ya -nf -ya -ya -ya -ya -nf -ya -ya -ya -EZ -HZ -ZD -ZD -cW -ZD -QR -QR -QR -QR -QR -QR -Kr -yp -yp -yp -yp -yp -yp -yp -gy -DK -mD -NK -kH -mD -Qc -Jl -Ad -EQ -oX -oX -EQ -Wz -mh -tF -tF -EQ -EQ -rj -Ne -GK -Vk -AN -AN -Vk -AN -AU -We -tc -ov -ov -ov -tc -We -KS -ag -ag -ag -tK -pJ -ag -ag -ag -tK -ag -ag -ag -ag -ag -pJ -ag -tK -ag -ag -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -OL -OL -OL -EX -sk -EX -nI -nI -nI -EX -EX -EX -EX -WV -nI -nI -wI -"} -(58,1,1) = {" -ST -BV -Fe -BV -Fe -BV -Fe -RS -RS -Ui -Ui -Ui -Ui -Ui -Ui -Be -Be -lw -lw -lw -lw -rh -rh -lw -lw -lw -AU -AU -xw -xw -xw -xw -xw -xw -xw -xw -bZ -Fk -Fk -ya -ya -nf -nf -nf -nf -nf -nf -nf -nf -nf -nf -Me -tw -tw -uO -tw -bR -yM -IU -IU -IU -IU -YA -IA -IA -uR -QR -QJ -jM -gt -zf -DK -wO -MD -kH -mD -UJ -WM -NE -EQ -EQ -EQ -EQ -Wz -EQ -EQ -EQ -EQ -EQ -EQ -Rr -GK -GK -GK -GK -GK -GK -op -Xx -iP -iP -hS -iP -iP -iP -sb -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -OL -OL -OL -EX -EX -RL -EX -EX -nI -nI -nI -EX -EX -EX -EX -EX -nI -nI -wI -"} -(59,1,1) = {" -Zy -MG -MG -MG -MG -MG -bA -bA -Qe -kU -Qe -Qe -Qe -Qe -sW -RK -WG -Ro -Ro -Ro -ch -ch -ch -Ro -Ro -Ro -qm -pV -OG -xw -xw -ML -cX -fQ -xw -xw -qM -Fk -xc -ya -ya -ya -ya -ya -ya -nf -ya -ya -ya -ya -jn -HZ -Zx -Cb -Cb -Dk -QR -bH -yp -yp -yp -yp -yp -yp -yp -DC -QR -QR -QR -QR -QR -gf -NK -Jo -rk -KY -UJ -WM -ny -iD -TV -EQ -EQ -Wz -EQ -EQ -EQ -EQ -EQ -EQ -Rr -GK -GK -GK -GK -GK -GK -op -iP -iP -iP -iP -iP -iP -iP -sb -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -OL -OL -OL -to -EX -WV -EX -EX -EX -EX -nI -nI -nI -EX -EX -EX -ea -EX -EX -nI -nI -wI -"} -(60,1,1) = {" -Zy -MG -MG -MG -MG -MG -Ov -nO -bA -bA -PG -bA -bA -YK -Xj -Im -Ik -ve -ve -ve -YS -YS -YS -ve -ve -ve -ib -KP -yS -xw -xw -kH -KY -NK -xw -se -tf -WF -xc -lk -TW -lk -lk -lk -CZ -nf -ya -ya -ya -ya -ya -kV -EJ -EJ -Cb -EJ -ao -yp -yp -yp -yp -yp -yp -yp -yp -yM -or -or -or -GB -Bc -gf -NK -ld -CO -UJ -UJ -Wk -LB -ol -Zm -Wz -Wz -Wz -sp -sp -EQ -EQ -EQ -EQ -Rr -GK -GK -GK -GK -GK -GK -op -iP -iP -iP -iP -iP -iP -iP -sb -Vj -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -OL -ea -EX -EX -EX -EX -EX -EX -EX -nI -nI -nI -nI -EX -Ou -EX -EX -EX -nI -nI -nI -wI -"} -(61,1,1) = {" -Zy -MG -MG -MG -MG -bA -bA -bA -kG -bA -bA -bA -YK -YK -cG -cG -Ik -ve -ve -YS -YS -YS -ve -ve -ve -ib -sO -bA -pH -xw -xw -kH -mD -XC -fQ -kH -mD -VP -ux -ms -ms -ms -ms -ms -HZ -aL -ya -Sy -ya -ya -ya -HZ -VZ -VZ -cW -VZ -QR -QJ -SO -vj -ZW -gt -SO -SO -vi -IA -yp -yp -yp -yp -yp -tW -Hy -xw -bS -UJ -UJ -UJ -UJ -WM -Ev -EQ -EQ -Wz -Lk -xb -EQ -EQ -EQ -EQ -Rr -GK -AN -AN -AN -Vk -AN -AU -hr -lN -AD -AD -AD -lN -AD -sq -OL -OL -OL -OL -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -BZ -OL -EX -EX -EX -EX -ea -EX -ea -nI -nI -nI -EX -EX -EX -EX -EX -EX -EX -nI -nI -nI -wI -"} -(62,1,1) = {" -Zy -MG -MG -nO -bA -bA -bA -bA -bA -bt -bA -nO -YK -cG -cG -Ik -ve -ve -ve -YS -YS -YS -ve -ve -ve -ib -bA -bA -kE -xw -xw -kH -mD -mD -NK -kH -mD -mD -mD -mD -mD -dn -dn -cY -LD -IG -YC -YC -xM -WN -JE -mL -wr -wO -TY -lE -tp -QR -QR -QR -QR -QR -QR -QR -Ga -IA -yp -zD -SO -SO -vi -yp -hn -xw -kH -UJ -UJ -UJ -UJ -WM -Ad -EQ -EQ -Wz -EQ -EQ -EQ -EQ -EQ -ID -KZ -Vk -AN -qL -CO -mD -eL -kP -OE -NG -Aj -Aj -Aj -NG -OE -TT -EX -ea -jP -OL -WA -pr -kb -kb -kb -kb -kb -kb -kb -kb -kb -kb -kb -kb -kb -kb -kb -kb -pr -EX -EX -sk -EX -EX -nI -nI -nI -nI -EX -EX -EX -EX -EX -EX -EX -EX -nI -nI -nI -wI -"} -(63,1,1) = {" -Zy -MG -MG -bA -bA -yF -bA -bA -jm -yF -bA -bA -bA -cG -Ik -ve -ve -ve -ve -YS -YS -YS -ve -ve -ve -Rn -bA -bA -AP -HR -pG -tf -mD -mD -NK -DD -oM -oM -oM -jF -uK -oM -Rj -dn -LD -Eo -ca -gb -cp -tk -zh -mL -mD -XC -fQ -xU -tp -eg -or -QY -GB -QY -Bc -QR -bH -IA -yp -gy -QR -hx -hx -rB -NK -yA -tf -UJ -UJ -oL -dn -WM -gR -iD -iD -Wz -EQ -iD -iD -GV -st -FS -uH -mD -mD -NK -kH -mD -Aa -UJ -OE -OE -Aj -Aj -Aj -OE -OL -Jq -ea -OD -xu -xu -BK -pr -wm -WW -yV -zi -zi -zi -zi -zi -Sd -zi -zi -zi -zi -zi -zi -UI -pr -WV -EX -EX -EX -EX -nI -nI -nI -LG -EX -jP -EX -EX -EX -sk -EX -EX -nI -nI -nI -wI -"} -(64,1,1) = {" -Zy -MG -bA -nO -bA -bA -kG -bA -bA -bA -bA -bA -bA -sO -ve -ve -ve -ve -YS -YS -YS -ve -ve -ve -ve -ib -te -gc -OU -Hb -Hb -OU -aC -NJ -XC -cX -cX -cX -cX -cX -cX -fQ -kH -dn -LD -fL -yf -gE -MC -MC -tU -mL -Qc -mD -NK -bS -DE -Oa -yp -YR -yp -YR -gy -QR -Ga -IA -yp -gy -gf -WK -dn -dn -NK -ld -oM -AG -UJ -dV -dn -WM -ol -QX -QX -Wz -fI -QX -QX -ol -ol -LB -yc -sy -wO -MD -kH -mD -UJ -UJ -OE -OE -OE -Aj -Aj -OE -OL -OL -sk -Oc -LR -rA -ZL -rV -zi -zi -gd -zi -zi -zi -zi -zi -gd -zi -zi -zi -zi -gd -zi -zi -pr -sk -EX -EX -EX -EX -nI -nI -nI -nI -EX -ea -EX -EX -up -EX -EX -EX -EX -nI -nI -wI -"} -(65,1,1) = {" -Zy -MG -bA -bA -bA -nO -bA -bA -bA -bA -bA -bA -bA -ib -ib -ve -ve -ve -YS -YS -YS -ve -ve -ib -ib -ib -FI -xC -yJ -Hb -YV -xC -xC -Ec -xL -xL -xL -Ec -ow -mD -mD -NK -kH -dn -LD -Ru -dp -Mj -gI -kn -lg -mL -Sk -KY -NK -aE -DE -Ga -yp -yp -yp -yp -yp -tW -yp -IA -yp -gy -DK -dn -dn -mD -XC -cX -fQ -ld -CO -eL -dn -wx -oD -Xb -Xb -EW -Xb -Xb -Xb -Qy -LM -wr -mD -dV -NK -Jo -tf -sy -UJ -UJ -OE -OE -OE -Aj -Aj -OE -OE -OL -OL -Oc -mU -HC -kB -pr -pr -pr -pr -dC -zi -zi -zi -pr -pr -zi -zi -zi -zi -pr -pr -pr -pr -EX -EX -EX -EX -EX -EX -nI -nI -nI -EX -EX -EX -EX -EX -EX -EX -EX -EX -nI -nI -wI -"} -(66,1,1) = {" -Zy -MG -GP -bA -bA -bA -PG -bA -bA -bA -nO -bA -bA -nO -ib -ve -ve -YS -YS -YS -YS -ve -ve -ob -bA -bA -xK -zY -aZ -Hb -Hb -Xi -IV -tT -aZ -nZ -aZ -aM -ND -mD -mD -aJ -kH -mD -LD -YC -IG -YC -YC -YC -YC -mL -ZH -MA -XC -fQ -DE -Ga -yp -yp -yp -yp -yp -yp -yp -IA -yp -GH -DK -mD -mD -UJ -UJ -Sk -lA -xw -ld -CO -dn -Qq -ki -Dq -Hp -EW -Xb -ki -Dq -Hp -fr -Qc -KY -mD -NK -kH -KY -Qc -UJ -UJ -OE -OE -OE -Aj -Aj -OE -OE -OE -OL -Oc -XM -ZL -ZL -ky -Hd -zi -Op -zi -zi -zi -zi -Ia -xq -zi -zi -zi -zi -Op -zi -Gw -pr -RN -EX -EX -up -EX -EX -EX -nI -nI -nI -WV -EX -EX -EX -nI -nI -EX -EX -EX -nI -wI -"} -(67,1,1) = {" -Zy -MG -bA -bA -jm -bA -bA -MG -MG -bA -bA -bA -bA -ib -ib -ve -ve -YS -YS -YS -ve -ve -ve -ib -kG -bA -xK -TN -Hb -Hb -Hb -SP -Xv -HV -Gz -AC -Gz -rE -ND -mD -mD -NK -kH -mD -LD -ON -kX -jW -Gq -gm -Gp -mL -KX -XE -MA -NK -DE -Oa -yp -YR -yp -YR -gy -QR -Ga -IA -yp -Ha -DK -Qc -mD -UJ -UJ -UJ -XC -mm -fQ -xU -mD -Qq -ki -Dq -Hp -EW -Xb -ki -fz -Hp -fr -KY -mD -mD -NK -sE -mD -KY -UJ -UJ -UJ -OE -OE -Aj -Aj -OE -OE -OE -OL -oB -Zr -ZL -jI -TO -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -iE -pr -RN -RN -EX -EX -sk -EX -EX -EX -nI -nI -EX -EX -EX -nI -nI -nI -Ou -EX -EX -nI -wI -"} -(68,1,1) = {" -Zy -MG -bA -bA -bA -bA -MG -MG -MG -bA -yF -ib -ib -ib -ve -ve -YS -YS -YS -ve -ve -ve -ib -ib -bA -YK -xK -ZI -Hb -Hb -Hb -SP -Xv -HV -Gz -AC -Gz -SP -ND -DH -mD -hI -kH -mD -LD -PH -jy -rp -us -xx -GQ -mL -KX -KX -WP -NK -tp -ZO -SO -jM -gt -jM -eW -QR -WQ -IA -yp -Ha -DK -Sk -mD -mD -UJ -UJ -UJ -UJ -NK -kH -DH -Qq -ki -BU -Hp -EW -Xb -ki -Dq -Hp -fr -dn -dn -DH -NK -kH -mD -mD -eL -UJ -UJ -OE -OE -Aj -Aj -OE -OE -OE -OL -oB -ix -ZL -jI -TO -zi -Jz -zi -zi -zi -zi -zi -Zn -Zn -Mb -fC -zi -zi -zi -zi -zi -pr -RN -RN -EX -ea -EX -EX -up -EX -EX -EX -EX -EX -EX -nI -nI -EX -EX -EX -EX -nI -wI -"} -(69,1,1) = {" -Zy -MG -bA -bA -ZZ -bA -MG -MG -MG -bA -bA -ib -ve -ve -ve -ve -YS -YS -YS -ve -ve -ib -ib -GP -bA -YK -xK -zq -Hb -Hb -Hb -SP -Xv -HV -Gz -Zw -Gz -SP -ND -Sk -mD -NK -kH -mD -Gn -yv -yv -yv -yv -yv -yv -jo -KX -KX -WP -NK -tp -QR -QR -QR -QR -QR -QR -QR -bN -IA -yp -gy -DK -mD -mD -eL -Qc -KY -UJ -KY -NK -gK -Qc -wx -Xb -Xb -Xb -EW -Xb -Xb -Xb -Xb -LM -dn -oL -dn -NK -kH -UJ -mD -mD -dV -UJ -OE -OE -Aj -Aj -OE -OE -OE -OL -oB -pW -qP -eN -ai -zi -zi -zi -zi -UI -zi -zi -RY -EN -Ln -Ef -zi -zi -zi -zi -zi -pr -RN -RN -RN -EX -EX -EX -EX -EX -EX -EX -EX -EX -ea -EX -EX -EX -EX -jP -EX -nI -wI -"} -(70,1,1) = {" -Zy -MG -kG -bA -bA -bA -MG -MG -GP -bA -bA -ib -ve -ve -ve -YS -YS -YS -ve -ve -ve -ib -bA -nO -YK -YK -xK -KK -Hb -Hb -Hb -SP -Xv -HV -Gz -Zw -Gz -SP -ND -mD -mD -NK -kH -mD -mD -mD -KY -mD -PP -KX -KX -KX -KX -Dr -jV -NK -tp -eg -or -QY -GB -QY -Bc -QR -Hz -IA -yp -SL -gf -zc -mD -KY -mD -mD -wO -oM -MD -kH -KY -Qq -ki -Dq -Hp -EW -Xb -ki -Dq -Hp -fr -dn -dn -dn -NK -xU -UJ -mD -mD -AN -AN -OE -OE -Aj -Aj -OE -OE -OL -to -rz -bC -bC -bC -ai -zi -zi -zi -zi -zi -zi -zi -RY -yR -Ln -ad -zi -zi -zi -zi -zi -pr -RN -RN -RN -EX -EX -EX -EX -EX -EX -jP -EX -EX -EX -EX -EX -EX -EX -sk -EX -nI -wI -"} -(71,1,1) = {" -Zy -MG -bA -Ov -bA -MG -MG -bA -bA -bA -bz -ib -ve -ve -ve -YS -YS -YS -ve -ve -ve -ib -nO -bA -YK -ul -xK -wM -Na -iW -Hb -SP -Xv -HV -Gz -Zw -Gz -SP -ND -dn -cj -NK -Yv -oM -oM -oM -CO -mD -HF -Kv -KX -KX -mH -Cf -mD -NK -DE -Oa -yp -YR -yp -YR -gy -QR -Ga -IA -yp -gy -QR -my -my -TM -KY -mD -NK -Jo -cX -tf -yh -Qq -ki -fz -Hp -EW -Xb -ki -fz -Hp -fr -dn -mD -mD -NK -gK -UJ -UJ -AN -AN -OE -OE -OE -OE -Aj -OE -OE -OL -ea -sk -RN -RN -RN -pr -SW -Jb -Jb -Jb -Jb -Jb -Jb -Jb -Jb -Jb -zi -zi -zi -zi -zi -RY -pr -RN -RN -RN -EX -EX -EX -Ou -EX -EX -EX -EX -EX -EX -ea -EX -EX -RL -EX -EX -nI -wI -"} -(72,1,1) = {" -Zy -MG -bA -bA -MG -MG -MG -bA -nO -bA -ib -ve -ve -ve -YS -YS -YS -My -lt -lt -lt -lt -lt -lt -lt -Ec -xC -IV -IV -HV -Hb -SP -IV -rc -Hb -Hb -Hb -rE -ND -dn -dn -XC -cX -cX -cX -fQ -ld -oM -oM -HF -DN -DN -jV -mD -mD -NK -DE -Ga -yp -yp -yp -yp -yp -tW -yp -IA -yp -yI -or -eT -vI -DK -dV -wO -MD -kH -KY -dn -dn -Qq -ki -Dq -Hp -EW -Xb -ki -fz -Hp -fr -eL -KY -mD -NK -ld -zw -UJ -AN -OE -OE -OE -OE -OE -OE -OE -OE -OL -EX -jP -EX -RN -RN -pr -sJ -zi -zi -zi -zi -zi -zi -zi -zi -Jb -zi -zi -zi -zi -zi -DU -pr -RN -RN -EX -EX -EX -EX -EX -sk -EX -EX -EX -nI -nI -nI -EX -EX -EX -EX -EX -nI -wI -"} -(73,1,1) = {" -Zy -MG -nO -MG -MG -bA -bA -kG -ib -ib -ib -ve -ve -YS -YS -YS -ve -eZ -hj -cd -sQ -xi -Ll -oN -Uv -xY -we -yT -IV -HV -Hb -rE -IV -hQ -Hb -Na -Hb -ha -ND -Xo -dn -dn -mD -mD -mD -Wo -cX -cX -fQ -ld -oM -oM -oM -oM -oM -MD -DE -Ga -yp -yp -yp -yp -yp -yp -yp -IA -yp -yp -yp -gQ -Mv -DK -mD -NK -xw -ld -CO -dn -wb -wx -ia -EW -EW -EW -Xb -Xb -Xb -Xb -LM -Ay -Qc -KY -XC -fQ -kH -KY -AN -OE -OE -OE -OE -me -OE -OE -OE -OL -EX -EX -EX -EX -RN -pr -sJ -sJ -dR -zi -yg -IR -Oq -tv -gd -Jb -zi -zi -zi -gd -RY -DU -pr -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -nI -nI -nI -WV -EX -EX -EX -ea -LG -wI -"} -(74,1,1) = {" -Zy -MG -bA -MG -bA -bA -bA -bA -ib -ve -ve -ve -YS -YS -YS -ve -ve -eZ -cd -cd -cd -cd -cd -Wr -Uv -QM -Hb -zN -IV -HV -Hb -SP -IV -IV -zx -IV -zx -IV -xC -Ec -Ec -Ec -Ec -Ec -Ec -Ec -Ec -ow -XC -cX -cX -eD -xw -Jo -cX -cX -DE -Oa -yp -YR -yp -YR -gy -QR -Ga -IA -yp -yp -yp -yp -rs -gf -sC -Ai -SS -al -Ms -Hk -Fo -NA -hf -EW -Xb -Xb -Qy -Ji -Mw -Ji -Ji -xt -xt -bM -sy -NK -kH -cj -AN -OE -OE -OE -OE -OE -OE -OE -OE -OL -EX -EX -EX -EX -WV -pr -pr -pr -pr -pr -pr -pr -pr -pr -pr -Jb -zi -zi -zi -pr -pr -pr -pr -jP -EX -EX -EX -EX -EX -ea -EX -EX -up -EX -EX -nI -nI -nI -LG -ea -EX -EX -ea -wI -"} -(75,1,1) = {" -Zy -MG -bA -yF -bA -bA -ib -sO -ib -ve -ve -YS -YS -YS -ve -ve -ib -eZ -Bs -cd -Te -wk -cd -yO -Uv -hT -Hb -nN -IV -xl -Hb -HJ -aZ -aZ -Hb -aZ -Hb -aZ -aZ -aZ -aZ -NL -IV -lh -pS -gn -Fg -ND -mD -mD -Qc -NK -xw -kH -dV -mD -tp -ZO -SO -jM -gt -jM -eW -QR -zz -IA -tV -LA -yp -yp -gy -QR -uA -Sp -my -Sp -uA -NA -tM -wg -Xb -EW -Xb -Xb -HP -MP -jd -Lf -Ji -Kf -hD -rS -wO -MD -kH -AN -AN -OE -OE -OE -OE -OE -OE -OE -OL -OL -EX -EX -EX -EX -EX -ea -LG -pt -cJ -cJ -ry -ry -ry -ry -ry -ry -cJ -cJ -cJ -cJ -nd -ea -sk -ea -EX -EX -EX -ea -EX -EX -EX -EX -EX -sk -EX -EX -nI -nI -nI -EX -EX -EX -RN -wI -"} -(76,1,1) = {" -Zy -MG -bA -nO -ib -ib -ib -ve -ve -ve -YS -YS -YS -ve -ve -ib -ib -Bg -Uv -gN -Uv -Uv -Uv -Uv -Uv -Ey -Hb -zO -IV -HV -Hb -Hb -Hb -Hb -Hb -Hb -Hb -Hb -Hb -Hb -Hb -SP -Xv -qQ -qQ -qQ -ZK -qG -mD -DH -mD -NK -xw -kH -mD -mD -tp -QR -QR -QR -QR -QR -QR -QR -Ga -IA -dU -RC -yp -yp -yp -XU -bX -DZ -bX -DZ -bX -Sw -Xb -Xb -Xb -EW -Xb -Xb -jq -jd -jd -zp -Ji -XP -LS -Fw -wh -xw -kH -AN -OE -OE -OE -Aj -OE -OE -OE -OE -OL -EX -EX -gH -EX -EX -EX -EX -ea -Gb -Bp -cJ -qE -qD -AE -cJ -cJ -mA -cJ -cJ -cJ -cJ -nd -WV -EX -EX -EX -ea -sk -EX -EX -EX -RL -EX -EX -EX -EX -EX -nI -nI -nI -EX -EX -RN -RN -wI -"} -(77,1,1) = {" -Zy -MG -bA -dS -cG -Ik -ve -ve -ve -ve -YS -YS -ve -ve -ve -ib -bA -Bg -pb -cd -lO -Vf -ta -lO -Uv -Ci -Hb -pu -IV -HV -Hb -kK -Na -Vy -Hb -Na -Na -Na -Vy -iW -Hb -SP -Xv -dr -wo -qQ -wo -qG -mD -mD -wO -MD -xw -kH -mD -mD -tp -cV -Um -QR -cP -or -or -or -EY -IA -yp -yp -yp -yp -yp -DZ -DZ -DZ -DZ -DZ -DZ -lH -Xb -Xb -Xb -EW -Xb -Xb -Iz -jd -jd -rq -ja -XR -dc -rS -lA -xw -sE -AN -OE -OE -Aj -Aj -Aj -OE -OE -OL -OL -EX -ea -nI -nI -EX -EX -EX -EX -Gb -nK -cJ -pn -dq -wt -cJ -cJ -hF -cJ -cJ -cJ -cJ -nd -EX -EX -EX -EX -EX -EX -EX -nI -nI -nI -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -RN -RN -wI -"} -(78,1,1) = {" -Zy -MG -nO -YK -cG -Ik -ve -ve -ve -YS -YS -ve -ve -ib -oy -ib -bA -Bg -Rv -YE -lS -Fa -od -PJ -Uv -IV -PN -IV -IV -HV -Hb -rE -IV -IV -zx -IV -IV -IV -IV -HV -Hb -SP -Xv -yi -wo -qQ -ls -qG -KY -mD -NK -xw -xw -kH -mD -eL -tp -AS -fG -QR -bH -IA -IA -IA -IA -IA -IA -IA -IA -IA -yp -TX -Ig -DZ -Ig -DZ -Ig -eP -Xb -Xb -Xb -EW -EW -EW -Cz -FR -FR -FR -uu -wQ -pR -rS -NK -Jo -zv -AN -OE -OE -Aj -Aj -OE -OE -OE -OL -EX -ea -nI -nI -nI -ea -EX -EX -EX -Gb -nK -cJ -tN -dq -wt -cJ -cJ -JJ -cJ -cJ -BJ -cJ -rd -EX -ea -EX -EX -EX -EX -nI -nI -nI -nI -LG -EX -EX -EX -EX -EX -EX -EX -Ou -EX -up -nI -wI -"} -(79,1,1) = {" -Zy -MG -cG -cG -cG -ve -ve -ve -YS -YS -YS -ve -ve -ib -YK -YK -bA -Bg -nQ -hj -Vf -lS -Mu -Vf -Uv -tT -Hb -ml -aZ -rM -Hb -SP -IV -tT -Hb -aZ -WH -Uz -IV -HV -Hb -SP -Xv -Gu -Yo -qQ -cr -ND -BH -QR -vu -Vc -kR -tf -QR -nF -tp -JG -QR -QR -Ga -IA -zD -SO -SO -SO -SO -gt -SO -IA -eW -QR -fB -Sp -hx -Sp -fB -NA -Xb -Xb -Xb -EW -In -Xb -tz -nH -Kp -qF -Ji -iQ -Tl -rS -hI -kH -AN -AN -OE -OE -Aj -Aj -OE -OE -OE -OL -ea -LG -nI -nI -sk -EX -ea -jP -EX -Gb -lx -cJ -ry -dq -wt -cJ -cJ -cJ -cJ -cJ -NS -cJ -yq -EX -EX -EX -EX -EX -Ou -nI -nI -nI -EX -EX -EX -EX -er -tR -er -er -EX -EX -EX -EX -nI -wI -"} -(80,1,1) = {" -Zy -MG -cG -Ik -Ik -ve -ve -YS -YS -YS -ve -ve -ib -cG -YK -YK -bA -Bg -VE -UF -cd -YE -cd -cd -DB -Hb -Hb -Hb -Hb -Hb -Hb -SP -IV -Ed -Hb -Hb -Gz -vw -IV -HV -Hb -SP -IV -IV -Xv -cq -IV -xC -uA -QR -uA -DZ -yx -uA -QR -uA -QR -Bv -or -or -EY -IA -gy -Jw -Jw -Jw -Jw -Jw -Jw -Lg -Jw -rB -uJ -TY -uK -TY -qU -NA -NA -nY -SX -UN -NA -ev -Cm -Cm -Cm -Cm -Cm -Cm -Cm -rf -DL -kH -AN -OE -OE -OE -Aj -Aj -OE -OE -OE -OL -jP -nI -nI -nI -nI -nI -LG -nI -ea -Gb -cJ -cJ -ry -cJ -cJ -cJ -cJ -cJ -cJ -cJ -Hv -cJ -nd -EX -ea -EX -ea -ea -jP -nI -nI -EX -EX -EX -EX -ea -er -XW -XW -er -er -EX -EX -EX -nI -wI -"} -(81,1,1) = {" -Zy -cG -cG -Ik -ve -ve -YS -YS -YS -ve -ve -ve -cG -gj -YK -II -bA -Bg -Uv -Uv -Uv -TG -Uv -Uv -Uv -HV -Hb -kK -Na -Vy -Hb -ha -IV -Ht -Hb -Hb -Hb -qW -IV -HV -Hb -HJ -aZ -ml -aZ -aZ -aZ -TS -bX -XU -bX -DZ -DZ -bX -XU -bX -Ow -yp -yp -yp -yp -IA -gy -Jw -hz -hz -hz -IP -IP -IP -Kc -WK -Vu -xw -xw -xw -oM -xZ -Ud -lC -lH -kM -fw -WK -dn -ii -oM -mj -uK -oM -oM -oM -MD -kH -UJ -OE -OE -Aj -Aj -Aj -OE -OE -OL -OL -nI -nI -nI -nI -nI -nI -nI -nI -EX -Gb -cJ -cJ -ry -cJ -cJ -cJ -cJ -cJ -cJ -cJ -cJ -cJ -nd -EX -EX -ea -LG -nI -nI -nI -nI -EX -WV -EX -EX -ea -er -XW -XW -XW -jj -EX -EX -EX -nI -wI -"} -(82,1,1) = {" -Zy -cG -Ik -ve -ve -ve -YS -YS -ve -ve -ve -ib -cG -YK -YK -YK -bA -xK -tT -ml -aZ -kJ -ml -nB -IV -HV -Hb -SP -IV -IV -Bn -IV -IV -Ht -Hb -Hb -Gz -PX -IV -kY -Hb -Hb -Hb -Hb -Hb -Hb -Hb -JA -DZ -DZ -DZ -DZ -DZ -DZ -DZ -DZ -yj -yp -yp -yp -yp -IA -dd -Jw -fZ -oY -oY -IP -Jw -Jw -Kc -dn -qs -fQ -lZ -UJ -ld -CO -wx -aO -lH -NW -LM -ii -uK -MD -Jo -SS -cX -cX -cX -cX -SG -UJ -UJ -OE -OE -Aj -Aj -OE -OE -OE -OL -EX -nI -nI -EX -sk -nI -nI -LG -EX -EX -Gb -cJ -cJ -aU -BN -rR -mq -cJ -cJ -cJ -Bp -cJ -cJ -rd -EX -ea -sk -nI -nI -nI -nI -RN -RN -EX -EX -EX -EX -er -er -XW -XW -er -EX -nI -nI -nI -wI -"} -(83,1,1) = {" -YW -ve -ve -ve -ve -YS -YS -YS -ve -ve -ve -ib -bA -YK -YK -GP -bA -xK -HV -Hb -Hb -kJ -Hb -Rw -IV -HV -Hb -SP -IV -Oj -PA -NC -IV -je -Hb -Hb -Hb -QI -IV -Cc -Vy -Na -Na -iW -Hb -kJ -kJ -Wj -VI -VI -VI -VI -VI -VI -VI -VI -VI -IA -IA -IA -IA -IA -DA -Jw -lr -IP -IP -IP -oY -oY -Kc -dn -mD -NK -UJ -UJ -xw -nr -QC -lH -lH -EB -QC -Hy -xw -xw -UJ -UJ -ce -KY -mD -eL -UJ -UJ -OE -OE -OE -Aj -Aj -OE -OE -OE -OL -nI -nI -jP -EX -EX -EX -EX -EX -EX -EX -Gb -IW -cJ -ry -cJ -cJ -cJ -cJ -cJ -cJ -nK -cJ -cJ -rd -nI -nI -nI -nI -nI -sk -RN -RN -Pu -EX -EX -sk -EX -EX -er -er -er -OC -sk -nI -nI -nI -wI -"} -(84,1,1) = {" -YW -ve -ve -YS -YS -YS -YS -ve -ve -ib -gY -ib -bA -bA -bA -bA -bA -xK -xl -ur -QV -kJ -kJ -kJ -Wu -kJ -kJ -rE -IV -pf -PA -XD -IV -hE -Hb -Hb -Hb -SP -IV -IV -IV -IV -IV -TN -Hb -kJ -kK -AJ -Ig -TX -Ig -DZ -DZ -Ig -TX -Ig -fx -yp -yp -yp -yp -IA -VQ -Jw -RP -RP -RP -RP -oY -HH -Kc -dn -mD -NK -UJ -sx -xw -qM -lH -lH -lH -EB -lH -hn -xw -xw -UJ -UJ -UJ -mD -KY -UJ -UJ -UJ -OE -OE -Aj -Aj -OE -OE -OE -OL -OL -Ou -ea -EX -EX -EX -EX -WV -EX -EX -ea -Gb -Xn -cJ -ry -cJ -MK -wU -mq -cJ -cJ -lx -cJ -cJ -nd -nI -nI -nI -nI -EX -EX -EX -EX -EX -EX -EX -EX -jP -nI -nI -nI -nI -nI -nI -nI -nI -nI -wI -"} -(85,1,1) = {" -YW -YS -YS -YS -YS -YS -ve -ve -ve -Ox -bA -bA -nO -bA -bA -bA -nO -xK -HV -sT -ua -Hb -Hb -Hb -Hb -Hb -kJ -SP -IV -hh -PA -oG -IV -UR -Hb -Hb -Hb -HJ -aZ -aZ -aZ -sF -IV -SU -Hb -kJ -rE -xC -fB -QR -fB -DZ -yx -fB -QR -fB -QR -Ga -yp -yp -yp -IA -gy -Jw -Jw -Jw -Jw -Jw -oY -oY -Kc -Sk -KY -NK -xw -Jo -cX -Pb -wx -aO -lH -NW -LM -vu -cX -fQ -gK -UJ -UJ -mD -dn -UJ -UJ -UJ -OE -OE -Aj -Aj -OE -OE -OE -OL -EX -EX -EX -EX -EX -EX -EX -RL -EX -EX -jP -Gb -Ty -cJ -ry -cJ -cJ -cJ -cJ -cJ -cJ -cJ -cJ -cJ -nd -sk -nI -nI -nI -EX -EX -sk -EX -EX -ea -EX -EX -EX -nI -nI -nI -nI -nI -nI -nI -nI -nI -wI -"} -(86,1,1) = {" -YW -YS -YS -YS -YS -ve -ve -ve -ib -ib -bA -YK -YK -bA -bA -bA -bA -xK -HV -Hb -Hb -Hb -kK -ha -IV -HV -kJ -SP -IV -qr -wP -wR -IV -vl -cU -As -As -bL -As -As -kJ -Gt -IV -fu -Hb -kJ -SP -ND -qk -QR -qL -oW -Fn -Kh -QR -VP -tp -bH -yp -yp -yp -IA -SL -Jw -vV -vV -vV -oY -oY -oY -Kc -eL -wO -MD -Bq -tf -KY -HS -Ud -lC -lH -kM -fw -zc -KY -NK -kH -KY -UJ -mD -dn -dn -UJ -UJ -OE -OE -Aj -Aj -OE -OE -OE -OL -EX -EX -EX -RN -EX -EX -EX -EX -EX -EX -EX -Gb -cJ -cJ -hb -gw -cJ -cJ -cJ -cJ -dJ -AM -AM -AM -Ae -jP -nI -nI -LG -EX -EX -EX -EX -EX -EX -EX -EX -EX -nI -nI -nI -nI -nI -nI -nI -nI -nI -wI -"} -(87,1,1) = {" -YW -YS -YS -ve -ve -ve -ve -ib -ib -bA -YK -vr -YK -bA -bA -bA -yF -xK -fV -Wc -Hb -Hb -rE -IV -IV -HV -kJ -SP -IV -IV -IV -IV -IV -IV -IV -Xv -Xv -IV -IV -IV -KQ -IV -IV -KK -Hb -kJ -SP -qG -mD -sy -NK -xw -xw -kH -mD -mD -tp -QJ -SO -SO -yp -IA -eW -Jw -ep -ep -ep -VU -Ba -Ba -Kc -mD -NK -Jo -tf -oL -WX -Oe -tQ -dN -Dz -VJ -tQ -Oe -zW -KR -ld -CO -KY -mD -dn -dn -UJ -OE -OE -Aj -Aj -Aj -OE -OE -OE -OL -sk -EX -RN -RN -oh -EX -EX -EX -EX -ea -Of -RX -No -RX -DP -ih -RX -No -RX -Vq -EX -EX -EX -EX -EX -EX -nI -nI -EX -jP -EX -EX -up -ea -EX -EX -EX -nI -nI -nI -nI -nI -nI -nI -nI -nI -nI -wI -"} -(88,1,1) = {" -YW -ve -ve -ve -ve -ve -oy -ib -bA -YK -YK -YK -bA -bA -bA -bA -bA -xK -WJ -Hb -Hb -Hb -vw -Xv -tT -rM -kJ -HJ -ml -aZ -aZ -aZ -ml -aZ -aZ -aZ -aZ -ml -aZ -aZ -kJ -ml -aZ -rM -Hb -kJ -SP -qG -KY -mD -NK -xw -xw -kH -mD -sy -dh -YO -YO -hx -yp -IA -hx -yb -yb -yb -yb -yb -yb -yb -Ra -mD -hI -kH -dV -dn -zk -En -FQ -bB -FQ -qv -FQ -mV -BM -lA -xw -ld -CO -mD -AN -OY -OY -OE -OE -Aj -Aj -OE -OE -OE -OL -to -ea -EX -RN -RN -RN -EX -EX -EX -ea -EX -JR -NH -zS -sz -DP -DO -UH -sz -uT -NU -Ou -ea -EX -up -EX -EX -ea -nI -WV -EX -EX -EX -EX -EX -EX -nI -nI -nI -nI -nI -nI -nI -nI -nI -nI -nI -nI -wI -"} -(89,1,1) = {" -YW -ve -ve -ib -ib -ib -ib -bA -YK -YK -YK -bA -bA -yF -bA -bA -bA -xK -iA -Hb -Na -Hb -BI -Xv -HV -Hb -kJ -kJ -kJ -kJ -kJ -kJ -kJ -kJ -kJ -kJ -kJ -kJ -kJ -kJ -kJ -kJ -kJ -kJ -kJ -kJ -SP -qG -Qc -KY -lA -xw -Jo -Pb -mD -mD -mD -mD -PP -ks -Oo -iX -rL -dn -dn -UJ -UJ -UJ -UJ -DH -mD -mD -XC -tf -cj -KY -zk -Iq -bB -bB -bB -qv -bB -hC -BM -hI -xw -xw -kH -mD -AN -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -OL -EX -EX -RN -RN -RN -RN -EX -jP -ea -LG -qo -JR -rx -Sl -DO -DP -DO -DO -HM -gC -MY -sk -ea -EX -EX -EX -EX -ea -EX -EX -EX -EX -EX -EX -EX -EX -nI -nI -nI -nI -nI -nI -nI -nI -nI -nI -nI -nI -wI -"} -(90,1,1) = {" -Zy -MG -ib -ib -bA -bA -bA -bA -bA -nO -PG -bA -MG -MG -bA -bA -nO -xK -IV -fX -Xv -fX -IV -IV -HV -Hb -kK -Na -Na -Na -Vy -Na -iW -kK -Vy -Na -Na -Na -Vy -Na -Na -Na -Na -Vy -Na -Na -ha -ND -dV -mD -NK -Jo -tf -mD -mD -mD -mD -mD -HF -DN -id -iX -XE -MA -dn -dn -UJ -UJ -Qc -mD -mD -Br -MA -mD -mD -mD -zk -ZP -bB -bB -bB -qv -bB -YL -BM -Ja -HR -pG -bK -pA -AN -OE -OE -OE -Aj -Aj -Aj -OE -OE -Of -RX -No -No -No -RX -RX -RX -No -No -No -RX -RX -Bt -Rm -pi -DO -DP -DO -DO -FB -It -MY -LG -ea -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -sk -EX -RL -nI -nI -nI -nI -nI -Ou -EX -EX -EX -nI -nI -nI -wI -"} -(91,1,1) = {" -Zy -MG -bA -bA -bA -bA -bA -bA -bA -bA -nO -kG -MG -MG -nO -bA -bA -xK -FX -Hb -aZ -Hb -ak -IV -HV -Hb -SP -IV -IV -IV -IV -IV -HV -SP -IV -IV -IV -IV -xC -ra -ra -ra -ra -ra -ra -ra -ra -DX -mD -wO -MD -kH -UJ -UJ -Sk -mD -DH -mD -mD -mD -vz -ku -KX -XE -MA -mD -eL -KY -sy -mD -Br -BB -WP -mD -KY -eL -zk -PO -Kx -bB -bB -qv -Tm -hC -tQ -Ic -eR -eR -sr -OE -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -JR -TB -Ws -VF -kp -Ws -XJ -le -Ws -ip -kd -sz -uT -DT -Pq -DO -DO -DP -DO -DO -DO -ZE -NU -jP -EX -EX -RL -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -WV -nI -nI -wI -"} -(92,1,1) = {" -Zy -MG -bA -bA -GP -bA -bA -yF -bt -bA -bA -MG -MG -MG -MG -kG -bA -xK -pa -Wc -Hb -Hb -mE -Xv -HV -Hb -SP -IV -EA -qQ -Pc -IV -xl -SP -IV -hH -qQ -Hh -ND -qk -mD -KY -mD -mD -mD -mD -mD -KY -wO -MD -Jo -tf -UJ -UJ -UJ -Qc -mD -mD -KY -mD -SR -vX -Fi -KX -XE -MA -Sk -mD -Br -ZH -BB -KX -WP -dV -Qc -Uk -zk -tQ -bf -bB -bB -qv -YH -tQ -tQ -uG -eR -eR -pI -Bb -NG -OE -OE -Aj -Aj -Aj -OE -NG -GU -JR -DV -DO -IS -NT -DO -oK -gk -IS -DO -lM -DO -ZE -DT -AW -DO -DO -DP -DO -vU -sw -Ap -NU -ea -EX -RL -sk -ea -EX -EX -Cw -Cw -nI -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -EX -LG -nI -wI -"} -(93,1,1) = {" -Zy -MG -bA -bA -nO -bA -bA -bt -nO -bA -bA -MG -MG -MG -MG -bA -bA -xK -pT -Hb -Hb -Hb -VT -Xv -HV -Hb -SP -IV -wo -qQ -qQ -uf -Hb -Hb -uf -qQ -qQ -fd -ND -mD -sy -wO -oM -oM -oM -oM -uK -jF -MD -Jo -tf -mD -dn -UJ -UJ -UJ -mD -mD -sy -mD -SR -XI -Lj -KX -KX -XE -ZH -ZH -BB -KX -oZ -WX -Oe -Oe -Oe -Oe -tQ -Mf -rZ -bB -bB -qv -RT -IT -pX -Mn -eR -eR -eR -wK -xO -wK -wK -cZ -cZ -wK -wK -xO -rb -DT -AW -DO -DO -DO -DO -DO -DO -DO -DO -DO -DO -ZE -Bt -AW -DO -DO -DP -DO -DO -sw -Vx -NU -EX -EX -ea -EX -EX -EX -OL -Cw -zF -nI -nI -EX -EX -jP -EX -EX -ea -EX -EX -EX -EX -sk -EX -EX -EX -EX -nI -wI -"} -(94,1,1) = {" -Zy -MG -kG -bA -bA -bA -bA -bA -bA -bA -nO -MG -MG -MG -MG -bA -bA -xK -rl -Wc -Hb -Gz -vw -IV -HV -Hb -SP -IV -hU -qQ -hH -IV -HV -SP -IV -uk -qQ -hU -ND -Aa -wO -MD -Jo -cX -cX -cX -cX -cX -cX -tf -dn -dn -dn -dn -UJ -UJ -mD -mD -mD -mD -SR -XI -HF -gM -Fi -KX -KX -KX -KX -pj -Ic -tQ -su -jG -cA -Ml -Wm -Ub -bB -bB -bB -qv -bB -bB -yl -eR -eR -eR -eR -JI -JI -JI -JI -JI -JI -JI -JI -ba -ba -mX -DO -DO -DO -DO -DO -DO -DO -DO -DO -DO -DO -DO -mX -DO -DO -DO -DP -DO -DO -DO -ZE -MY -EX -EX -ea -EX -EX -OL -OL -zF -zF -nI -nI -EX -Ou -EX -EX -EX -EX -EX -EX -EX -jP -EX -EX -EX -EX -EX -nI -wI -"} -(95,1,1) = {" -Zy -MG -nO -bA -bA -bA -bA -bA -bA -bA -bA -MG -MG -MG -bA -bA -bA -xK -Rh -Hb -Hb -Hb -Yq -IV -HV -Hb -rE -IV -IV -IV -IV -IV -kY -rE -IV -IV -IV -IV -ND -KY -NK -Jo -tf -dn -dn -sa -mD -mD -Qc -sy -sa -dn -oL -dn -mD -mD -mD -mD -mD -mD -SR -XI -Sk -mD -PP -KX -KX -KX -aB -Ld -eR -yl -Do -bB -qv -qv -qv -qv -qv -qv -qv -qv -qv -qv -qv -NI -NI -NI -NI -MF -MF -MF -MF -MF -MF -MF -MF -ng -ng -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DO -Ut -Su -jC -MY -Ze -Ze -Ze -Ze -Ze -JX -Je -Je -zF -zF -Cw -EX -EX -EX -EX -up -EX -EX -RL -EX -EX -EX -EX -EX -EX -EX -nI -wI -"} -(96,1,1) = {" -Zy -MG -yF -bA -bA -YK -YK -YK -bA -bA -bA -bA -MG -MG -GP -bA -bA -xK -HV -Hb -Hb -Hb -CS -IV -HV -Hb -SP -IV -Oy -qQ -gS -IV -HV -SP -IV -hH -qQ -yQ -ND -mD -NK -sE -mD -dn -sa -sa -sa -sa -sa -sa -sa -sa -dn -KY -mD -mD -mD -KY -mD -mD -SR -XI -mD -mD -jg -KX -KX -KX -wC -iq -eR -bB -Do -bB -qv -Tm -Fx -Fx -Fx -Cx -qv -bB -Fx -XT -pX -eR -eR -eR -eR -bU -xO -bU -sG -sG -sG -sG -bU -bQ -Qu -DT -dI -DO -DP -Xe -zH -bP -zH -zH -zH -Xe -DO -DO -Bt -hq -zH -dF -eS -Za -zj -zj -hc -NU -MU -Ze -Ze -MU -Ze -JX -Je -Je -Je -Je -OL -EX -EX -sk -EX -EX -EX -EX -EX -sk -EX -EX -EX -EX -EX -EX -nI -wI -"} -(97,1,1) = {" -Zy -MG -bA -bA -bA -PG -YK -YK -YK -bA -bA -bA -bA -bA -bA -bA -bA -xK -LQ -Hb -Hb -Hb -SP -Xv -HV -Hb -SP -IV -wo -qQ -qQ -uf -Hb -Hb -uf -qQ -qQ -YG -ND -mD -NK -xU -dn -dn -sa -Sv -sK -dg -dg -km -fK -sa -dn -sa -Qc -KY -mD -gp -rg -UV -SR -XI -lL -gp -rg -KX -KX -KX -KX -gs -eR -tQ -li -bB -qv -YH -tQ -pX -pX -tQ -qv -sU -tQ -tQ -tQ -tQ -Nv -Nv -XS -HD -NG -OE -Aj -Aj -Aj -OE -OE -jJ -eA -Pz -LN -jY -DF -LN -LN -Bt -DT -DT -DT -Bt -DO -ih -Bt -Bt -ub -ub -ub -ub -ub -ub -ub -eG -ss -Ze -Ze -Ze -Ze -JX -Je -Je -Je -OL -OL -EX -EX -EX -nI -nI -RN -RN -EX -EX -EX -EX -EX -nI -Ou -EX -EX -wI -"} -(98,1,1) = {" -Zy -MG -bA -bA -MG -MG -MG -YK -YK -Ov -bA -bA -bA -bA -bA -bA -bA -xK -RR -Hb -Hb -Hb -SP -Xv -HV -Hb -SP -IV -hU -qQ -hH -IV -HV -SP -IV -wn -qQ -hU -ND -mD -NK -kH -dn -sa -sa -FY -qj -qj -qj -qj -Nu -sa -sa -sa -sy -mD -mD -mW -Vz -aa -fl -ay -aa -fl -Yu -KX -KX -KX -KX -gs -eR -pX -bB -bB -qv -OK -tQ -OJ -Lb -Zf -qv -bB -qu -dP -aq -BM -HD -VL -VL -VL -OE -OE -Aj -Aj -Aj -OE -OE -OE -JX -Pz -Kw -rD -OF -ED -LN -dG -sz -sz -sz -sz -DO -DO -uT -NU -HX -Ze -Ze -Ze -Ze -Ze -ss -ss -ss -ss -Ze -Ze -Ze -JX -Je -Je -Je -OL -OL -EX -EX -nI -nI -nI -RN -RN -RN -RN -EX -EX -nI -nI -EX -EX -EX -wI -"} -(99,1,1) = {" -Zy -MG -bA -kG -MG -MG -MG -MG -jm -bA -bA -bA -bA -bA -bA -bA -bA -xK -Sx -Wc -Hb -Hb -SP -IV -Hb -Vy -Hb -IV -IV -IV -IV -IV -xl -rE -IV -IV -IV -IV -ND -mD -NK -xU -sa -sa -iy -TU -qj -qj -qj -qj -da -sa -TZ -sa -mD -mD -mD -ME -zM -fl -fl -ay -fl -eY -sj -KX -KX -KX -oZ -gs -eR -pX -bB -bB -qv -OK -tQ -Mc -bB -bB -qv -bB -bB -bB -Xh -qT -VL -OE -OE -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -JX -jN -RV -rD -rD -rD -jY -AW -DO -DO -DO -DO -DO -DO -ZE -NU -Ze -Ze -Ze -Ze -by -Ze -Ze -ss -wV -ss -Ze -vQ -Ze -JX -JX -Je -Je -Je -OL -OL -nI -nI -nI -RN -RN -RN -RN -nI -nI -nI -nI -nI -EX -EX -sk -wI -"} -(100,1,1) = {" -Zy -MG -nO -MG -MG -MG -MG -MG -bA -bA -bA -bA -bA -bA -bA -nO -MG -xK -EO -nc -Vy -nR -Ve -xC -fX -xC -fX -xC -KA -ym -sY -QE -Hb -Hb -QE -ym -lf -Lm -ND -mD -Sc -kH -Qc -sa -Lp -qj -wN -RQ -qj -qj -Gf -He -Rt -ox -bw -bw -bw -bw -fl -fl -fl -ay -fl -fl -wA -jk -Uc -Uc -Uc -eR -eR -tQ -Do -bB -qv -YH -tQ -Jn -bB -bB -qv -bB -bB -bB -YH -qT -VL -OE -OE -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -JX -jN -rD -rD -yN -rD -jY -AW -DO -bF -bF -Jf -DO -DO -QP -NU -Ze -fF -Ze -Ze -Ze -Kk -Ze -Ze -ss -ss -Ze -Ze -Kk -Ze -JX -Je -Je -Je -Je -OL -nI -nI -nI -ea -EX -EX -RN -RN -nI -nI -ea -EX -EX -EX -EX -wI -"} -(101,1,1) = {" -Zy -MG -PG -MG -MG -MG -MG -PG -nO -bA -bA -bA -bA -bA -yF -MG -MG -Zs -ra -ra -ra -ra -ra -ra -Hb -lz -Hb -ra -ra -ra -ra -ra -RW -RW -ra -ra -ra -ra -DX -wO -MD -kH -eL -sa -Zz -jZ -QZ -Pw -jZ -jZ -VY -jZ -IC -oo -Mt -Mt -Mt -lB -ay -ay -ay -ay -ay -ay -IN -zG -ez -Ke -SA -NI -NI -WL -df -qv -qv -bB -yl -bB -bB -bB -qv -bB -bB -fD -Yf -qT -uy -OE -OE -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -JX -jN -rD -XL -yC -TC -jY -AW -DO -DO -DO -DO -DO -DO -ZE -NU -Fy -Ze -Ze -Ze -MU -Ze -Ze -Ze -Ze -Ze -Ze -MU -Ze -Ze -JX -JX -Je -Je -Je -Je -nI -nI -EX -jP -EX -sk -EX -EX -EX -EX -ea -sk -EX -OL -OL -wI -"} -(102,1,1) = {" -Zy -MG -MG -MG -MG -MG -kG -nO -bA -bA -bA -nO -bA -bA -nO -MG -MG -MG -MG -bA -CF -HI -OG -tx -Hb -Hb -Hb -RM -OG -OG -ld -oM -oM -oM -oM -oM -oM -oM -oM -MD -Bq -tf -sa -sa -EL -be -qj -qj -qj -qj -Ar -sa -qR -sa -mD -DH -Br -WO -zM -fl -fl -ay -fl -eY -Pk -mD -mD -rw -bT -gs -eR -bB -Do -bB -bB -bB -bB -bB -bB -bB -qv -bB -bB -Yt -Di -BM -OY -OE -OE -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -DJ -jN -rD -rD -Jg -rD -LN -Xt -DO -DO -DO -DO -DO -DO -ZE -Bt -RX -RX -Vq -vQ -Ze -Uu -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -JX -Je -Je -Je -Je -Je -nI -EX -EX -EX -OL -Bj -OL -OL -EX -EX -EX -EX -OL -Je -FU -"} -(103,1,1) = {" -Zy -MG -MG -MG -PG -nO -bA -bA -bA -bA -nO -bA -bA -bA -MG -MG -MG -MG -kG -CF -HI -OG -OG -co -Hb -Hb -Hb -ei -OG -NO -cX -cX -cX -cX -cX -cX -cX -cX -cX -fQ -ld -CO -sy -sa -sa -FY -qj -qj -qj -qj -Nu -sa -sa -sa -mD -mD -PP -gp -fl -lc -fl -ay -lc -fl -rg -dn -mD -mD -mD -oR -wF -tQ -IB -Ql -Cx -XT -tQ -Xm -bB -IH -bm -bB -bB -bB -YH -BM -OY -OY -OE -OE -OE -OE -OE -Aj -Aj -OE -OE -OE -OE -Pz -Wa -ge -rD -ll -LN -pF -tZ -wz -Mr -DO -DO -DO -Yc -sz -CK -ap -NU -Ze -Ze -Ze -Ze -Ze -Ze -OT -OT -OT -Ze -Ze -JX -Cp -Je -Je -Je -Je -Je -nI -nI -Ou -EX -OL -Je -Je -sX -OL -EX -EX -OL -OL -Je -FU -"} -(104,1,1) = {" -Zy -MG -MG -MG -jm -bA -yF -bA -bA -bA -bA -bA -bA -bA -MG -MG -MG -Nm -xm -HI -DI -Gv -Gv -ES -bj -pV -Dd -uQ -Gv -xW -mD -mD -mD -mD -mD -mD -mD -KY -sy -XC -fQ -kH -mD -Sk -sa -KD -BQ -xk -HT -VB -gl -sa -dn -sa -dn -Br -BB -mW -Yu -KV -Pg -lG -Rf -mW -Yu -dn -dn -mD -KY -mD -VP -OR -mp -mp -mp -mp -tQ -kj -bB -IH -Zt -bB -bB -si -MO -qT -dn -OY -UQ -OE -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -Hl -LC -LC -Ej -Ej -LC -ub -ub -Bt -zo -DO -DO -DO -DO -DO -oK -gz -NU -Ze -Ze -Ze -OT -OT -OT -OT -OT -Ze -Ze -Ze -JX -Je -Je -Je -Je -Je -Je -Je -nI -nI -nI -Je -Je -Je -Je -OL -OL -OL -OL -ck -Je -FU -"} -(105,1,1) = {" -Zy -MG -MG -bA -bA -bA -bA -bA -bA -bA -bA -CF -ZF -ZF -ZF -ZF -xm -Os -DI -Gv -lV -nO -bA -bA -bj -pV -Dd -nO -bA -bA -mD -mD -mD -Sk -mD -KY -eL -UJ -UJ -dn -NK -kH -mD -Qc -sa -sa -sa -sa -sa -sa -sa -sa -dn -dn -dn -HF -Fi -KX -KX -im -JU -XI -KY -Qc -dn -dn -dn -mD -Sk -Qc -mD -mD -KY -UJ -UJ -UJ -zk -KO -bB -bB -qv -bB -bB -bB -YH -qT -dn -mD -Vk -OE -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -OE -vP -Ze -MU -Ze -Ze -Ze -Uh -JR -gU -DO -DO -DO -DO -DO -DO -NZ -NU -Ze -Ze -Ze -OT -OT -OT -OT -Ze -Ze -Ze -JX -JX -Je -Je -Je -Je -Je -Je -Je -Je -Je -nI -Je -Je -Je -Je -Je -OL -OL -Je -Je -Je -FU -"} -(106,1,1) = {" -Zy -MG -MG -bA -bA -bA -bA -bA -bA -bA -bA -Xj -vS -Gv -Gv -Gv -Gv -Gv -ES -bt -kG -bA -bA -bA -bj -pV -Dd -bA -bA -bA -mD -UJ -UJ -UJ -Qc -KY -UJ -UJ -UJ -dn -NK -ld -CO -mD -eL -sa -dV -PP -KX -KX -sa -sy -dn -dn -mD -mD -xv -Yl -im -jV -SR -XI -mD -dV -mD -mD -mD -mD -eL -mD -mD -KY -UJ -UJ -UJ -mD -zk -lF -bB -bB -qv -bB -bB -bB -mz -qT -mD -mD -AN -AN -OE -OE -OE -OE -Aj -Aj -OE -OE -OE -OE -JX -JX -Ze -Ze -Kk -Ze -Ze -JR -Df -DO -DO -hs -Vp -DO -DO -ZE -NU -Ze -Ze -Ze -Ze -OT -OT -Ze -Ze -Ze -JX -JX -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -FU -"} -(107,1,1) = {" -KU -Ex -HB -EU -EU -EU -EU -EU -EU -EU -HB -qe -cw -cw -eV -EU -EU -EU -bA -PG -nO -bA -bA -bA -bj -pV -Dd -bA -nO -nO -mD -UJ -UJ -UJ -UJ -UJ -UJ -UJ -oL -dn -XC -fQ -ld -oM -oM -CO -mD -xv -DN -fA -jV -mD -mD -mD -mD -mD -mD -HF -jV -mD -SR -XI -mD -mD -wO -oM -oM -oM -oM -oM -CO -UJ -UJ -UJ -mD -mD -zk -Wg -Fx -Cx -qv -bB -qH -Ax -XH -BM -mD -mD -mD -bb -OE -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -OE -Cp -JX -Ze -Ze -by -Ze -JR -en -DO -DO -hZ -hP -DO -DO -ZE -NU -Ze -Ze -Ze -Ze -Ze -Ze -Ze -MU -Kk -JX -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -FU -"} -(108,1,1) = {" -KU -Ex -HB -HB -EU -EU -EU -EU -EU -EU -qe -pp -gr -qa -Af -uY -uY -EU -bA -bA -bA -bA -nO -bA -bj -pV -DM -AK -LI -AK -MA -UJ -UJ -UJ -UJ -UJ -Qc -dn -dn -mD -KY -XC -cX -cX -fQ -kH -DH -mD -mD -mD -mD -mD -mD -mD -mD -cj -mD -mD -KY -mD -SR -XI -KY -mD -NK -Jo -cX -cX -cX -fQ -ld -oM -oM -oM -oM -oM -OR -tQ -pX -tQ -qv -sU -tQ -pX -tQ -bg -oM -CO -mD -AN -AN -OE -OE -OE -OE -Aj -Aj -OE -OE -OE -OE -OE -Tv -Ze -BD -Ze -Ze -JR -ug -DO -DO -eF -XK -DO -DO -ZE -NU -Ze -by -Kk -Ze -Ze -Ze -vQ -Ze -Ze -RE -zF -Je -Je -Je -Je -Je -JO -JO -JO -JO -JO -JO -JO -JO -JO -JO -JO -Je -Je -Je -Je -Je -FU -"} -(109,1,1) = {" -KU -Ex -HB -HB -EU -EU -EU -EU -EU -EU -Jr -qa -au -qa -Af -he -Ex -Ex -YK -YK -YK -bA -bA -bA -Nh -CD -pQ -qC -qC -qC -XE -UC -jK -UD -mD -KY -KY -mD -mD -mD -mD -dV -KY -KY -NK -kH -mD -mD -mD -dn -dn -dn -dn -mD -dV -mD -mD -mD -mD -mD -SR -XI -mD -mD -lA -kH -mD -dn -dn -qs -Qn -cX -cX -cX -PZ -xw -nr -eR -eR -eR -NI -eR -eR -eR -eR -Hy -xw -ru -uK -CO -OY -EV -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -OE -JX -Ze -vQ -Ze -Ze -JR -HQ -DO -DO -DO -DO -DO -DO -Kd -NU -Ze -Ze -MU -Ze -Ze -Ze -Ze -Ze -Ze -RE -RE -zF -Je -Je -Je -Je -JO -OT -OT -TQ -TQ -OT -OT -OT -TQ -QG -JO -JO -Je -Je -Je -Je -FU -"} -(110,1,1) = {" -KU -Ex -HB -HB -EU -EU -EU -EU -EU -EU -Jr -qa -qa -Sg -HG -Ho -Ex -Ex -Ex -YK -YK -YK -bA -jw -qx -vg -vE -dz -qC -qC -KX -KX -do -WP -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -NK -gK -mD -UJ -UJ -UJ -UJ -dn -dn -mD -mD -wO -oM -jF -zy -qd -SR -XI -NJ -Rp -MD -kH -mD -dn -UJ -UJ -oL -dn -dn -wO -MD -xw -qM -wF -wF -wF -NI -eR -wF -wF -wF -hn -xw -xw -Jo -Ur -OY -OY -EV -OE -OE -OE -Aj -Aj -OE -OE -OE -EV -RE -RE -Ze -Ze -Kk -JR -Ip -DO -DO -DO -DO -DO -DO -Kd -NU -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -ss -RE -RE -zF -Je -Je -Je -JO -OT -OT -OT -OT -OT -OT -OT -OT -EK -QG -JO -Je -Je -Je -Je -FU -"} -(111,1,1) = {" -KU -Ex -qe -uo -uo -qq -EU -EU -EU -EU -SV -bq -bq -HG -EU -EU -Ex -Ex -Ex -Ex -Ex -HB -EU -vB -jt -jt -jt -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -yn -Ct -yD -CT -CT -CT -CT -mi -mi -bo -xJ -xJ -Jy -Nk -Nk -Ux -YB -kg -ZV -YB -UE -Nk -yD -TF -XV -CT -CT -CT -CT -mi -Ct -WE -nP -oc -TF -TF -TF -nS -Pv -If -TF -TF -PB -nP -nP -mO -CT -Kq -Ff -EV -OE -OE -OE -Aj -Aj -Aj -OE -OE -EV -EV -RE -FW -Ze -Ze -JR -EI -zH -zH -Xe -DO -DO -zH -bk -NU -ss -Ze -Ze -Ze -QN -Ze -Ze -Ze -Ze -Ze -ss -RE -zF -Je -Je -Je -JO -db -OT -OT -CE -CE -KM -vK -OT -OT -OT -Yy -Je -Je -Je -Je -FU -"} -(112,1,1) = {" -KU -Ex -px -qa -qa -Af -EU -EU -Ex -Ex -he -uY -EU -EU -EU -EU -GW -Ex -Ex -Ex -Ex -Ho -EU -IZ -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -wY -Ct -yD -CT -CT -CT -qp -mi -TF -Ct -WE -nP -nP -nP -lX -vd -ee -iH -Ew -ee -dY -TP -br -TF -TF -TF -mT -CT -CT -bo -iz -yD -If -CT -XV -TF -TF -nS -Pv -TF -Vr -TF -TF -TF -TF -CT -CT -CT -Ff -nw -OE -OE -OE -OE -Aj -Aj -OE -OE -OE -EV -EV -RE -MU -Ze -Du -ub -Iv -Iv -ub -DO -ih -ub -ub -eG -ss -ss -ss -ss -OT -OT -Ze -Ze -Ze -Ze -Ze -RE -RE -Je -Je -Je -JO -ok -hJ -OT -Sj -RZ -RZ -SZ -OT -OT -OT -ne -Je -Je -Je -Je -FU -"} -(113,1,1) = {" -KU -Ex -kZ -qa -qa -nC -Bi -EU -Ex -Ex -Ex -HN -uY -Jk -EU -EU -uY -Ex -Ex -he -uY -EU -EU -IZ -jt -jt -jt -jt -Mh -Mh -jt -jt -jt -jt -jt -jt -Mh -Mh -jt -jt -nU -jt -jt -wY -Ct -vN -CT -CT -TF -TF -TF -TF -Ct -yD -vd -dO -dO -dO -BF -PF -iH -ty -pN -BF -dO -dO -dY -zu -TF -TF -TF -TF -Ct -WE -br -CT -CT -CT -zu -TF -nS -Pv -TF -TF -YZ -TF -TF -TF -CT -CT -Mp -XV -tb -OE -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -EV -RE -RE -Ze -Ze -Ze -Ze -Ze -QB -UL -Eb -HA -Ze -ss -ss -ss -ss -OT -OT -OT -Ze -Ze -MU -Ze -Ze -JX -Je -Je -Je -Je -JO -tH -aK -OT -KM -RZ -RZ -QD -OT -Tv -pc -PL -Yy -Je -Je -Je -FU -"} -(114,1,1) = {" -KU -Ex -Vn -OH -qa -qa -Af -EU -GW -Ex -Ex -Ex -Ex -EU -EU -EU -EU -he -Ex -EU -EU -EU -EU -IZ -jt -jt -jt -jt -Mh -Mh -jt -jt -jt -jt -jt -jt -Mh -Mh -jt -jt -MM -jt -jt -wY -Ct -Nk -vN -xJ -xJ -xJ -xJ -xJ -iz -yD -Up -iH -iH -De -BF -fo -iH -ty -iH -UP -tS -tS -RF -Mp -XV -TF -TF -XV -Ct -yD -CT -CT -CT -CT -XV -TF -nS -Pv -TF -zu -XV -TF -TF -CT -CT -CT -XV -TF -nw -OE -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -OE -EV -RE -RE -Ze -Ze -Ze -Ze -eM -qi -qi -By -Kk -ss -ss -ss -OT -OT -OT -BD -Ze -Ze -by -Ze -Ze -JX -Je -Je -Je -Je -JO -ok -OT -OT -nv -RZ -Xf -xp -OT -JX -pc -pc -ne -Je -Je -Je -FU -"} -(115,1,1) = {" -KU -Ex -uY -px -MN -qa -rK -EU -uY -HB -Ex -Ex -Ex -Ex -Av -EU -EU -EU -EU -EU -hi -Wf -hu -IZ -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -jt -MM -jt -jt -jt -GX -Nk -SN -nP -nP -nP -nP -wS -Xs -br -Up -VM -iH -VM -BF -OV -iH -ty -iH -nn -iH -fW -RF -XV -XV -CT -CT -zu -Ct -yD -CT -CT -CT -Mp -TF -TF -nS -Pv -TF -TF -XV -mT -CT -CT -CT -Cy -TF -TF -nw -nw -nw -OE -OE -OE -Aj -Aj -OE -OE -OE -OE -EV -EV -RE -Ze -Kk -Ze -Ze -Qh -Pr -qi -By -Ze -Ze -Ze -ss -OT -OT -OT -MU -Ze -vQ -Ze -Ze -Ze -JX -Je -Je -Je -Je -JO -JO -OT -OT -RH -RZ -RZ -aG -OT -RE -pc -pc -ne -Je -Je -Je -FU -"} -(116,1,1) = {" -KU -Ex -EU -SV -bq -bq -HG -EU -EU -HB -Ex -Ex -Ex -Ex -Ex -EU -EU -EU -EU -YX -Yw -El -FA -jt -jt -jt -Wy -jt -jt -rn -jt -oj -oj -jt -jt -jt -jt -jt -jt -jt -Ds -jt -jt -jt -Oi -Nk -PD -TF -TF -TF -TF -TF -TF -Wv -Up -VM -iH -VM -BF -mB -fS -ty -iH -cM -ZU -fi -RF -eJ -TF -CT -CT -CT -Ct -vN -xJ -CT -CT -Ny -rJ -it -nS -Pv -TF -dH -xJ -xJ -xJ -xJ -xJ -xJ -it -TF -TF -nw -OE -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -OE -EV -RE -Ze -Ze -MU -Ze -vQ -Qh -Pr -By -Ze -Ze -Ze -MU -OT -OT -OT -Ze -Ze -Ze -Ze -Ze -Ze -JX -JX -Je -Je -Je -Je -JO -OT -OT -OT -OQ -KG -KM -OT -FZ -pc -pc -ne -Je -Je -Je -FU -"} -(117,1,1) = {" -KU -Ex -Av -EU -EU -EU -YU -EU -EU -HB -HB -HB -HB -Ex -Ex -GW -uY -EU -EU -oz -gX -bG -tX -tX -tX -tX -BT -hV -hV -ZR -tX -tX -tX -tX -BO -jt -jt -jt -jt -jt -jt -jt -jt -wY -qz -nP -br -TF -vd -Sh -Sh -Sh -Sh -Sh -BF -VM -ty -VM -BF -BF -BF -ty -zb -BF -BF -BF -BF -dY -CT -CT -TF -TF -Ct -Nk -Nk -Nk -Nk -Nk -sI -kL -UU -oO -kL -na -Nk -WE -nP -nP -nP -nP -YY -XV -TF -nw -OE -OE -OE -OE -OE -Aj -Aj -OE -OE -OE -OE -OE -JX -JX -qt -Ze -Ze -Ze -Ze -eM -By -Ze -cl -Ze -OT -OT -OT -OT -OT -OT -Kk -Ze -Ze -Ze -Ze -JX -JX -JX -Je -Je -JO -ok -OM -OT -OT -OT -kI -Ce -of -OT -pc -ne -Je -Je -Je -FU -"} -(118,1,1) = {" -KU -Ex -he -uY -EU -EU -EU -EU -EU -EU -EU -EU -HB -Ex -Ex -Ex -hd -Bi -EU -Ah -CX -hX -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -HO -Pd -jt -jt -jt -jt -jt -jt -jt -wY -If -Mp -XV -TF -Up -iS -zl -iH -zl -eO -BF -iH -ty -iH -zl -iH -iH -ty -iH -iH -zn -sP -iH -RF -bo -xJ -xJ -xJ -iz -WE -za -wv -wv -wv -wv -an -UU -hW -an -wv -wv -wv -wv -wv -wv -Cd -TF -TF -TF -nw -OE -OE -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -OE -OE -OE -JX -Ze -Ze -Ze -Ze -eM -By -Ze -Ze -Ze -OT -OT -OT -OT -OT -OT -Ze -Ze -Ze -Ze -Ze -fF -Ze -JX -JX -PL -JO -JO -JO -JO -OT -OT -OT -OT -OT -OT -dA -HK -Je -Je -Je -FU -"} -(119,1,1) = {" -KU -Ex -uY -EU -EU -EU -EU -EU -uY -Ho -EU -EU -HB -HB -Ex -Ex -qa -Af -EU -Ah -CX -hX -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -HO -Pd -jt -jt -jt -jt -Yh -jt -jt -wY -TF -zu -TF -TF -Up -iS -iH -Ag -iH -iH -CJ -iH -ty -ty -ty -ty -ty -ty -ty -ty -ty -iH -iH -CJ -na -Nk -WE -nP -nP -br -lv -nm -jB -iC -sf -jB -UU -oO -jB -oA -nE -Qb -nm -xf -fT -Yz -TF -TF -TF -nw -nw -rX -OE -OE -OE -Aj -Aj -Aj -Aj -OE -OE -OE -OE -OE -JX -Ze -Ze -by -Ze -eM -By -Ze -Ze -OT -OT -OT -OT -OT -OT -OT -sm -vy -vy -vy -Ze -Ze -OT -OT -Tv -JX -Je -Je -Je -JO -dL -JX -OT -OT -OT -dA -HK -Je -Je -Je -Je -FU -"} -(120,1,1) = {" -KU -Ex -EU -EU -EU -EU -vW -Ex -Ex -Ex -uY -EU -EU -EU -Ex -Ex -qa -Af -EU -Ah -CX -hX -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -HO -jt -jt -jt -jt -jt -GF -jt -jt -wY -TF -TF -TF -XV -Up -tS -bs -Wd -iH -Xd -BF -zr -Nn -iH -iH -iH -la -iN -iH -Se -ty -fS -Ww -RF -Ct -WE -br -TF -TF -Wv -lv -XA -oO -oO -oO -oO -UU -oO -oO -oO -oO -Tp -oO -GD -AA -AR -TF -TF -TF -TF -XV -nw -OE -OE -OE -OE -Aj -Aj -Aj -Aj -OE -OE -OE -OE -JX -JX -Ze -Ze -Ze -eM -By -Ze -Ze -OT -OT -OT -OT -OT -OT -OT -OT -qi -qi -vy -Ze -OT -OT -OT -Ze -JX -Je -Je -Je -Je -JO -dL -jO -OT -OT -HK -Je -Je -Je -Je -Je -FU -"} -(121,1,1) = {" -KU -Ex -uY -EU -EU -EU -uY -Ex -Ex -Ex -EU -EU -EU -Ex -Ex -FJ -qa -GO -HB -Nq -CX -hX -jf -jf -jf -FM -FM -FM -FM -FM -FM -jf -jf -jf -HO -jt -jt -jt -jt -jt -GF -jt -jt -wY -TF -TF -IJ -TF -Up -BF -ee -ee -LW -BF -BF -BF -BF -Ck -iH -zr -BF -BF -BF -BF -gD -BF -BF -Np -Ct -yD -TF -za -wv -wv -Tk -pe -sL -TL -GN -Xg -Tc -Xg -Xg -RI -Vi -ys -XA -GD -Vi -AR -TF -TF -CT -CT -Mp -nw -OE -OE -OE -OE -Aj -Aj -Aj -Aj -OE -OE -OE -OE -OE -Cp -Ze -MU -Ze -eM -By -QN -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -qi -vy -tm -OT -OT -OT -Ze -JX -Je -Je -Je -Je -Je -Je -JO -JO -JO -JO -Je -Je -Je -Je -Je -FU -"} -(122,1,1) = {" -KU -Ex -EU -EU -EU -uY -he -Ex -Ex -Ex -EU -EU -GW -Ex -Ex -qa -Sg -Cq -HB -oI -CX -hX -jf -jf -jf -gu -gu -PT -Ri -gu -gu -jf -jf -jf -JW -hv -jt -jt -jt -jt -mP -jt -jt -wY -eJ -TF -TF -Wv -LX -iH -iH -iH -iH -zl -iH -cc -BF -mb -iH -De -BF -PM -qS -iH -ty -iH -es -Da -Ct -PD -TF -lv -WR -vY -ir -XA -Vi -Qb -ys -ys -xn -ys -Qb -pe -Vi -Qb -uz -Xg -LF -Yz -YZ -TF -CT -CT -XV -nw -OE -OE -OE -OE -Aj -Aj -Aj -Aj -Aj -OE -OE -OE -OE -JX -JX -Ze -MU -eM -By -Ze -OT -OT -Ze -Ze -OT -OT -OT -OT -OT -OT -qi -qi -vy -Ze -Uu -BD -Ze -JX -JX -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -Je -FU -"} -(123,1,1) = {" -KU -Ex -Ex -GW -EU -uY -Ex -Ex -Ex -GW -uY -EU -EU -Ex -Ex -bq -HG -HB -HB -oI -CX -hX -jf -jf -jf -jf -jf -UZ -Tr -jf -jf -jf -jf -jf -xN -jt -jt -jt -jt -jt -jt -jt -jt -jt -VR -VR -VR -VR -ci -iH -iH -iH -iH -iH -iH -vA -BF -nX -iH -iH -BF -xF -ty -ty -ty -iH -es -bo -iz -yD -zu -lv -hg -oO -cx -oO -Vi -ys -Wp -UA -AO -Dx -ys -XA -Vi -Qb -Qb -Qb -Qb -Yz -XV -TF -zu -CT -CT -nw -nw -OE -OE -OE -OE -Aj -Aj -Aj -Aj -OE -OE -OE -OE -OE -JX -Ze -Ze -eM -By -Ze -Ze -Ze -Ze -Ze -OT -OT -OT -OT -OT -OT -qi -qi -vy -MU -Ze -Kk -Ze -JX -JX -Je -Je -Je -Je -Je -Je -zF -zF -Je -JX -JX -Je -Je -Je -FU -"} -(124,1,1) = {" -KU -Ex -Ex -EU -uY -Ho -Ex -Ex -Av -uY -EU -EU -EU -EU -Ex -Ex -EU -EU -HB -oI -CX -hX -jf -jf -jf -jf -jf -UZ -Tr -jf -jf -jf -jf -jf -xN -jt -jt -jt -jt -jt -jt -jt -jt -jt -pw -pw -pw -pw -iH -iH -iH -VM -iH -VM -iH -mB -BF -VC -ty -ty -FE -ty -iH -ft -ft -ft -RF -Ct -WE -br -mi -lv -Xp -oO -ir -XA -oO -Tp -oO -oO -UU -Vi -ys -XA -oO -ke -oO -jB -gG -Yz -TF -TF -CT -CT -CT -TF -nw -nw -OE -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -OE -OE -JX -Kk -Ze -eM -By -Ze -Ze -Kk -Ze -Ze -Ze -Ze -MU -OT -OT -OT -qi -vy -vy -Ze -Ze -Ze -Ze -JX -Je -Je -Je -Je -Je -Je -zF -zF -RE -JX -JX -JX -JX -Je -Je -FU -"} -(125,1,1) = {" -KU -Ex -Ex -Ex -Ex -Ex -Ex -Ex -he -EU -EU -Jk -EU -EU -Ex -Ex -vW -EU -HB -bc -CX -hX -jf -jf -jf -FM -FM -Hm -FH -FM -FM -jf -jf -jf -PR -Wy -jt -jt -jt -aA -Ii -jt -jt -wY -BY -TF -TF -va -LX -iH -Wd -VM -iH -VM -iH -Ca -BF -zr -ty -zr -BF -Ym -fS -eK -as -eK -RF -Ct -oH -TF -mi -lv -Tk -Tk -Tk -pe -Vi -ys -cf -TA -UU -Ng -Tp -oO -Vi -ys -gB -Jd -KH -Yz -XV -TF -CT -CT -zu -TF -TF -nw -nw -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -OE -OE -JX -Ze -Ze -eM -JY -rG -VH -HA -Ze -Ze -cg -Ze -Ze -OT -OT -OT -OT -sm -Ze -Ze -Ze -Ze -Ze -OT -ck -Je -Je -Je -Je -OT -RE -RE -JX -Ze -Ze -QN -JX -JX -Je -FU -"} -(126,1,1) = {" -KU -Ex -Ex -Ex -Ex -Ex -Ex -he -uY -EU -EU -EU -YU -EU -Ex -Ex -EU -EU -EU -Pe -CX -hX -jf -jf -jf -gu -gu -gu -gu -gu -gu -jf -jf -jf -HO -jt -jt -jt -jt -Ii -Es -jt -jt -wY -TF -TF -zu -XV -Up -hm -iH -VM -iH -VM -iH -BF -BF -ee -gD -ee -BF -Pm -Pm -Pm -Pm -Pm -Np -Ct -yD -TF -mi -lv -WR -vY -ir -XA -Vi -Tk -Tk -Tk -kw -Tk -Tk -fU -Vi -Qb -Qb -Qb -Qb -Yz -Mp -TF -TF -CT -CT -CT -TF -nw -nw -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -EV -RE -RE -Ze -Ze -iM -IF -IF -Pr -JY -VH -HA -Ze -BD -Ze -Ze -Ze -OT -OT -OT -OT -Ze -Ze -Ze -Ze -OT -OT -Je -Je -OT -OT -OT -ss -ss -Ze -Ze -Ze -Ze -Ze -JX -Je -FU -"} -(127,1,1) = {" -KU -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -nx -em -uo -Ex -Ex -Ex -Ku -Ho -EU -EU -Ah -CX -hX -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -HO -jt -YP -YP -YP -YP -YP -YP -YP -nV -TF -If -CC -hk -Up -iH -iH -VM -iH -VM -De -BF -zr -iH -ty -iH -es -BY -TF -TF -TF -TF -zu -Ct -sM -Vr -mi -lv -hg -oO -cx -oO -Vi -Tk -dk -jB -oO -Dx -Tk -XA -Qk -sD -sD -Ly -Gi -Yz -TF -TF -CT -CT -CT -Mp -TF -nw -OE -OE -OE -Aj -Aj -Aj -Aj -OE -OE -EV -EV -RE -ss -ss -ss -Ze -Ze -Ze -Qh -IF -Pr -JY -HA -Ze -MU -Kk -MU -Ze -OT -OT -OT -Ze -MU -Ze -Ze -Ze -OT -OT -OT -OT -OT -ss -ss -Ze -Ze -Ze -Ze -Ze -Ze -JX -OT -kt -"} -(128,1,1) = {" -KU -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Jr -qa -Ex -Ex -Ex -Ex -Ex -he -uY -Ah -CX -hX -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -HO -wL -hu -EU -EU -EU -EU -TF -TF -TF -GJ -hk -hY -Vb -Up -NN -iH -ty -ty -ty -ty -FE -ty -ty -ty -iH -es -TF -TF -TF -TF -TF -TF -Ct -Hn -Mp -TF -lv -Xp -oO -ir -XA -Vi -Tk -Td -oO -oO -Vi -Tk -pe -oO -oO -oO -oO -vt -Yz -TF -YZ -CT -CT -mT -XV -nw -nw -OE -OE -Aj -Aj -Aj -Aj -OE -OE -OE -EV -RE -RE -ss -OT -OT -Ze -Ze -Ze -QN -vQ -Qh -Pr -By -Ze -Ze -Ze -Ze -OT -OT -OT -OT -OT -Ze -Ze -Ze -Ze -Ze -OT -OT -OT -MU -Ze -Ze -Ze -Ze -Ze -Ze -vQ -Ze -OT -OT -kt -"} -(129,1,1) = {" -KU -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Jr -FJ -qa -Ex -Ex -Ex -Ex -ma -EU -Ah -CX -hX -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -HO -El -CX -EU -EU -HB -HB -mi -TF -TF -zK -Vb -Vb -Vb -Up -BF -zr -iH -iH -pB -iH -BF -BF -wj -BF -wj -es -CT -TF -TF -mT -XV -TF -Ct -yD -TF -TF -CY -rv -rv -Tk -Ok -kz -Tk -no -ac -NQ -SM -Tk -uz -Xg -Xg -oO -oO -KJ -Yz -TF -TF -CT -CT -XV -nw -QW -OE -OE -OE -Aj -Aj -Aj -Aj -OE -OE -OE -OE -RE -ss -wV -OT -OT -OT -Ze -Ze -Ze -Ze -Ze -Ts -By -Ze -Ze -Ze -fF -OT -OT -OT -OT -OT -Ze -Ze -Ze -Ze -Ze -OT -OT -Ze -Ze -Ze -Ze -MU -Uu -Ze -Kk -Ze -OT -OT -OT -kt -"} -(130,1,1) = {" -KU -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ho -uY -Jr -qa -qa -qa -Ex -Ex -Ex -Ex -YU -Ah -CX -dT -ri -ri -ri -ri -ri -ri -ri -ri -ri -ri -ri -ri -WY -Re -CX -Ho -EU -HB -HB -mi -mi -TF -zK -Vb -Vb -Vb -CR -Pm -Pm -LW -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Np -CT -TF -TF -bo -xJ -xJ -uU -yD -TF -TF -TF -TF -va -CY -rv -rv -rv -rv -rv -rv -rv -rv -uX -uX -rv -oO -hO -rv -SE -TF -TF -TF -TF -TF -nw -OE -OE -OE -Aj -Aj -Aj -Aj -OE -OE -OE -OE -OE -JX -Ze -Ze -Ze -OT -OT -OT -OT -OT -fF -Ze -eM -By -Ze -Ze -ss -OT -OT -OT -OT -Ze -Ze -Ze -Ze -Ze -Ze -Kk -OT -OT -OT -fF -Ze -Ze -Ze -Ze -Ze -Ze -OT -OT -OT -OT -kt -"} -(131,1,1) = {" -KU -Ex -Ex -Ex -Ex -GW -Ho -uY -EU -EU -SV -bq -Nb -qa -qa -Ex -Ex -Ex -HB -Ah -CX -EU -EU -Ho -Jr -qa -qa -qa -qa -gr -gr -GO -nT -Rc -Wf -Yw -CX -EU -EU -YU -HB -mi -mi -TF -is -Rz -Vb -Cj -Vb -Zv -bo -WU -it -TF -mi -mi -CT -CT -CT -CT -CT -CT -CT -Mp -Ct -WE -nP -nP -br -TF -TF -mT -TF -TF -TF -TF -qp -TF -TF -TF -TF -TF -XV -zu -YZ -bo -lY -Sz -tC -TF -TF -TF -TF -TF -TF -nw -OE -OE -OE -Aj -Aj -Aj -Aj -OE -OE -OE -OE -Tv -JX -vQ -Ze -BD -OT -OT -OT -OT -OT -OT -Ze -eM -xI -Ze -ss -ss -OT -OT -ss -BD -Ze -Kk -Ze -Ze -vQ -Ze -Ze -OT -OT -Ze -Ze -Ze -Kk -Ze -Ze -Ze -Ze -OT -OT -OT -OT -kt -"} -(132,1,1) = {" -KU -Ex -Ex -Ex -Av -EU -EU -EU -EU -HB -HB -Ex -SV -bq -bq -Ex -Ex -Ex -nT -Yw -CX -EU -EU -EU -SV -Nb -qa -qa -qa -qa -kN -Cq -fe -Vd -KL -KL -AX -EU -EU -EU -Jk -TF -TF -TF -TF -is -XF -rm -rm -FP -Ct -Nk -yD -TF -TF -mi -mi -CT -CT -CT -CT -CT -YZ -zu -Ct -yD -TF -CT -CT -TF -XV -TF -TF -TF -TF -TF -TF -TF -TF -XV -TF -TF -TF -XV -TF -LJ -Nk -Nk -yD -TF -XV -TF -TF -TF -nw -nw -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -OE -OE -JX -Ze -Ze -Ze -OT -OT -OT -Ze -Ze -OT -OT -Ze -eM -By -Ze -ss -ss -ss -ss -ss -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -OT -Ze -Ze -Ze -Ze -Ze -Ze -BD -OT -OT -OT -OT -OT -kt -"} -(133,1,1) = {" -KU -Ex -Ex -Ex -EU -EU -EU -EU -HB -HB -Ex -Ex -Ex -EU -Ho -Ex -Ex -GW -oI -gX -nD -Av -HB -HB -HB -SV -bq -bq -bq -bq -HG -EU -EU -EU -he -Ho -Av -EU -EU -EU -EU -TF -TF -TF -TF -TF -TF -TF -TF -TF -qz -KI -yD -TF -TF -If -mi -mi -Kq -CT -CT -CT -TF -TF -Ct -yD -If -CT -CT -CT -CT -TF -TF -TF -TF -TF -TF -TF -zu -Mp -XV -TF -TF -TF -TF -Ct -Nk -Nk -yD -TF -TF -TF -TF -TF -rX -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -OE -OE -oE -JX -Ze -Ze -Ze -OT -OT -Ze -Kk -Ze -ss -ss -Ze -eM -By -Ze -Ze -ss -ss -ss -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -vQ -MU -Ze -ss -OT -OT -OT -OT -OT -OT -OT -kt -"} -(134,1,1) = {" -KU -Ex -Ex -he -EU -EU -EU -qe -cw -HB -Ex -Ex -GW -EU -EU -Ex -Ex -hi -Yw -CX -Ex -Ex -Ex -HB -HB -HB -EU -EU -EU -EU -EU -Ho -EU -EU -uY -EU -EU -EU -Jk -EU -uY -TF -TF -TF -TF -qp -TF -mi -zu -TF -TF -Ct -vN -xJ -xJ -xJ -xJ -xJ -xJ -xJ -xJ -xJ -xJ -xJ -iz -yD -TF -zu -CT -CT -CT -CT -CT -TF -nw -nw -nw -tb -nw -CT -CT -CT -KE -nw -nw -Ct -Nk -Nk -sM -TF -TF -TF -TF -nw -nw -OE -OE -Aj -Aj -Aj -Aj -OE -OE -OE -OE -JX -JX -Ze -Ze -OT -OT -OT -OT -Ze -Ze -Ze -ss -ss -ss -eM -hL -Ze -Ze -Ze -vy -vy -vy -vy -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -ss -ss -OT -OT -OT -OT -OT -OT -OT -kt -"} -(135,1,1) = {" -KU -Ex -Ex -uY -EU -EU -em -pp -Lw -Ex -Ex -Ex -uY -EU -EU -Ex -vW -wH -gX -nD -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -vW -EU -EU -EU -EU -EU -EU -em -uo -uo -Bi -YU -EU -Mp -TF -zu -CT -CT -CT -mi -mi -mi -mT -qz -nP -nP -nP -nP -nP -nP -nP -nP -nP -nP -nP -ZA -ZA -br -TF -Mp -CT -CT -CT -CT -TF -TF -nw -OE -OE -OE -CT -CT -OE -OE -OE -OE -nw -Ct -Nk -WE -br -TF -nw -nw -nw -nw -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -OE -JX -Cp -Ze -Ze -Kk -OT -OT -OT -OT -BD -Ze -Ze -ss -ss -ss -eM -By -Ze -Ze -vy -vy -qi -qi -vy -Ze -Ze -Ze -Ze -fF -OT -OT -Ze -Ze -Ze -Ze -Ze -ss -ss -ss -OT -ss -OT -OT -OT -OT -kt -"} -(136,1,1) = {" -KU -Ex -Ex -EU -EU -em -aY -qa -qa -Ex -Ex -Ex -EU -EU -EU -EU -EU -Ah -Al -Ex -Ex -he -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ku -EU -HB -HB -EU -em -Eh -qa -qa -Ol -Bi -EU -TF -TF -XV -CT -CT -CT -CT -mi -mi -mi -mi -TF -TF -TF -TF -CT -CT -TF -TF -TF -TF -XV -mi -mi -TF -YZ -CT -CT -CT -Mp -TF -tb -nw -nw -OE -OE -OE -OE -OE -OE -OE -OE -OE -yH -xo -Zc -Rq -xj -nw -mK -OE -OE -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -OE -OE -JX -Ze -Ze -Ze -OT -OT -OT -OT -OT -OT -Ze -Ze -Ze -ss -ss -eM -By -Ze -Ze -ed -qi -qi -qi -tm -Ze -Ze -Ze -Ze -OT -OT -OT -OT -OT -QN -Ze -Ze -Ze -ss -ss -ss -ss -Ze -OT -OT -OT -kt -"} -(137,1,1) = {" -KU -Ex -he -uY -EU -Jr -qa -qa -qa -Ex -Ex -Ex -Ex -YU -EU -EU -EU -Ah -CX -Ho -uY -uY -GW -EU -uY -Ex -Ex -Ex -Ex -Ex -Ex -Ex -HB -HB -iL -gr -qa -qa -qa -Ol -Bi -TF -TF -TF -Mp -CT -CT -CT -CT -CT -CT -mi -TF -TF -TF -CT -CT -CT -qp -TF -TF -mT -TF -mi -Kq -zu -CT -CT -TF -nw -nw -QW -nw -OE -OE -OE -OE -OE -OE -OE -OE -OE -OE -OE -OE -xR -lN -Bf -OE -nw -nw -OE -OE -OE -OE -OE -Aj -Aj -Aj -OE -OE -OE -OE -JX -JX -Ze -vQ -BD -OT -OT -OT -OT -OT -OT -OT -Ze -Ze -Ze -QB -PK -By -MU -Ze -vy -Qm -vy -vy -vy -Ze -Ze -Ze -OT -OT -OT -OT -OT -OT -OT -Ze -Ze -Ze -Ze -Ze -Ze -Kk -Ze -OT -OT -OT -kt -"} -(138,1,1) = {" -KU -Ex -Jk -EU -EU -Jr -Lw -qa -qa -Wb -Ex -Ex -Ex -HB -EU -EU -Ho -zE -nD -EU -em -uo -uo -uo -Bi -EU -Ho -uY -HB -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -FJ -qa -rK -TF -TF -TF -XV -CT -CT -CT -CT -CT -CT -YZ -TF -TF -TF -CT -CT -CT -CT -zu -XV -TF -TF -TF -mi -CT -CT -CT -TF -nw -OE -OE -OE -OE -OE -OE -OE -OE -OE -OE -OE -OE -OE -OE -OE -xR -lN -Bf -OE -OE -OE -OE -OE -OE -Aj -Aj -Aj -Aj -OE -OE -OE -OE -vP -vP -Ze -Ze -Ze -OT -OT -BD -Ze -OT -OT -OT -OT -Ze -vQ -Ze -eM -oJ -fg -OT -OT -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -OT -OT -BD -Ze -Ze -vy -vy -vy -Qm -BD -Ze -Ze -Ze -Ze -Ze -OT -OT -OT -kt -"} -(139,1,1) = {" -KU -Ex -uh -uo -Bi -SV -Nb -qa -Ex -Ex -Ex -Ex -Ex -HB -HB -HB -HB -EU -Av -IM -Eh -qa -qa -qa -Ol -rI -EU -EU -HB -HB -Ho -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -TF -TF -mT -TF -TF -TF -CT -CT -CT -CT -TF -TF -TF -TF -CT -CT -CT -CT -CT -TF -TF -TF -TF -TF -CT -CT -TF -nw -nw -OE -OE -OE -OE -OE -OE -Aj -Aj -Aj -Aj -Aj -Aj -Aj -Aj -Aj -Nc -OS -Bf -OE -OE -OE -OE -Aj -Aj -Aj -Aj -Aj -OE -OE -OE -OE -OE -JX -Ze -Ze -OT -OT -OT -OT -Ze -Ze -Ze -OT -OT -Ze -Ze -vQ -Ze -eM -Ir -OT -OT -OT -Ze -MU -Ze -ss -ss -ss -ss -OT -OT -Ze -Ze -Kk -vy -vy -qi -qi -vy -Ze -by -MU -Ze -Ze -Ze -Ze -OT -OT -kt -"} -(140,1,1) = {" -KU -Ex -Od -qa -gZ -Bi -Jr -qa -Ex -Ex -Ex -Ex -GW -HB -HB -Ex -Ex -Ex -Ex -Ex -FJ -Lw -qa -qa -gr -GO -YU -EU -EU -EU -EU -EU -he -he -GW -HB -Ex -Ex -Ex -Ex -Ex -XV -TF -TF -Vr -TF -TF -TF -CT -CT -TF -TF -TF -TF -TF -TF -CT -CT -CT -CT -CT -CT -YZ -TF -TF -TF -TF -nw -tb -OE -OE -OE -OE -OE -OE -Aj -Aj -Aj -Aj -Aj -Aj -Aj -Aj -Aj -Aj -Ki -tt -Lh -Aj -Aj -Aj -Aj -Aj -Aj -Aj -Aj -OE -OE -OE -OE -JX -Cp -JX -Ze -OT -OT -OT -OT -QN -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -eM -By -OT -OT -OT -OT -OT -OT -OT -ss -wV -OT -OT -OT -Ze -Ze -Ze -vy -qi -qi -qi -vy -MU -Ze -Ze -Ze -Ze -Ze -Ze -QN -OT -kt -"} -(141,1,1) = {" -KU -Ex -Qd -qa -qa -Af -SV -rO -Ex -Ex -Ex -Ho -DG -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -GW -EU -EU -em -uo -uh -uo -Bi -HB -HB -HB -Ex -Ex -Ex -Mp -XV -TF -GJ -hk -hk -hk -Sb -TF -TF -TF -GJ -hk -hk -Sb -TF -TF -CT -CT -CT -CT -TF -TF -TF -TF -TF -rX -OE -OE -OE -OE -OE -Aj -Aj -Aj -Aj -Aj -Aj -Aj -Aj -Aj -Aj -Aj -Aj -Nc -OS -Iw -Aj -Aj -Aj -Aj -Aj -Aj -OE -OE -OE -OE -OE -JX -JX -Ze -Ze -Ze -OT -OT -Ze -Ze -Ze -Ze -Ze -Ze -Ze -MU -Ze -Ze -Ze -wy -eM -By -Ze -BD -OT -OT -OT -OT -OT -OT -ss -OT -OT -OT -OT -OT -vQ -vy -vy -ZX -vy -vy -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -OT -kt -"} -(142,1,1) = {" -KU -Ex -qa -qa -qa -Af -EU -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -qa -yU -uY -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -he -EU -Jr -qa -qa -qa -Af -EU -YU -HB -HB -EU -Ho -TF -TF -TF -Vw -Vb -Vb -Vb -aV -Sb -TF -GJ -Kl -Vb -Vb -Zv -TF -TF -TF -CT -CT -CT -TF -TF -TF -nw -nw -nw -OE -OE -OE -OE -Aj -Aj -Aj -Aj -Aj -Aj -OE -OE -OE -OE -OE -OE -OE -xR -lN -Bf -Aj -Aj -Aj -OE -OE -OE -OE -OE -OE -OE -OE -JX -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -by -Ze -Ze -Ze -Ze -cg -Ze -Ze -eM -By -Ze -OT -OT -OT -OT -OT -OT -OT -ss -ss -ss -OT -OT -OT -OT -OT -Ze -Ze -Ze -Ze -Ze -Ze -fF -Ze -Ze -Ze -Ze -Ze -OT -kt -"} -(143,1,1) = {" -KU -Ex -qa -qa -Sg -Az -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -FJ -rK -EU -HB -Ex -Ex -Ex -GW -he -Ex -Ex -Ex -vW -uY -Jr -qa -Qd -Ex -Ex -uY -EU -EU -EU -EU -EU -TF -TF -mi -CT -CT -CT -fb -Vb -Zv -TF -zK -Vb -Vb -Vb -Zv -TF -TF -TF -TF -TF -TF -TF -TF -TF -nw -OE -OE -OE -OE -OE -Aj -Aj -Aj -Aj -Aj -OE -OE -OE -OE -OE -OE -OE -OE -OE -xR -lN -Bf -OE -OE -OE -OE -OE -OE -OE -EV -RE -RE -RE -JX -BD -Ze -Ze -vQ -QB -VH -VH -VH -VH -VH -VH -HA -Ze -Ze -Ze -Ze -Ze -Ze -eM -By -OT -OT -OT -Ze -Ze -BD -OT -OT -OT -OT -ss -ss -OT -OT -OT -OT -OT -Ze -Ze -Ze -Ze -Ze -Ze -vQ -Ze -MU -Ze -Ze -OT -kt -"} -(144,1,1) = {" -KU -Ex -rO -bq -HG -EU -Ex -Ex -Ex -Ex -Ex -Ex -Qd -qa -qa -qa -qa -Af -uY -HB -HB -HB -HB -HB -EU -EU -Ex -Ex -Ex -EU -SV -Nb -qa -Ex -Ex -Ex -uY -EU -EU -EU -EU -TF -mi -CT -CT -CT -CT -CT -CT -CT -TF -zK -Vb -Vb -Md -FP -TF -TF -TF -mi -mi -mi -TF -TF -TF -nw -OE -OE -OE -OE -Aj -Aj -Aj -Aj -Aj -OE -OE -OE -OE -OE -OE -JX -JX -JX -OE -xR -lN -Bf -OE -OE -OE -OE -OE -RE -RE -RE -RE -ss -ss -ss -Kk -Ze -Ze -Ze -eM -oJ -IF -IF -Vv -Vv -HE -JY -VH -VH -VH -VH -VH -HA -eM -By -OT -OT -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -MU -OT -OT -Ze -Ze -Ze -Ze -Ze -Ze -QB -VH -VH -VH -VH -OT -kt -"} -(145,1,1) = {" -KU -Ex -uY -EU -EU -EU -Ex -Ex -Ex -Wb -FJ -Od -qa -qa -qa -Sg -bq -HG -uY -Ho -EU -HB -HB -EU -EU -YU -EU -Ex -Ex -GW -EU -Jr -qa -qa -Ex -Ex -vW -uY -EU -EU -EU -mi -mi -CT -CT -CT -CT -CT -CT -CT -TF -is -rm -rm -FP -TF -qp -TF -TF -mi -mi -mi -mi -TF -nw -nw -OE -OE -OE -Aj -Aj -Aj -Aj -Aj -OE -OE -OE -OE -OE -JX -JX -JX -Ze -Cp -JX -bV -lN -Bf -OE -OE -OE -JX -JX -RE -ss -ss -ss -OT -OT -OT -Ze -Ze -Ze -QN -eM -By -Ze -Uu -OT -OT -mu -IF -ZM -IF -IF -IF -Pr -JY -uE -JY -VH -VH -VH -VH -Pi -VH -VH -VH -rG -VH -VH -VH -Pi -VH -VH -VH -VH -VH -rG -VH -VH -VH -rG -PK -oJ -IF -ZM -IF -OT -kt -"} -(146,1,1) = {" -KU -Ex -Ho -EU -EU -EU -YU -Jr -qa -qa -qa -qa -qa -Sg -bq -HG -EU -EU -EU -Ho -EU -EU -EU -EU -em -uo -uo -uo -Bi -EU -EU -SV -Nb -FJ -Ex -Ex -Ex -EU -EU -EU -EU -mi -mi -CT -CT -CT -Mp -CT -CT -YZ -TF -TF -TF -TF -TF -CT -CT -CT -TF -TF -mi -mi -TF -nw -nw -OE -OE -OE -Aj -Aj -Aj -Aj -Aj -OE -OE -OE -OE -OE -OE -qt -Ze -Ze -Kk -Ze -EP -bQ -bQ -bQ -wp -JX -JX -JX -Ze -ss -OT -OT -OT -OT -OT -MU -Ze -Ze -Ze -Ze -eM -By -Ze -Ze -OT -OT -OT -vQ -Ze -Ze -Ze -Ze -Qh -Dv -IF -IF -zZ -IF -IF -IF -Dv -Dv -IF -IF -zZ -IF -IF -IF -IF -Dv -IF -IF -IF -Ky -IF -Dv -IF -IF -IF -IF -fg -Ze -Ze -Ze -OT -kt -"} -(147,1,1) = {" -KU -Ex -nx -EU -uY -EU -EU -SV -bq -ff -qa -gr -kN -Cq -uY -uY -GW -EU -Ex -Ex -vW -GW -EU -IM -Eh -qa -qa -qa -Ol -Bi -Ho -HB -rW -Ex -Ex -Ex -Ex -Ku -EU -EU -EU -TF -mi -mi -mi -TF -XV -XV -TF -TF -TF -TF -TF -CT -CT -CT -CT -CT -CT -YZ -TF -mi -TF -nw -OE -OE -OE -OE -Aj -Aj -Aj -Aj -OE -OE -OE -OE -OE -JX -JX -Tv -BD -Ze -Ze -MU -Ze -eM -qi -JY -VH -VH -VH -VH -rG -VH -VH -rG -VH -VH -VH -VH -VH -VH -VH -VH -PK -By -Ze -Kk -OT -OT -OT -Ze -Ze -Ze -Ze -Ze -fF -Ze -Ze -Ze -Ze -Kk -ss -ss -ss -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -Ze -fF -OT -OT -kt -"} -(148,1,1) = {" -KU -Ex -Ex -uY -he -Ho -EU -uY -uY -Yi -sH -sH -Cq -HB -HB -Ho -Ex -Ex -Ex -Ex -Ex -Ex -Ex -nl -qa -qa -Lw -FJ -qa -Af -HB -HB -Ex -Ex -Ex -Ex -Ex -Ex -EU -EU -Ho -TF -TF -TF -mT -TF -TF -TF -TF -TF -TF -TF -If -CT -CT -CT -CT -CT -CT -CT -TF -TF -nw -nw -OE -OE -OE -Aj -Aj -Aj -Aj -OE -OE -OE -OE -OE -OE -JX -Ze -Ze -by -Ze -Ze -Ze -Ze -Qh -IF -IF -IF -IF -IF -IF -IF -IF -IF -IF -IF -IF -IF -IF -IF -IF -IF -IF -IF -fg -Ze -OT -OT -OT -OT -OT -BD -Ze -Ze -Ze -MU -Ze -Ze -Ze -Ze -Ze -OT -OT -OT -by -BD -Ze -Ze -Ze -OT -OT -OT -fF -Ze -vQ -Ze -Ze -Ze -QN -BD -vQ -Ze -Ze -Ze -OT -OT -OT -OT -kt -"} -(149,1,1) = {" -KU -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -Ex -CT -CT -CT -CT -CT -CT -CT -CT -CT -CT -CT -CT -CT -CT -CT -CT -CT -CT -CT -CT -TF -nw -OE -OE -OE -Aj -Aj -Aj -Aj -Aj -Aj -OE -OE -OE -JX -JX -Cp -MU -Ze -Ze -Ze -vQ -Uu -Ze -Ze -Ze -MU -OT -OT -OT -Ze -QN -BD -Ze -Ze -Ze -by -OT -OT -OT -Uu -Ze -Ze -Ze -vQ -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -OT -kt -"} -(150,1,1) = {" -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -ht -ht -ht -ht -ht -ht -ht -ht -ht -ht -ht -ht -ht -ht -ht -ht -ht -ht -ht -ht -ht -ht -Un -Un -Un -Un -Un -Un -Un -Un -Un -Un -Un -Un -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -kt -"} diff --git a/_maps/map_files/Campaign maps/nt_base/nt_base.dmm b/_maps/map_files/Campaign maps/nt_base/nt_base.dmm deleted file mode 100644 index 188c5800e82..00000000000 --- a/_maps/map_files/Campaign maps/nt_base/nt_base.dmm +++ /dev/null @@ -1,71870 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/obj/structure/cargo_container/gorg, -/obj/item/clothing/head/flatcap{ - pixel_y = 16 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"aai" = ( -/obj/effect/turf_decal/tile/full/black, -/obj/effect/turf_decal/tile/full/black, -/obj/effect/abstract/tele_blocker, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/c_block/mining) -"aaz" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/east_central_street) -"aaJ" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/mining) -"aba" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"abc" = ( -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"abi" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"abl" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/corpo) -"abn" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/obj/effect/ai_node, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/security) -"abp" = ( -/turf/closed/shuttle/dropship2/engineone{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"abH" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/bridges) -"abN" = ( -/obj/machinery/suit_storage_unit{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"acc" = ( -/obj/machinery/miner/damaged, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"acn" = ( -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/freezer, -/area/gelida/indoors/a_block/dorms) -"acD" = ( -/turf/closed/shuttle/dropship2/engine_sidealt{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"acH" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6 - }, -/area/gelida/indoors/a_block/admin) -"acL" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 5 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"ada" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_west_street) -"adr" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/central_streets) -"adF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges) -"adN" = ( -/obj/structure/table/mainship, -/obj/machinery/recharger{ - pixel_y = 2 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"adP" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"aeh" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/lone_buildings/storage_blocks) -"aet" = ( -/obj/item/clothing/head/beret/sec/hos, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"aeE" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/central_streets) -"aeG" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"aeS" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"aeW" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_east_street) -"aeX" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 11; - pixel_y = 25 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/east_central_street) -"aeZ" = ( -/obj/item/storage/briefcase{ - pixel_y = 1 - }, -/obj/item/storage/briefcase{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/cavestructuretwo) -"afm" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"agw" = ( -/obj/item/ammo_magazine/rifle/ar11{ - current_rounds = 0 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/nw_rockies) -"ahh" = ( -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "West LZ Storage"; - name = "Emergency Lockdown" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/lone_buildings/storage_blocks) -"ahN" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/fitness) -"ahO" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"aiH" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"aiO" = ( -/turf/open/floor/prison/plate, -/area/gelida/landing_zone_2) -"aiY" = ( -/obj/effect/spawner/random/engineering/wood, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"ajc" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/inflatable/wall{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"ajh" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/turf_decal/warning_stripes/thin, -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"ajE" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/executive) -"ajP" = ( -/obj/effect/spawner/random/engineering/structure/tank/fuelweighted, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"ajV" = ( -/obj/structure/inflatable/wall, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"ake" = ( -/turf/closed/shuttle/dropship2/rearcorner{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"akm" = ( -/turf/open/floor/prison/darkpurple{ - dir = 5 - }, -/area/gelida/indoors/a_block/dorms) -"akT" = ( -/obj/item/stack/medical/heal_pack/gauze, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"alh" = ( -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/scalpel, -/obj/structure/table/reinforced/prison, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"all" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall, -/area/gelida/landing_zone_2) -"alr" = ( -/turf/open/floor/plating, -/area/shuttle/drop2/gelida) -"amo" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/hallway) -"amJ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "lv_gym_1"; - name = "treadmill" - }, -/obj/machinery/conveyor_switch{ - id = "lv_gym_1"; - name = "treadmill switch"; - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"amW" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall/r_wall/unmeltable, -/area/gelida/landing_zone_2) -"amY" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/freezer, -/area/gelida/indoors/a_block/dorms) -"ann" = ( -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"anJ" = ( -/obj/structure/bed{ - dir = 5; - name = "bedroll" - }, -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"anL" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"aob" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/fitness) -"aof" = ( -/obj/structure/prop/vehicle/truck/destructible{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"aol" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/medical) -"aoC" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/item/shard, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"aoE" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_street) -"aoT" = ( -/obj/item/trash/mre, -/obj/effect/ai_node, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"aoU" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/south_west_street) -"aoZ" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"apw" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"apA" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/cavestructuretwo) -"apC" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/landing_zone_1) -"apR" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"aqM" = ( -/obj/structure/closet/secure_closet/miner, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"arf" = ( -/obj/effect/spawner/random/weaponry/explosive/plastiqueexplosive, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/west_caves) -"arF" = ( -/obj/structure/holohoop{ - dir = 4; - id = "lvbasketball"; - side = "left" - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/effect/turf_decal/warning_stripes, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"arL" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/fitness) -"arM" = ( -/obj/structure/rack/nometal, -/obj/item/clothing/under/colonist, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"ast" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/lone_buildings/chunk) -"asu" = ( -/turf/closed/shuttle/dropship2/enginefive{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"asD" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"asG" = ( -/obj/structure/rack/nometal, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_forecon/landing_zone_4) -"asK" = ( -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"asR" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"atx" = ( -/obj/effect/spawner/random/engineering/fuelcell{ - pixel_x = 3; - pixel_y = 15 - }, -/obj/effect/spawner/random/engineering/fuelcell{ - pixel_x = -10; - pixel_y = 18 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"atL" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"atX" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/cavestructuretwo) -"atY" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"atZ" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - pixel_y = 7 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"auC" = ( -/obj/structure/table/mainship, -/obj/machinery/faxmachine, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"auH" = ( -/obj/machinery/atm{ - pixel_y = 32 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"auK" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"auP" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"auR" = ( -/obj/structure/table/fancywoodentable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"auS" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_1) -"avl" = ( -/obj/effect/landmark/start/job/xenomorph, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"avE" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"avJ" = ( -/turf/open/floor/plating, -/area/gelida/landing_zone_forecon/landing_zone_4) -"avL" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/condiment/saltshaker, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 9 - }, -/obj/item/tool/kitchen/tray{ - pixel_y = 3 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"avQ" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"awx" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_forecon/landing_zone_4) -"awA" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"awM" = ( -/obj/effect/decal/cleanable/blood, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"awQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/cavestructuretwo) -"awU" = ( -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_street) -"axf" = ( -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/landing_zone_2) -"axk" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"axl" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"axm" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/fitness) -"ayK" = ( -/obj/structure/cargo_container, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"azo" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/prop/mainship/gelida/propserver, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"azA" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/bridge) -"azI" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 19 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 19 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"azN" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/w_rockies) -"azU" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"aAk" = ( -/obj/effect/spawner/random/medical/heal_pack/bruteweighted, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"aAs" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"aAA" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"aAO" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/south_street) -"aAW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"aBu" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"aBZ" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/cavestructuretwo) -"aDi" = ( -/obj/machinery/floodlight/colony, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_street) -"aDk" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/landing_zone_2) -"aDu" = ( -/obj/machinery/photocopier, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"aDM" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"aEa" = ( -/turf/closed/wall/r_wall, -/area/gelida/indoors/a_block/kitchen) -"aEI" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/obj/effect/ai_node, -/turf/open/floor/freezer, -/area/gelida/indoors/a_block/dorms) -"aEZ" = ( -/obj/structure/table/mainship, -/obj/item/clothing/gloves/heldgloves/boxing/blue, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"aFa" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_forecon/landing_zone_4) -"aFc" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/prop/mainship/gelida/smallwire, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"aFq" = ( -/obj/machinery/power/apc/drained, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/bridges) -"aGf" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/turf_decal/warning_stripes/stripedsquare/tile/border, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/b_block/bridge) -"aGG" = ( -/obj/structure/table/reinforced/prison, -/obj/machinery/prop/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"aGI" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"aHb" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/east_central_street) -"aHo" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/bottle/davenport{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"aHQ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"aHR" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/blue, -/area/gelida/indoors/a_block/admin) -"aHZ" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/cavestructuretwo) -"aIf" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/secureweighted, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"aIq" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkpurple{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"aJe" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"aJl" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"aKo" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/north_street) -"aKv" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/op_centre) -"aKK" = ( -/obj/structure/cable, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"aKP" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/secureweighted, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_street) -"aLd" = ( -/obj/structure/table/mainship, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 11 - }, -/obj/item/ashtray/bronze{ - pixel_x = -6; - pixel_y = 13 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"aLl" = ( -/obj/structure/cargo_container/horizontal, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"aLs" = ( -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/b_block/hydro) -"aLv" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"aLN" = ( -/obj/machinery/door/airlock/mainship/generic{ - name = "\improper Bedroom" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"aLW" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"aLX" = ( -/obj/effect/spawner/random/misc/structure/curtain, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/executive) -"aMR" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/turf/open/floor/prison, -/area/gelida/landing_zone_2) -"aNg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"aNR" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"aOd" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"aOj" = ( -/obj/machinery/microwave, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"aOl" = ( -/obj/structure/bed/chair/sofa/corsat/verticalmiddle, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"aOL" = ( -/obj/machinery/bodyscanner, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"aOQ" = ( -/obj/effect/spawner/random/misc/structure/curtain, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"aPl" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/lone_buildings/storage_blocks) -"aPA" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/engineering/metal, -/obj/effect/spawner/random/engineering/metal, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"aPS" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/prison/cleanmarked, -/area/gelida/cavestructuretwo) -"aPZ" = ( -/obj/structure/reagent_dispensers/beerkeg{ - pixel_x = 5 - }, -/obj/structure/reagent_dispensers/beerkeg{ - pixel_x = -8; - pixel_y = -5 - }, -/obj/structure/reagent_dispensers/beerkeg{ - pixel_x = -3; - pixel_y = 12 - }, -/obj/machinery/light, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"aQf" = ( -/obj/structure/filingcabinet{ - pixel_x = -7; - pixel_y = 19 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 8; - pixel_y = 19 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"aQm" = ( -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "map_corpo"; - name = "Emergency Blast Door"; - use_power = 0 - }, -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "map_corpo2"; - name = "Emergency Blast Door"; - use_power = 0 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/corpo) -"aQq" = ( -/obj/structure/prop/mainship/gelida/powerccable, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/outdoors/colony_streets/central_streets) -"aQt" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"aQN" = ( -/obj/structure/table/mainship, -/obj/machinery/faxmachine, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"aQU" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 17 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"aRh" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/structure/prop/mainship/gelida/smallwire, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"aRp" = ( -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"aRy" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"aRC" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/fitness) -"aRF" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"aSf" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"aSG" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"aSI" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -8; - pixel_y = 7 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"aSN" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/shuttle/dropship2/walltwo/alt, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"aSY" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"aTr" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_east_street) -"aTD" = ( -/obj/effect/spawner/random/engineering/structure/tank/fuelweighted, -/turf/open/floor/prison/plate, -/area/gelida/landing_zone_2) -"aTH" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"aUc" = ( -/obj/item/shard, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/east_central_street) -"aUe" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"aUl" = ( -/obj/machinery/landinglight/lz1{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"aUn" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/snacks/pizzapasta/mushroompizzaslice, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"aVe" = ( -/turf/open/shuttle/dropship/four, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"aVM" = ( -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges) -"aVO" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/engineering/toolbox, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"aWg" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/snacks/cheesyfries, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"aWz" = ( -/obj/structure/table/mainship, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"aWS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/cavestructuretwo) -"aWU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"aXd" = ( -/obj/item/shard, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"aXn" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"aXw" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/turf/open/floor/prison/whitegreen, -/area/gelida/indoors/a_block/medical) -"aXx" = ( -/obj/structure/stairs/corner_seamless, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_street) -"aXD" = ( -/obj/effect/spawner/random/engineering/ore_box, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"aXK" = ( -/obj/structure/janitorialcart, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"aYf" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/engineering/metal, -/obj/item/ore/uranium, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"aYh" = ( -/obj/machinery/vending/coffee{ - pixel_x = 11; - pixel_y = 16 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"aYv" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 7; - pixel_y = 16 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"aZg" = ( -/obj/structure/prop/vehicle/crane/destructible, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"aZi" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"aZn" = ( -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/bridges/corpo) -"aZq" = ( -/obj/structure/table/reinforced/prison, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/tool/pen/blue, -/obj/item/flashlight/lamp{ - pixel_x = -9; - pixel_y = 10 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"aZw" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/mining) -"aZC" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -13 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"aZE" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"aZV" = ( -/turf/open/floor/mainship/black/full, -/area/gelida/outdoors/rock) -"aZY" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/caves/east_caves/garbledradio) -"baa" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_east_street) -"bay" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 5 - }, -/turf/open/shuttle/dropship/three, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"baD" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"bbm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"bbn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/mainship, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"bbB" = ( -/obj/structure/table/gamblingtable, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"bbF" = ( -/obj/structure/cargo_container/ch_red{ - dir = 1 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"bbI" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"bbO" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"bbT" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"bcy" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"bcB" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/caves/central_caves/garbledradio) -"bcH" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"bcK" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/admin) -"bcO" = ( -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"bcQ" = ( -/obj/machinery/light, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"bcR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"bcV" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_forecon/landing_zone_4) -"bdf" = ( -/obj/structure/coatrack{ - pixel_x = -7; - pixel_y = 24 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/shard, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/garage) -"bdo" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/black/full, -/area/gelida/landing_zone_2) -"bdq" = ( -/obj/structure/table/mainship, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = -10; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/snacks/soup/wishsoup, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = 10; - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"bdt" = ( -/obj/structure/rack/nometal, -/obj/item/storage/holster/flarepouch/full, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"bdC" = ( -/obj/structure/flora/ausbushes/grassybush{ - pixel_y = 7 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"bdV" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/prison/blue, -/area/gelida/indoors/a_block/hallway) -"bed" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"bem" = ( -/obj/machinery/door/poddoor/shutters/mainship{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/stripedsquare/tile/border, -/turf/open/floor/mainship/stripesquare, -/area/gelida/cavestructuretwo) -"beU" = ( -/turf/closed/mineral/smooth/darkfrostwall, -/area/gelida/caves/central_caves/garbledradio) -"beW" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"bfa" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"bfd" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/hallway) -"bfn" = ( -/obj/effect/spawner/gibspawner/human, -/obj/effect/ai_node, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"bfw" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bridge) -"bfA" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"bfK" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"bfU" = ( -/obj/structure/table/mainship, -/obj/machinery/recharger, -/obj/item/flash, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"bgd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cleanmarked, -/area/gelida/cavestructuretwo) -"bgH" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/barricade/wooden{ - dir = 8; - pixel_y = 13 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"bgZ" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"bhj" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/structure/closet/crate, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"bhm" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"bhE" = ( -/turf/closed/shuttle/dropship2/fins, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"bhU" = ( -/obj/machinery/floodlight/colony{ - pixel_y = 6 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"bic" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/cavestructuretwo) -"bid" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"bie" = ( -/obj/structure/cargo_container{ - dir = 4 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"bif" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/hallway) -"bim" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"biR" = ( -/obj/structure/table/mainship, -/obj/item/newspaper, -/obj/effect/spawner/random/misc/folder/nooffset, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"bjn" = ( -/obj/machinery/door/poddoor/shutters/mainship{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/stripedsquare/tile/border, -/turf/open/floor/mainship/stripesquare, -/area/gelida/cavestructuretwo) -"bjt" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/fitness) -"bjN" = ( -/obj/structure/cargo_container/horizontal{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"bjS" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"bjT" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"bka" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_street) -"bkG" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"bkL" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/nw_rockies) -"bkP" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 5 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/rock) -"bkU" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"bkX" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"bll" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"bln" = ( -/turf/closed/shuttle/dropship2/finright{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"blx" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"blP" = ( -/obj/structure/stairs/seamless/platform{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"blU" = ( -/obj/structure/table/mainship, -/obj/item/flashlight/lamp{ - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/landing_zone_2) -"bmp" = ( -/obj/structure/holohoop{ - pixel_y = 27 - }, -/obj/item/toy/beach_ball/holoball{ - pixel_x = 9; - pixel_y = -11 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"bmB" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/item/tool/weldingtool, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"bmM" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"bna" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"bnc" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/cellstripe, -/area/gelida/cavestructuretwo) -"boo" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"bor" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"boA" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/cargo) -"boI" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"boM" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/c_block/cargo) -"boN" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"bpg" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/structure/girder/displaced, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"bpm" = ( -/obj/effect/spawner/random/medical/firstaid, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"bpw" = ( -/obj/structure/table/mainship, -/obj/item/toy/blink{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/item/toy/deck, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"bpY" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"bqb" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"bqh" = ( -/obj/effect/spawner/random/medical/structure/ivdrip, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"bqw" = ( -/obj/structure/bed/chair/sofa/corsat/verticalmiddle, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"bqS" = ( -/obj/item/tool/kitchen/knife/ritual, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"bsh" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"bsm" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/b_block/bridge) -"bsn" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/blood/oil, -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"bsq" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"bss" = ( -/obj/structure/table/mainship, -/obj/item/clothing/gloves/heldgloves/boxing{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/clothing/gloves/heldgloves/boxing/blue{ - pixel_x = 5; - pixel_y = -6 - }, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"bsT" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"btm" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"btp" = ( -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"buA" = ( -/obj/effect/turf_decal/tile/full/black, -/obj/effect/turf_decal/tile/full/black, -/obj/effect/turf_decal/tile/full/black, -/obj/effect/abstract/tele_blocker, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/c_block/mining) -"buS" = ( -/obj/item/shard, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/c_block/cargo) -"buY" = ( -/obj/structure/table/mainship, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 6 - }, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"bva" = ( -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/prison/blue{ - dir = 4 - }, -/area/gelida/indoors/a_block/admin) -"bvn" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_street) -"bvF" = ( -/obj/structure/table/fancywoodentable, -/obj/item/reagent_containers/food/drinks/flask/detflask{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/clothing/head/det_hat, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/security) -"bvM" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/east_central_street) -"bvQ" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_east_street) -"bvX" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"bvZ" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"bwm" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/tool/pen/red, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"bwC" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"bwG" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/item/tool/pen/blue{ - pixel_x = 6 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"bwJ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"bwU" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/platebot, -/area/gelida/indoors/c_block/cargo) -"bxh" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/enzyme, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"bxz" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"bxF" = ( -/obj/structure/cargo_container/horizontal{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"byj" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/garage) -"byY" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"bzf" = ( -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"bAb" = ( -/obj/machinery/computer/security/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - name = "Television set"; - network = null; - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/table/mainship, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"bAg" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"bAh" = ( -/obj/machinery/newscaster, -/turf/closed/wall, -/area/gelida/cavestructuretwo) -"bBz" = ( -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_street) -"bBU" = ( -/obj/machinery/door/airlock/mainship/engineering{ - name = "\improper Workshop Storage" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/corpo) -"bBV" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/east_central_street) -"bCa" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/obj/structure/platform, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"bCu" = ( -/turf/closed/shuttle/dropship2/aisle, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"bCz" = ( -/obj/structure/flora/ausbushes/sunnybush{ - pixel_y = 15 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"bCC" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_street) -"bDb" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "checkpoint2" - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"bDp" = ( -/turf/closed/wall/r_wall, -/area/gelida/outdoors/colony_streets/north_west_street) -"bDq" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall/r_wall/unmeltable, -/area/gelida/landing_zone_2) -"bDR" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/liquid/water/river, -/area/gelida/indoors/a_block/fitness) -"bDW" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/corpo) -"bEA" = ( -/obj/item/weapon/gun/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911{ - current_rounds = 4 - }, -/obj/item/limb/l_arm{ - pixel_x = -4; - pixel_y = 10 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"bEG" = ( -/obj/item/shard, -/obj/item/stack/rods, -/obj/structure/window_frame/colony, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"bFH" = ( -/obj/structure/table/mainship, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - name = "synthethic potted plant"; - pixel_x = -2; - pixel_y = 16 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"bFN" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"bGr" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/landing_zone_1) -"bGu" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 11; - pixel_y = 25 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"bGB" = ( -/obj/machinery/washing_machine{ - pixel_y = 15 - }, -/obj/machinery/washing_machine{ - pixel_y = 29 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"bGC" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/garden) -"bHd" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"bHe" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"bHg" = ( -/obj/structure/closet, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"bHD" = ( -/obj/structure/table/mainship, -/obj/item/storage/belt/utility/full, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"bHK" = ( -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"bHO" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/cargo) -"bIi" = ( -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/lone_buildings/chunk) -"bIF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"bJb" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/food_or_drink/burger, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"bJh" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves/garbledradio) -"bJk" = ( -/obj/effect/turf_decal/warning_stripes/thick, -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"bJl" = ( -/obj/effect/spawner/random/engineering/technology_scanner, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"bJC" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/kitchen) -"bJS" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorm_north) -"bJY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"bKB" = ( -/obj/structure/prop/vehicle/van/destructible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"bKO" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/gelida/indoors/c_block/cargo) -"bLc" = ( -/obj/structure/bed/chair/sofa/corsat/verticalmiddle, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"bLf" = ( -/obj/machinery/miner/damaged, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/east_central_street) -"bLh" = ( -/obj/structure/table/mainship, -/obj/item/restraints/handcuffs{ - pixel_y = 12 - }, -/obj/item/restraints/handcuffs{ - pixel_y = 6 - }, -/obj/item/restraints/handcuffs, -/obj/item/weapon/baton{ - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"bLJ" = ( -/obj/structure/prop/vehicle/truck/destructible, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_street) -"bMh" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/toolbox, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/plating, -/area/gelida/powergen) -"bMA" = ( -/turf/open/shuttle/dropship/five, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"bML" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/darkpurple{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"bMU" = ( -/obj/structure/table/reinforced/prison, -/obj/machinery/prop/computer/PC{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/garage) -"bNd" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_east_street) -"bNm" = ( -/turf/closed/shuttle/dropship2/wallthree/alt, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"bNr" = ( -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/turf/open/floor/freezer, -/area/gelida/indoors/a_block/dorms) -"bNC" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorm_north) -"bNL" = ( -/obj/structure/flora/ausbushes/sunnybush{ - pixel_y = 10 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"bNM" = ( -/obj/machinery/door/poddoor/shutters/mainship{ - dir = 1; - id = "Sec-North-Lockdown" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/security) -"bNN" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"bNT" = ( -/obj/effect/ai_node, -/turf/open/floor/tile/dark2, -/area/gelida/indoors/c_block/mining) -"bNU" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = -6 - }, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"bNZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"bOD" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/nw_rockies) -"bOU" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"bOW" = ( -/obj/item/flashlight/lamp{ - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"bPq" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"bPx" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"bPy" = ( -/turf/closed/shuttle/dropship2/fins{ - dir = 5 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"bPK" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"bPQ" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tracks/wheels/bloody{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/executive) -"bPS" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"bQz" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"bQE" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"bQY" = ( -/obj/effect/turf_decal/warning_stripes/thick, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"bRr" = ( -/obj/structure/table/mainship, -/obj/item/grown/nettle/death{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/seeds/glowshroom, -/obj/item/seeds/glowshroom{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"bRH" = ( -/obj/structure/table/fancywoodentable, -/obj/item/storage/fancy/cigar{ - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"bRK" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"bRU" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 5 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"bSO" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/flask/marine, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"bSY" = ( -/obj/machinery/door_control{ - id = "mining_secure_blast_1"; - name = "Blast Door Control" - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/lone_buildings/storage_blocks) -"bTj" = ( -/obj/structure/rack/nometal, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"bUe" = ( -/obj/structure/stairs/corner_seamless, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_street) -"bUf" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "lv_gym_1"; - name = "treadmill" - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"bUi" = ( -/obj/item/shard, -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/corpo) -"bUA" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"bUL" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"bUO" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 8 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"bVu" = ( -/obj/structure/closet/coffin, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"bVK" = ( -/turf/closed/wall/r_wall{ - dir = 6 - }, -/area/gelida/outdoors/rock) -"bVM" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/toolbox, -/obj/effect/spawner/random/engineering/tool{ - pixel_y = -3 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"bVQ" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"bWI" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bridge) -"bWQ" = ( -/obj/structure/flora/ausbushes/reedbush{ - pixel_y = 10 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"bXk" = ( -/obj/structure/window_frame/colony, -/obj/effect/spawner/random/misc/shard, -/obj/machinery/door/poddoor/shutters/mainship{ - dir = 2 - }, -/turf/open/floor/plating, -/area/gelida/cavestructuretwo) -"bXz" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"bXX" = ( -/obj/machinery/vending/hydronutrients, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"bYd" = ( -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/w_rockies) -"bYp" = ( -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = -12; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"bYr" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"bYC" = ( -/turf/closed/wall, -/area/gelida/indoors/lone_buildings/storage_blocks) -"bYF" = ( -/obj/structure/table/mainship{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"bZj" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 18; - pixel_y = 25 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/east_central_street) -"bZn" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"bZP" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"can" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/n_rockies) -"cas" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"caM" = ( -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"cbj" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"cbw" = ( -/turf/closed/shuttle/dropship2/enginethree{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"cbG" = ( -/turf/closed/shuttle/dropship2/corners{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"cbH" = ( -/obj/machinery/prop/autolathe, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"cbQ" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorm_north) -"cbT" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"cbZ" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/bridge) -"cca" = ( -/obj/structure/closet/crate, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"ccm" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"cct" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5 - }, -/area/gelida/indoors/a_block/hallway) -"ccO" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"cdu" = ( -/obj/item/reagent_containers/hypospray/autoinjector, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/corpo) -"cdP" = ( -/obj/machinery/floodlight, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"cdT" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"cec" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/north_east_street) -"ced" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/south_street) -"cei" = ( -/obj/structure/prop/vehicle/truck/destructible{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_east_street) -"cek" = ( -/obj/machinery/floodlight/colony{ - pixel_y = 9 - }, -/obj/structure/platform{ - dir = 15 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/outdoors/colony_streets/south_west_street) -"cex" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/east_central_street) -"ceI" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/b_block/bridge) -"cfh" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"cfj" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"cfr" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"cfF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"cfG" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"cgn" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"cgx" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/cleanmarked, -/area/gelida/outdoors/colony_streets/north_west_street) -"cgy" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"cgL" = ( -/obj/structure/table/fancywoodentable, -/obj/item/flashlight/lamp/green{ - pixel_x = 3 - }, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"cgQ" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"cgS" = ( -/turf/closed/mineral/smooth/darkfrostwall/indestructible, -/area/gelida/outdoors/rock) -"cgV" = ( -/obj/item/stack/medical/heal_pack/gauze, -/turf/open/floor/prison/blue{ - dir = 8 - }, -/area/gelida/indoors/a_block/admin) -"chg" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/landing_zone_2) -"chk" = ( -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"chr" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9 - }, -/area/gelida/indoors/b_block/bridge) -"chD" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"chO" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"cii" = ( -/obj/structure/table/mainship, -/obj/item/tool/kitchen/tray{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 11; - pixel_y = 7 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"ciW" = ( -/obj/structure/platform_decoration, -/obj/machinery/light, -/turf/open/floor/prison/darkpurple, -/area/gelida/indoors/a_block/dorms) -"cjN" = ( -/obj/structure/table/fancywoodentable, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = -7; - pixel_y = 18 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 18 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = 7; - pixel_y = 18 - }, -/obj/item/storage/fancy/cigar{ - pixel_y = 6 - }, -/obj/item/tool/lighter/zippo{ - pixel_x = 16; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"ckh" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/south_west_street) -"ckG" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"ckU" = ( -/obj/item/shard, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_west_street) -"clc" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/freezer, -/area/gelida/outdoors/colony_streets/south_east_street) -"clZ" = ( -/obj/item/tool/hatchet, -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"cmw" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"cmy" = ( -/obj/effect/ai_node, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"cmE" = ( -/obj/structure/table/mainship, -/obj/item/paper/janitor, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"cmM" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/admin) -"cnw" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_east_street) -"cot" = ( -/obj/structure/table/mainship, -/obj/item/tool/pen{ - pixel_x = -7 - }, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/structure/cable, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/landing_zone_1) -"cpa" = ( -/obj/effect/ai_node, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/east_caves/garbledradio) -"cpg" = ( -/obj/structure/table/mainship{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"cpl" = ( -/obj/item/tool/wrench, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"cpO" = ( -/obj/effect/spawner/random/medical/firstaid, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen{ - dir = 4 - }, -/area/gelida/indoors/a_block/medical) -"cqo" = ( -/obj/structure/cargo_container{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"cqV" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_street) -"crx" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"crF" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/south_west_street) -"crJ" = ( -/obj/vehicle/train/cargo/trolley, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"crY" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/south_west_street) -"csk" = ( -/obj/structure/table/fancywoodentable, -/obj/item/ashtray/bronze{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/machinery/prop/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/security) -"csn" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/central_streets) -"csw" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"csz" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"csL" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/pickaxe, -/obj/effect/spawner/random/engineering/pickaxe, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"csP" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"csU" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 10 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"ctT" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"cug" = ( -/obj/effect/landmark/sensor_tower, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"cuz" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"cuL" = ( -/obj/structure/safe{ - spawnkey = 0 - }, -/obj/item/storage/fancy/cigar, -/obj/item/clothing/head/helmet/marine/veteran/pmc, -/obj/item/coin/diamond, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"cuS" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/north_street) -"cuW" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/landing_zone_1) -"cuY" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"cvi" = ( -/obj/structure/table/mainship, -/obj/item/ashtray/plastic{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/paper/crumpled/bloody{ - pixel_x = -9 - }, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"cvm" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"cvv" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/darkpurple{ - dir = 1 - }, -/area/gelida/indoors/a_block/dorms) -"cwc" = ( -/turf/closed/shuttle/dropship2/interiormisc{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"cwv" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"cwN" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"cwT" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/metal, -/obj/effect/spawner/random/engineering/tool, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"cxg" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/south_street) -"cxq" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/b_block/hydro) -"cxy" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"cxK" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_east_street) -"cxN" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"cxU" = ( -/obj/effect/turf_decal/tile/full/black, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating, -/area/gelida/powergen) -"cyd" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 20 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"cym" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall/r_wall/unmeltable, -/area/gelida/landing_zone_2) -"cyw" = ( -/obj/structure/rack/nometal, -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/lone_buildings/storage_blocks) -"cyB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"cyK" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"cyU" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"czo" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"czt" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"czE" = ( -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/kitchen) -"czN" = ( -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/a_block/admin) -"czO" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/fitness) -"czV" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"cAf" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/hallway) -"cAE" = ( -/obj/item/ammo_magazine/flamer_tank, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"cAR" = ( -/obj/structure/bed{ - dir = 4; - name = "bedroll" - }, -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"cBm" = ( -/obj/structure/table/fancywoodentable, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"cBr" = ( -/obj/structure/table/mainship, -/obj/machinery/faxmachine, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/landing_zone_2) -"cBP" = ( -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = 1; - pixel_y = -6 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"cCj" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"cCx" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/casino) -"cCQ" = ( -/obj/machinery/door_control{ - dir = 1; - id = "checkpoint1" - }, -/turf/open/floor/plating/ground/snow/layer0{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"cCZ" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"cDx" = ( -/turf/open/floor/prison/cleanmarked, -/area/gelida/cavestructuretwo) -"cDL" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"cDN" = ( -/obj/structure/bed{ - pixel_y = -8 - }, -/obj/structure/bed{ - pixel_y = 5 - }, -/obj/effect/decal/cleanable/blood{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"cDO" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/turf/open/floor/prison/whitegreen, -/area/gelida/indoors/a_block/medical) -"cDU" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 10 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/landing_zone_2) -"cDV" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/b_block/bar) -"cEe" = ( -/obj/effect/spawner/random/engineering/wood, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"cEt" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/structure/fence, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"cEu" = ( -/obj/structure/table/reinforced/prison, -/obj/machinery/door/window{ - dir = 2 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"cEW" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/mining) -"cFg" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/blue{ - dir = 8 - }, -/area/gelida/indoors/a_block/admin) -"cFC" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/east_central_street) -"cFE" = ( -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"cFQ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/cargo) -"cFS" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/golden_cup{ - pixel_y = 10 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"cGd" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"cGr" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"cGD" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/effect/ai_node, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"cGI" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/item/tool/kitchen/knife/ritual, -/obj/effect/turf_decal/tracks/wheels/bloody{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"cGW" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"cGY" = ( -/obj/item/stack/rods, -/obj/item/shard, -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/casino) -"cHg" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"cHh" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/turf/open/floor/prison/blue{ - dir = 4 - }, -/area/gelida/indoors/a_block/hallway) -"cHi" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"cHn" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"cHA" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"cHP" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/south_street) -"cIp" = ( -/obj/structure/table/reinforced/prison, -/obj/item/reagent_containers/jerrycan{ - desc = "A jerry can. In space! Or maybe a colony."; - item_state = "caution"; - name = "fuel can"; - pixel_y = 10 - }, -/obj/item/ashtray/bronze{ - pixel_y = -5 - }, -/obj/item/reagent_containers/jerrycan{ - desc = "A jerry can. In space! Or maybe a colony."; - item_state = "caution"; - name = "fuel can"; - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"cIx" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 6 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"cIy" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/cavestructuretwo) -"cIQ" = ( -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/caves/east_caves/garbledradio) -"cJz" = ( -/obj/effect/ai_node, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/garage) -"cJC" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/caves/west_caves/garbledradio) -"cJI" = ( -/turf/closed/shuttle/dropship2/panels{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"cJX" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"cKy" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"cKJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/south_street) -"cKK" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"cKR" = ( -/obj/vehicle/train/cargo/engine{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/landing_zone_1) -"cLe" = ( -/obj/machinery/door_control{ - id = "A-Block-Dorm Shutters"; - pixel_y = 26 - }, -/obj/structure/stairs/seamless/platform{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"cLn" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"cLM" = ( -/obj/effect/turf_decal/warning_stripes/stripedsquare/tile/border, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/b_block/bridge) -"cLQ" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/medical/heal_pack/bruteweighted{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"cLZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/cavestructuretwo) -"cMf" = ( -/obj/structure/window/reinforced, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"cMk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/tile/dark2{ - dir = 8 - }, -/area/gelida/indoors/a_block/executive) -"cMr" = ( -/obj/structure/table/fancywoodentable, -/obj/item/trash/plate, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"cMK" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"cNE" = ( -/obj/machinery/vending/coffee, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"cNO" = ( -/turf/open/floor/prison{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"cNP" = ( -/obj/item/reagent_containers/food/snacks/stewedsoymeat{ - pixel_y = -6 - }, -/obj/item/trash/sosjerky{ - pixel_x = 8; - pixel_y = 12 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"cNS" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/prison/darkpurple{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"cNV" = ( -/obj/structure/closet, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_1) -"cOj" = ( -/obj/structure/table/reinforced/prison, -/obj/effect/spawner/random/engineering/toolbox{ - pixel_y = 6 - }, -/obj/effect/spawner/random/engineering/toolbox, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"cOy" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/bombcloset, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/lone_buildings/storage_blocks) -"cOZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_street) -"cPM" = ( -/turf/open/floor/prison/cellstripe{ - dir = 1 - }, -/area/gelida/cavestructuretwo) -"cQd" = ( -/obj/effect/spawner/random/engineering/pickaxe, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves/garbledradio) -"cQe" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8 - }, -/obj/machinery/computer/intel_computer, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"cQx" = ( -/obj/machinery/washing_machine, -/turf/open/floor/prison/cleanmarked, -/area/gelida/cavestructuretwo) -"cRb" = ( -/obj/item/clothing/mask/cigarette{ - pixel_x = -11; - pixel_y = -5 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"cRs" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/tool{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"cRC" = ( -/obj/structure/table/mainship, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"cRF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_street) -"cRH" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"cRL" = ( -/obj/structure/coatrack{ - pixel_x = 11 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"cRR" = ( -/obj/structure/table/mainship, -/obj/item/seeds/potatoseed{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/item/seeds/potatoseed, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/hydro) -"cSm" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/garden) -"cSE" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"cTh" = ( -/obj/structure/bookcase{ - pixel_y = 16 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"cTo" = ( -/obj/effect/landmark/xeno_tunnel_spawn, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/hydro) -"cTL" = ( -/obj/structure/inflatable/wall, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"cTW" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"cUg" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/structure/cargo_container/green{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"cUp" = ( -/obj/structure/prop/mainship/gelida/rails, -/obj/structure/prop/mainship/gelida/rails{ - dir = 6 - }, -/obj/effect/ai_node, -/turf/open/floor/mainship/black/full, -/area/gelida/outdoors/rock) -"cUw" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 4 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/outdoors/rock) -"cVa" = ( -/obj/structure/table/reinforced/prison, -/obj/effect/spawner/random/medical/firstaid{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/effect/spawner/random/medical/firstaid, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"cVg" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_street) -"cVm" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/hallway) -"cVG" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/bridge) -"cVN" = ( -/obj/structure/table/fancywoodentable, -/obj/item/trash/plate{ - pixel_y = 6 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"cVR" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"cVY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/stairs/seamless, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"cWj" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass, -/area/gelida/indoors/a_block/garden) -"cWH" = ( -/obj/effect/turf_decal/tile/full/black, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/abstract/tele_blocker, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/c_block/mining) -"cWO" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"cWY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"cXu" = ( -/obj/structure/cargo_container/horizontal, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_east_street) -"cXD" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_west_street) -"cXJ" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_east_street) -"cXL" = ( -/turf/closed/shuttle/dropship2/finleft{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"cYd" = ( -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"cYs" = ( -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/op_centre) -"cYv" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5 - }, -/area/gelida/indoors/a_block/dorm_north) -"cYy" = ( -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/prison/blue{ - dir = 6 - }, -/area/gelida/indoors/a_block/admin) -"cYD" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 8; - name = "\improper Dormitories" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/bridges/corpo) -"cYN" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 10 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/central_streets) -"cYU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"cYV" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/b_block/bridge) -"cZn" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"cZq" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"cZL" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"cZN" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_east_street) -"cZX" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"dao" = ( -/obj/effect/spawner/random/engineering/pickaxe, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/west_caves/garbledradio) -"daK" = ( -/obj/machinery/floodlight, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"daN" = ( -/obj/item/weapon/cane, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"daV" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"dbd" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"dbf" = ( -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/ashtray/bronze, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"dbp" = ( -/obj/item/weapon/shield/riot, -/obj/item/weapon/classic_baton, -/obj/structure/rack/nometal, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"dbq" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/stairs/seamless/platform, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"dbK" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"dbM" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"dci" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"dcl" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"dcm" = ( -/obj/structure/closet/secure_closet/detective, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/security) -"dcx" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"dcJ" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_east_street) -"dcN" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"ddh" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"dds" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/north_street) -"ddP" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/w_rockies) -"deg" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"deV" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"dfq" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/structure/prop/mainship/gelida/smallwire, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -8; - pixel_y = 7 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"dfV" = ( -/obj/structure/table/mainship, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/tool/lighter/random{ - pixel_x = -3; - pixel_y = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"dga" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/intel_computer, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"dgr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"dgs" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"dgz" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"dgI" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"dgQ" = ( -/obj/structure/table/fancywoodentable, -/obj/machinery/recharger{ - pixel_y = 1 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"dgS" = ( -/obj/structure/coatrack{ - pixel_x = -6; - pixel_y = 23 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/turf/open/floor/tile/dark2, -/area/gelida/indoors/c_block/mining) -"dgW" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"dhe" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/casino) -"dhv" = ( -/obj/structure/cable, -/obj/structure/girder/reinforced, -/turf/open/floor/plating, -/area/gelida/cavestructuretwo) -"dhx" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/docking_port/stationary/crashmode, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"dia" = ( -/obj/item/trash/plate, -/obj/item/trash/plate{ - pixel_y = 3 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"diw" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/east_central_street) -"diU" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"djd" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorm_north) -"djq" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/effect/decal/cleanable/dirt, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"djy" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/flashlight/lamp{ - pixel_x = 6; - pixel_y = 14 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"djI" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/fitness) -"dkl" = ( -/obj/structure/rack/nometal, -/obj/item/tool/crowbar, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"dkT" = ( -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/cavestructuretwo) -"dkY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/b_block/bridge) -"dli" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/secureweighted, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"dlA" = ( -/obj/structure/flora/ausbushes/stalkybush{ - pixel_y = 13 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"dlB" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"dme" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/effect/ai_node, -/turf/open/floor/freezer, -/area/gelida/indoors/a_block/dorms) -"dmn" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/admin) -"dmt" = ( -/obj/effect/landmark/start/job/xenomorph, -/obj/effect/ai_node, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"dmP" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"dnT" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"dnY" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"doc" = ( -/obj/machinery/prop/computer/PC{ - pixel_y = 5 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"dot" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate{ - pixel_x = 5; - pixel_y = 9 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"doO" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"doQ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/fitness) -"dpl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8 - }, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"dpw" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_street) -"dqj" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"dqk" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/stairs/seamless/platform{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"dqv" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_west_street) -"dqw" = ( -/obj/effect/landmark/start/job/xenomorph, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"dqA" = ( -/obj/structure/cargo_container{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"dqF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"dqK" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"drE" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/north_street) -"drZ" = ( -/obj/structure/table/fancywoodentable, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = -7; - pixel_y = 18 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 18 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = 7; - pixel_y = 18 - }, -/obj/item/storage/fancy/cigar{ - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"dsf" = ( -/obj/structure/cable, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/bridges/corpo) -"dsy" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"dsJ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"dsZ" = ( -/turf/closed/shuttle/dropship2/front{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"dtc" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/metal, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"dtq" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"dtu" = ( -/obj/structure/prop/vehicle/truck/destructible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"dtw" = ( -/obj/effect/acid_hole, -/turf/closed/wall, -/area/gelida/indoors/a_block/medical) -"dtN" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_east_street) -"dtS" = ( -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"dtV" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"dtZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 1 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"duO" = ( -/obj/structure/table/mainship, -/obj/item/book{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/book{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"duV" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"dvJ" = ( -/obj/structure/table/fancywoodentable, -/obj/item/storage/pill_bottle/happy{ - pixel_x = 7; - pixel_y = 17 - }, -/obj/item/spacecash/c100, -/obj/item/storage/pill_bottle/happy{ - pixel_x = 2; - pixel_y = -5 - }, -/obj/item/storage/pill_bottle/happy{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"dvV" = ( -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_street) -"dvX" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"dwh" = ( -/obj/structure/prop/mainship/gelida/barrier, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"dwK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"dxi" = ( -/obj/effect/spawner/random/engineering/structure/tank/fuelweighted, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"dxk" = ( -/obj/structure/largecrate/supply{ - pixel_x = -4 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/bridges/op_centre) -"dxx" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"dxy" = ( -/obj/structure/stairs/corner_seamless, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"dxI" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"dxJ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/gelida/indoors/c_block/bridge) -"dxX" = ( -/obj/effect/spawner/random/weaponry/gun/sidearms, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"dyf" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/landing_zone_1) -"dyh" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"dym" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random, -/area/gelida/indoors/b_block/bridge) -"dzB" = ( -/turf/open/floor/plating, -/area/gelida/indoors/c_block/mining) -"dzD" = ( -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/liquid/water/river, -/area/gelida/indoors/a_block/fitness) -"dzJ" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_east_street) -"dzN" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"dzU" = ( -/turf/closed/shuttle/dropship2/front{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"dzY" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/outdoors/colony_streets/south_east_street) -"dAg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"dAm" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"dAn" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/item/stack/rods, -/turf/open/floor/prison/plate, -/area/gelida/indoors/lone_buildings/storage_blocks) -"dAQ" = ( -/obj/structure/table/fancywoodentable, -/obj/item/flashlight/lamp/green{ - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/tool/kitchen/tray{ - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/casino) -"dBl" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/stripesquare, -/area/gelida/outdoors/w_rockies) -"dBq" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/security) -"dBv" = ( -/obj/machinery/door_control{ - dir = 1; - id = "West LZ Storage" - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"dBw" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"dBD" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"dBM" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9; - pixel_y = 25 - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"dCy" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/gelida/indoors/c_block/casino) -"dCP" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"dCR" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_west_street) -"dCW" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"dDm" = ( -/obj/effect/ai_node, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/shuttle/dropship/three, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"dDo" = ( -/obj/structure/table/mainship, -/obj/machinery/processor{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"dDp" = ( -/obj/structure/rack/nometal, -/obj/item/tool/analyzer, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"dDD" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"dEF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple/full, -/area/gelida/outdoors/colony_streets/north_west_street) -"dEW" = ( -/obj/structure/inflatable/wall{ - dir = 8 - }, -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"dEZ" = ( -/obj/effect/spawner/random/engineering/toolbox, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"dFb" = ( -/obj/item/bananapeel{ - desc = "A bunch of tiny bits of shattered metal."; - name = "piece of shrapnel"; - pixel_x = -6; - pixel_y = -7 - }, -/obj/machinery/light, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"dFu" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"dFv" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"dFD" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"dFT" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"dGC" = ( -/obj/structure/rack/nometal, -/obj/item/clothing/under/colonist, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"dGG" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/ai_node, -/turf/open/floor/freezer, -/area/gelida/indoors/a_block/dorms) -"dGP" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"dGU" = ( -/obj/structure/prop/vehicle/crane/cranecargo/destructible, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"dHe" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 10 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/rock) -"dHh" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/gelida/outdoors/colony_streets/windbreaker) -"dHk" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"dHv" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"dII" = ( -/obj/structure/cargo_container, -/turf/open/floor/prison/cleanmarked, -/area/gelida/cavestructuretwo) -"dIL" = ( -/obj/item/trash/candle{ - pixel_x = 8; - pixel_y = -6 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"dJt" = ( -/obj/item/book/manual/marine_law{ - pixel_x = 7 - }, -/obj/item/book/manual/marine_law{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/book/manual/marine_law{ - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"dJv" = ( -/turf/closed/shuttle/dropship2/engine_sidealt{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"dJW" = ( -/obj/item/ashtray/glass{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = 3; - pixel_y = -5 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"dKd" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"dKf" = ( -/obj/structure/cargo_container{ - dir = 1 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/cavestructuretwo) -"dKD" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"dKG" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"dKQ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"dKU" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/east_central_street) -"dLd" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_east_street) -"dLh" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/b_block/bridge) -"dLu" = ( -/obj/structure/table/fancywoodentable, -/obj/machinery/prop/computer/PC{ - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"dLX" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 20 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jaccuzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - dir = 1; - name = "'Miss July' Pinup"; - pixel_x = -5; - pixel_y = 19; - serial_number = 16 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"dMR" = ( -/obj/item/toy/beach_ball, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"dNb" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"dNw" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"dNR" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"dNS" = ( -/obj/structure/table/mainship, -/obj/item/seeds/bananaseed{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/seeds/berryseed, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"dNT" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/machinery/door_control{ - id = "Sec-Kitchen-Lockdown"; - name = "remote door-control"; - pixel_x = -7; - pixel_y = 9 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"dOl" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"dOq" = ( -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/kitchen) -"dOs" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/west_caves) -"dOA" = ( -/obj/structure/cargo_container{ - dir = 4 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/cavestructuretwo) -"dOO" = ( -/obj/structure/prop/mainship/gelida/propladder, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/corpo) -"dOS" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1; - name = "\improper Westlock" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"dPl" = ( -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_west_street) -"dPm" = ( -/obj/machinery/vending/boozeomat{ - pixel_y = 16 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"dPu" = ( -/obj/machinery/miner/damaged, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"dPy" = ( -/obj/structure/table/mainship{ - flipped = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"dQa" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/east_central_street) -"dQl" = ( -/obj/machinery/light, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/bridges/corpo) -"dQm" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/cavestructuretwo) -"dQX" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - name = "\improper Eastlock" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/hallway) -"dRe" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_street) -"dRq" = ( -/obj/structure/cable, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"dRs" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/bed/chair/comfy/beige, -/obj/structure/cable, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"dRV" = ( -/obj/structure/rack/nometal, -/obj/item/clothing/under/colonist, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"dSF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"dSJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"dTl" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"dTs" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"dTt" = ( -/obj/machinery/vending/cigarette/colony, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"dTA" = ( -/obj/machinery/landinglight/lz1{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"dTL" = ( -/obj/structure/table/mainship{ - dir = 1; - flipped = 1 - }, -/obj/item/shard, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"dUn" = ( -/obj/effect/landmark/start/job/xenomorph, -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"dUt" = ( -/obj/machinery/floodlight, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"dUu" = ( -/obj/structure/closet, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/cavestructuretwo) -"dUC" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"dVf" = ( -/obj/structure/prop/vehicle/crane/destructible, -/obj/effect/spawner/random/engineering/toolbox{ - pixel_y = 16 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"dVm" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = -2; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/rag, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"dVu" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"dVx" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"dVy" = ( -/obj/item/shard, -/obj/machinery/light, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"dVG" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"dVJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"dVL" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"dVX" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/secureweighted, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"dVZ" = ( -/obj/structure/table/mainship{ - flipped = 1 - }, -/obj/machinery/light, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"dWk" = ( -/obj/structure/rack/nometal, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/landing_zone_2) -"dWr" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"dWH" = ( -/obj/structure/table/gamblingtable, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"dWS" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/tile/dark2, -/area/gelida/indoors/c_block/mining) -"dXl" = ( -/obj/item/shard, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/south_west_street) -"dXQ" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"dXY" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"dYh" = ( -/obj/structure/stairs/corner_seamless, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/landing_zone_1) -"dYl" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/w_rockies) -"dYw" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/engineering/radio/highspawn{ - pixel_x = -12; - pixel_y = 8 - }, -/obj/effect/spawner/random/engineering/radio/highspawn{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"dYx" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"dYC" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"dYI" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"dYO" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"dZf" = ( -/obj/structure/table/mainship, -/obj/item/clothing/head/helmet/hop, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"dZy" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"dZF" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/south_west_street) -"dZI" = ( -/obj/item/explosive/grenade, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"eas" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"eax" = ( -/obj/structure/table/mainship, -/obj/item/newspaper{ - pixel_x = -7 - }, -/obj/item/toy/dice/d20{ - pixel_x = 10; - pixel_y = -3 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"eaR" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"ebg" = ( -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"ebr" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"ebD" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"ebK" = ( -/obj/structure/prop/vehicle/truck/destructible, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"ebM" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorm_north) -"ebS" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"ebZ" = ( -/turf/closed/wall, -/area/gelida/outdoors/colony_streets/north_street) -"ecf" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bridge) -"ecp" = ( -/turf/open/floor/plating{ - dir = 8 - }, -/area/gelida/indoors/a_block/bridges/op_centre) -"ecy" = ( -/turf/open/floor/plating, -/area/shuttle/drop1/gelida) -"ecS" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"ecV" = ( -/obj/effect/spawner/random/misc/structure/curtain/medical, -/turf/open/floor/tile/dark2{ - dir = 4 - }, -/area/gelida/indoors/a_block/medical) -"edn" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 8; - name = "\improper Human Resources Office" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"edt" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"edu" = ( -/obj/structure/flora/ausbushes/palebush{ - pixel_y = 9 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"edD" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"eem" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate{ - pixel_y = 9 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"eew" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/prison/blue, -/area/gelida/indoors/a_block/admin) -"eez" = ( -/obj/structure/table/mainship, -/obj/item/flashlight/lamp/green{ - pixel_y = -16 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/cavestructuretwo) -"eeK" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"eeZ" = ( -/obj/item/clothing/under/colonist{ - pixel_x = 5; - pixel_y = -6 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"efi" = ( -/turf/closed/shuttle/dropship2/fins{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"efm" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"efo" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"efT" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"egn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"egJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/turf_decal/warning_stripes/thin, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "checkpoint2" - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"egQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/tile/dark2, -/area/gelida/indoors/c_block/mining) -"ehe" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"ehl" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"eii" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/east_central_street) -"eiQ" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"ejE" = ( -/obj/item/clothing/head/welding{ - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"ejN" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"ejP" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"ekG" = ( -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/garage) -"elo" = ( -/obj/effect/landmark/start/job/xenomorph, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"enh" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"eoh" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/item/reagent_containers/glass/beaker, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"eok" = ( -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/indoors/a_block/dorm_north) -"eol" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"eon" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"eow" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"eoG" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/fitness) -"eoI" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating, -/area/gelida/powergen) -"eoN" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"eoS" = ( -/obj/item/ammo_magazine/rifle/ar11{ - current_rounds = 0 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"epb" = ( -/obj/structure/closet, -/obj/item/clothing/under/colonist, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"epc" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/secureweighted, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"epj" = ( -/obj/machinery/door/airlock/dropship_hatch/left/two, -/turf/open/shuttle/dropship/three, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"epv" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_east_street) -"epF" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"epN" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"eqm" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 6 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"eqv" = ( -/turf/closed/shuttle/dropship2/corners{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"eqE" = ( -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/powergen) -"eqR" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/b_block/bridge) -"eqT" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/powergen) -"era" = ( -/obj/machinery/miner/damaged, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"err" = ( -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/south_east_street) -"erZ" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"esc" = ( -/obj/item/tool/wrench, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"esd" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"esl" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"esw" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "\improper Post Office" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"esx" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = 10; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/snacks/soup/wishsoup{ - pixel_x = -4; - pixel_y = -7 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"ete" = ( -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"etn" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/casino) -"etu" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/bridge) -"etw" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"etH" = ( -/obj/structure/table/mainship, -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 6; - pixel_y = 16 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"etI" = ( -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"eue" = ( -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"euf" = ( -/obj/structure/cargo_container/wy, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"euu" = ( -/obj/item/defibrillator, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"euw" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/gelida/indoors/a_block/fitness) -"eux" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/east_central_street) -"euE" = ( -/turf/open/floor/prison/plate, -/area/gelida/indoors/c_block/cargo) -"euO" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 9 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"euX" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"eva" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"eve" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"evg" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/kitchen) -"evs" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/medical) -"evv" = ( -/obj/structure/table/mainship, -/obj/item/flashlight/lamp{ - pixel_y = 6 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"evC" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"evL" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 4 - }, -/obj/structure/prop/mainship/gelida/rails{ - dir = 5 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"evW" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 4; - pixel_y = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"ewh" = ( -/obj/structure/prop/vehicle/crane/destructible, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"ewj" = ( -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/central_streets) -"ewE" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"ewI" = ( -/obj/structure/closet, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/cavestructuretwo) -"ewO" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves) -"ewR" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"exV" = ( -/obj/effect/ai_node, -/obj/machinery/landinglight/lz1, -/turf/open/floor/prison, -/area/gelida/landing_zone_2) -"eyF" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"eyO" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"eyU" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/misc/structure/curtain/medical, -/turf/open/floor/tile/dark2{ - dir = 4 - }, -/area/gelida/indoors/a_block/medical) -"eyV" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"ezl" = ( -/obj/effect/turf_decal/tile/full/black, -/obj/effect/abstract/tele_blocker, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/c_block/mining) -"ezx" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/reinforced/prison, -/obj/item/storage/briefcase{ - pixel_y = 6 - }, -/obj/item/storage/briefcase, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"ezz" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 9 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_east_street) -"ezB" = ( -/obj/machinery/floodlight, -/turf/open/floor/prison/cleanmarked, -/area/gelida/cavestructuretwo) -"ezN" = ( -/obj/item/ammo_magazine/rifle/ar11{ - current_rounds = 0 - }, -/turf/open/floor/prison/blue{ - dir = 10 - }, -/area/gelida/indoors/a_block/admin) -"ezR" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"eAh" = ( -/obj/effect/acid_hole{ - dir = 4 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/dorms) -"eAs" = ( -/obj/machinery/floodlight, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"eAQ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"eBt" = ( -/obj/structure/flora/ausbushes/sunnybush{ - pixel_y = 10 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"eBR" = ( -/obj/effect/spawner/random/misc/folder/nooffset{ - pixel_x = -9; - pixel_y = -14 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"eBZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"eCc" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/platform, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/bridges/op_centre) -"eCd" = ( -/obj/item/tool/wrench, -/obj/structure/table/mainship, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"eCx" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/hallway) -"eCC" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"eDl" = ( -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"eDu" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"eDG" = ( -/obj/structure/table/reinforced/prison, -/obj/item/spacecash/c100, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"eDM" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"eEi" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"eEm" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"eEq" = ( -/obj/structure/bed, -/obj/structure/bed{ - buckling_y = 13; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"eEw" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/prison/cleanmarked, -/area/gelida/cavestructuretwo) -"eEH" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = 10; - pixel_y = 21 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/hydro) -"eEP" = ( -/mob/living/simple_animal/mouse, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"eEZ" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 8; - pixel_y = 5 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_2) -"eFc" = ( -/obj/item/clothing/head/flatcap{ - pixel_y = 16 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_east_street) -"eFf" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"eFj" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/east_central_street) -"eFm" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/north_west_street) -"eFo" = ( -/obj/structure/table/reinforced/prison, -/obj/item/newspaper, -/obj/item/tool/pen/blue, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"eFR" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/landing_zone_forecon/landing_zone_4) -"eFS" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/west_caves) -"eFU" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"eGa" = ( -/obj/structure/table/reinforced/prison, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 3; - pixel_y = 7 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"eGo" = ( -/obj/item/paper{ - pixel_x = 10; - pixel_y = 14 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"eGs" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/obj/structure/window/reinforced/windowstake{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"eGw" = ( -/obj/machinery/door/airlock/mainship/generic, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/landing_zone_2) -"eGO" = ( -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"eGU" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/obj/effect/ai_node, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"eHa" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"eHf" = ( -/obj/docking_port/stationary/crashmode, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"eHq" = ( -/obj/structure/table/mainship, -/obj/item/disk{ - desc = "a 2000 Russian crime film. It is a sequel to the 1997 film Brother."; - name = "brat 2 disk" - }, -/obj/machinery/recharger{ - pixel_x = 5; - pixel_y = -13 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"eHy" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/outdoors/colony_streets/south_east_street) -"eHD" = ( -/obj/structure/cable, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"eHG" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"eHT" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 9 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"eHX" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"eIA" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/gelida/indoors/c_block/cargo) -"eIX" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 8 - }, -/area/gelida/indoors/a_block/admin) -"eJp" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"eJR" = ( -/obj/structure/bed, -/obj/structure/bed{ - buckling_y = 13; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown, -/obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"eKz" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_street) -"eKP" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"eKQ" = ( -/obj/machinery/conveyor, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"eKW" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/spawner/random/weaponry/ammo/sidearm, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"eKY" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate{ - pixel_y = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"eLc" = ( -/obj/structure/inflatable/wall{ - dir = 8 - }, -/obj/item/ammo_magazine/rifle/ar11{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"eLd" = ( -/obj/machinery/miner/damaged, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_street) -"eLe" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"eLB" = ( -/obj/structure/cable, -/obj/vehicle/ridden/powerloader{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"eLD" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 5 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"eLH" = ( -/obj/structure/cargo_container/ch_green{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"eLK" = ( -/turf/closed/shuttle/dropship2/enginefive{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"eMm" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/hallway) -"eMq" = ( -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"eMx" = ( -/obj/machinery/vending/hydroseeds, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"eMH" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/stairs/seamless/platform, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"eNH" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 22 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 22 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"eOc" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/indoors/a_block/dorm_north) -"eOi" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"eOl" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"eOo" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"eOu" = ( -/obj/machinery/floodlight, -/turf/open/floor/prison/cellstripe{ - dir = 4 - }, -/area/gelida/indoors/lone_buildings/storage_blocks) -"eOG" = ( -/obj/item/shard, -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"eOV" = ( -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"ePA" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1; - name = "\improper Colony Marshals" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/security) -"ePO" = ( -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"eQj" = ( -/obj/structure/table/mainship, -/obj/item/circuitboard/apc, -/obj/machinery/door_control{ - dir = 1; - id = "checkpoint2" - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"eQB" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"eQH" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"eRD" = ( -/obj/machinery/door/airlock/mainship/generic, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/mainship/stripesquare, -/area/gelida/cavestructuretwo) -"eRE" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"eRM" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/item/tool/pickaxe/silver, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"eRN" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/caves/central_caves/garbledradio) -"eRR" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 10 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"eRT" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"eRY" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 12 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"eSA" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"eSL" = ( -/obj/item/trash/chips, -/obj/structure/bed/chair/sofa/corsat{ - pixel_y = 16 - }, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"eTa" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"eTj" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreen{ - dir = 1 - }, -/area/gelida/indoors/a_block/medical) -"eTs" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"eTu" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"eTU" = ( -/obj/structure/cargo_container/hd_blue{ - dir = 4 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_1) -"eUn" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"eUq" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"eUv" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/central_streets) -"eUC" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/admin) -"eUU" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/bridges/corpo) -"eVd" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"eVj" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"eVl" = ( -/obj/item/flashlight/lamp/green{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/machinery/door_control{ - id = "Secure_Master_Armoury_2"; - name = "remote door-control" - }, -/obj/structure/table/mainship, -/turf/open/floor/tile/dark2, -/area/gelida/indoors/c_block/mining) -"eVp" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_street) -"eVq" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"eVy" = ( -/obj/structure/table/mainship, -/obj/item/tool/crowbar/red, -/obj/item/clipboard{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"eVG" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -10; - pixel_y = 29 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"eVR" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"eWt" = ( -/obj/structure/table/reinforced/prison, -/obj/effect/spawner/random/medical/firstaid{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/item/reagent_containers/hypospray/autoinjector/kelotane{ - pixel_y = -3 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"eWL" = ( -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = 5 - }, -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = 19; - pixel_y = 18 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"eWM" = ( -/obj/structure/bed/chair/sofa/corsat/right{ - pixel_y = 16 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"eWP" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/corpo) -"eWZ" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"eXl" = ( -/obj/structure/cargo_container/horizontal{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"eXm" = ( -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"eXu" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"eXA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"eXT" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "\improper Mining Control" - }, -/obj/effect/ai_node, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"eXW" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"eYs" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"eYt" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"eYA" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"eYC" = ( -/obj/effect/acid_hole, -/turf/closed/wall, -/area/gelida/indoors/a_block/hallway) -"eYD" = ( -/obj/structure/table/reinforced/prison, -/obj/machinery/recharger, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"eYE" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"eYK" = ( -/obj/structure/table/mainship, -/obj/item/newspaper{ - pixel_x = -7 - }, -/obj/item/newspaper{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"eZd" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"eZB" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/cavestructuretwo) -"eZJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_street) -"eZV" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"faa" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tracks/wheels/bloody{ - dir = 5 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"fai" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/garage) -"fav" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/b_block/bridge) -"faA" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/south_street) -"faI" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"fbf" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/rock) -"fbs" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"fcp" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"fda" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"fdW" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"fdY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/hydro) -"feh" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - pixel_x = 7; - pixel_y = 16 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"feS" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"ffr" = ( -/obj/machinery/power/apc/drained, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"ffw" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/blue{ - dir = 8 - }, -/area/gelida/indoors/a_block/hallway) -"ffD" = ( -/obj/structure/platform_decoration, -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1; - name = "\improper Westlock" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"ffH" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"ffK" = ( -/obj/structure/safe, -/obj/item/ore/gold, -/obj/item/ore/gold, -/obj/item/ore/gold, -/obj/item/ore/gold, -/obj/item/ore/gold, -/obj/item/ore/gold, -/obj/item/ore/gold, -/obj/item/ore/gold, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"ffQ" = ( -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_east_street) -"ffR" = ( -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"fgb" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"fgn" = ( -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"fgJ" = ( -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"fgL" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"fhi" = ( -/obj/structure/cargo_container{ - dir = 4 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_forecon/landing_zone_4) -"fhm" = ( -/obj/structure/table/mainship, -/obj/item/camera, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"fhC" = ( -/obj/effect/spawner/random/misc/folder/nooffset{ - pixel_x = 9; - pixel_y = 4 - }, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"fhF" = ( -/obj/structure/table/mainship, -/obj/item/clothing/head/headset{ - desc = "A headset typically found in use by radio-operators and officers. This one bears a purple stripe down its side."; - name = "\improper personalized USCM headset" - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"fhI" = ( -/obj/machinery/door/poddoor/shutters/mainship{ - dir = 4; - id = "Sec-Kitchen-Lockdown" - }, -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"fie" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"fix" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"fjn" = ( -/obj/structure/prop/mainship/gelida/rails, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/rock) -"fjX" = ( -/obj/effect/turf_decal/warning_stripes/box, -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/central_streets) -"fkl" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_east_street) -"fkv" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/casino) -"fkH" = ( -/obj/item/shard, -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/hydro) -"fli" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"flB" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/bridges/corpo_fitness) -"flF" = ( -/obj/structure/nuke_disk_candidate, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"flJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"fmm" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"fmz" = ( -/obj/effect/ai_node, -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"fmL" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"fmR" = ( -/obj/machinery/light, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"fmS" = ( -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorm_north) -"fnb" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"fng" = ( -/obj/structure/window/framed/colony, -/obj/machinery/door/poddoor/mainship{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"fnx" = ( -/obj/structure/table/reinforced/prison, -/obj/item/flashlight/lamp{ - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"fnH" = ( -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 11; - pixel_y = 3 - }, -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"fnM" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"foy" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_east_street) -"fpe" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"fpo" = ( -/obj/structure/table/mainship, -/obj/item/tool/stamp/denied{ - pixel_x = -11; - pixel_y = 8 - }, -/obj/item/clothing/head/hardhat/white{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/landing_zone_2) -"fpt" = ( -/obj/machinery/conveyor{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"fpy" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"fpK" = ( -/obj/structure/rack/nometal, -/obj/item/clothing/shoes/blue{ - desc = "Comfortable-looking slippers."; - name = "blue slippers"; - pixel_y = 9 - }, -/obj/item/clothing/shoes/blue{ - desc = "Comfortable-looking slippers."; - name = "blue slippers" - }, -/obj/item/clothing/shoes/blue{ - desc = "Comfortable-looking slippers."; - name = "blue slippers"; - pixel_y = -8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"fpP" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_street) -"fqs" = ( -/obj/machinery/vending/cigarette/colony, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"fqQ" = ( -/obj/structure/fence, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/central_streets) -"fqR" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/hallway) -"frc" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/east_central_street) -"frg" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/cargo) -"frR" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"fsy" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/b_block/bridge) -"fsz" = ( -/obj/structure/largecrate, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"fsX" = ( -/turf/closed/shuttle/dropship2/corners{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"ftO" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"fur" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/c_block/cargo) -"fuv" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"fuw" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/landing_zone_2) -"fuL" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"fuY" = ( -/obj/structure/table/mainship, -/obj/item/toy/deck{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/hydro) -"fvh" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/gelida/indoors/b_block/bridge) -"fvt" = ( -/obj/machinery/landinglight/lz1{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_2) -"fwd" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/bridges/op_centre) -"fwg" = ( -/obj/structure/bed/chair/sofa/corsat/left{ - pixel_y = 16 - }, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"fwk" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"fwv" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/bridge) -"fwH" = ( -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"fwL" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"fxl" = ( -/obj/item/clothing/under/liaison_suit/suspenders{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"fxu" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"fxz" = ( -/obj/effect/spawner/random/machinery/disposal, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"fyp" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"fyu" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform{ - dir = 10 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"fyL" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/west_caves) -"fzc" = ( -/obj/structure/closet/secure_closet/quartermaster, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"fzg" = ( -/obj/machinery/light, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"fzB" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"fzJ" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"fAj" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9; - pixel_y = 25 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"fAV" = ( -/obj/structure/barricade/metal, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"fBw" = ( -/obj/structure/cargo_container/ch_red{ - dir = 4 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"fBJ" = ( -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/w_rockies) -"fBT" = ( -/turf/open/floor/prison{ - dir = 9 - }, -/area/gelida/indoors/a_block/dorm_north) -"fCe" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"fCp" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"fCu" = ( -/obj/structure/bed/chair/sofa/corsat{ - pixel_y = 16 - }, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"fCJ" = ( -/turf/open/floor/prison{ - dir = 1 - }, -/area/gelida/indoors/a_block/kitchen) -"fCL" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bar) -"fDi" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"fEb" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/kitchen) -"fEN" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"fEZ" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/west_caves) -"fFz" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorm_north) -"fFL" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"fFO" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"fGo" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"fGv" = ( -/obj/structure/table/mainship{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"fGC" = ( -/obj/structure/stairs/corner_seamless, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"fGY" = ( -/obj/item/bananapeel{ - desc = "A bunch of tiny bits of shattered metal."; - name = "piece of shrapnel"; - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"fHC" = ( -/obj/effect/spawner/gibspawner/human, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/spawner/random/clothing/general, -/turf/open/floor/prison/darkpurple{ - dir = 1 - }, -/area/gelida/indoors/a_block/dorms) -"fHE" = ( -/obj/structure/cargo_container/horizontal, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"fHM" = ( -/obj/effect/ai_node, -/turf/open/shuttle/dropship/seven, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"fIj" = ( -/turf/closed/shuttle/dropship2/enginethree, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"fIl" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_street) -"fIn" = ( -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/bridges/corpo) -"fJd" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"fJx" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"fJJ" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"fJX" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_forecon/landing_zone_4) -"fKv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"fKy" = ( -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/fitness) -"fKC" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"fLi" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/gelida/indoors/a_block/kitchen) -"fLo" = ( -/obj/structure/table/mainship, -/obj/item/stack/sheet/cardboard, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/cargo) -"fMd" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"fMz" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/grass, -/area/gelida/indoors/a_block/garden) -"fMY" = ( -/obj/machinery/door/airlock/mainship/security/glass{ - name = "\improper Marshall Office Interrogation"; - req_access = null - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/security) -"fNo" = ( -/obj/structure/bed{ - dir = 5; - name = "bedroll" - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"fNF" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_west_street) -"fOp" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"fOz" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/bridges/op_centre) -"fOF" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/secureweighted, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/north_street) -"fOW" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/bridges) -"fPj" = ( -/turf/open/floor/prison{ - dir = 6 - }, -/area/gelida/indoors/a_block/dorm_north) -"fPw" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"fPB" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"fQl" = ( -/turf/closed/shuttle/dropship2/enginefive{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"fQt" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"fQG" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/shuttle/dropship2/wallthree/alt, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"fQJ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/mob/living/simple_animal/corgi/puppy, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"fQL" = ( -/obj/structure/coatrack{ - pixel_x = 12; - pixel_y = 24 - }, -/obj/structure/coatrack{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/snow_suit{ - pixel_y = 5 - }, -/obj/item/clothing/suit/storage/snow_suit{ - pixel_x = 10; - pixel_y = 27 - }, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"fRn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"fRA" = ( -/obj/machinery/prop/autolathe, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"fRP" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/east_central_street) -"fSi" = ( -/obj/docking_port/stationary/crashmode, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"fSp" = ( -/obj/structure/fence, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"fTz" = ( -/obj/structure/cargo_container/ch_red{ - dir = 4 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"fTM" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/cavestructuretwo) -"fUc" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/corpo_fitness) -"fVe" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/dorms) -"fVm" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/tool, -/obj/item/armor_module/module/antenna, -/turf/open/floor/plating, -/area/gelida/powergen) -"fVp" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "checkpoint3" - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"fVE" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1; - name = "\improper Eastlock" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/hallway) -"fVL" = ( -/obj/machinery/door/airlock/multi_tile/mainship/maint, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"fWb" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/bridges/op_centre) -"fWc" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate, -/obj/item/trash/plate{ - pixel_y = 3 - }, -/obj/machinery/computer/security/wooden_tv{ - pixel_y = 14 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"fWd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"fWs" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/op_centre) -"fWx" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 5 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"fWz" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"fWE" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"fXm" = ( -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"fXy" = ( -/obj/structure/table/mainship{ - dir = 1; - flipped = 1 - }, -/obj/item/armor_module/module/antenna, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"fXD" = ( -/turf/closed/shuttle/dropship2/finback, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"fXJ" = ( -/obj/effect/landmark/start/job/xenomorph, -/turf/open/floor/plating, -/area/gelida/powergen) -"fYA" = ( -/obj/structure/table/mainship, -/obj/structure/flora/pottedplant{ - pixel_x = -2; - pixel_y = 12 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"fYO" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"fZd" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"fZe" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 5 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"fZv" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/folder/nooffset, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"fZw" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9 - }, -/area/gelida/indoors/b_block/bridge) -"fZD" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/landing_zone_forecon/landing_zone_4) -"fZF" = ( -/obj/machinery/light, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"fZN" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"fZP" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves) -"fZR" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"gaa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"gay" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/prison/blue{ - dir = 4 - }, -/area/gelida/indoors/a_block/hallway) -"gaA" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/south_street) -"gaC" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"gaP" = ( -/obj/structure/stairs/corner_seamless, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"gaR" = ( -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"gbt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/gelida/caves/west_caves) -"gbQ" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"gbW" = ( -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/casino) -"gce" = ( -/obj/structure/table/fancywoodentable, -/obj/item/storage/fancy/cigar{ - pixel_y = 7 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_y = 6 - }, -/obj/item/ashtray/bronze{ - pixel_x = 6; - pixel_y = -5 - }, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"gcl" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"gcp" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"gcv" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"gcX" = ( -/obj/structure/table/mainship, -/obj/item/armor_module/module/antenna, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"gdc" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"gdp" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"gdv" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/south_west_street) -"gdN" = ( -/obj/structure/rack/nometal, -/obj/item/tool/minihoe{ - pixel_x = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/obj/item/tool/minihoe{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -2 - }, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"geE" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"geP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/cavestructuretwo) -"gfh" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"ggk" = ( -/obj/effect/acid_hole, -/turf/closed/wall, -/area/gelida/indoors/c_block/mining) -"ggz" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"ggO" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges) -"ggZ" = ( -/obj/machinery/door/poddoor/shutters/mainship{ - dir = 4; - id = "fitness_dorm_bridge" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"ghd" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"ghH" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/bridges/corpo) -"ghM" = ( -/obj/machinery/door/airlock/mainship/security/glass{ - name = "\improper Marshall Office Armory"; - req_access = null - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/mainship{ - dir = 4; - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/security) -"gic" = ( -/obj/structure/closet, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"gid" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"gij" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"gim" = ( -/turf/open/floor/prison{ - dir = 8 - }, -/area/gelida/cavestructuretwo) -"gio" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/corpo) -"gip" = ( -/obj/machinery/light, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"giu" = ( -/obj/machinery/light, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/c_block/cargo) -"gjf" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"gjL" = ( -/obj/machinery/vending/medical, -/turf/open/floor/prison/whitegreen{ - dir = 8 - }, -/area/gelida/indoors/a_block/medical) -"gjM" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9; - pixel_y = 15 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"gkk" = ( -/obj/machinery/miner/damaged/platinum, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/west_caves) -"gkr" = ( -/obj/item/ammo_magazine/sentry{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"gku" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/drained, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/corpo_fitness) -"gkW" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_street) -"glh" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/b_block/bridge) -"glm" = ( -/obj/structure/table/fancywoodentable, -/obj/item/flashlight/lamp/green{ - pixel_y = 13 - }, -/obj/item/ashtray/bronze{ - pixel_x = 6; - pixel_y = -5 - }, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"glo" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/fitness) -"glJ" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"glN" = ( -/obj/effect/ai_node, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"gma" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"gme" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/gelida/indoors/c_block/cargo) -"gmh" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"gmB" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/structure/fence, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/central_streets) -"gmI" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"gmJ" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 10 - }, -/obj/structure/cable, -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"gmM" = ( -/obj/structure/table/fancywoodentable, -/obj/item/weapon/cane, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"gmV" = ( -/obj/effect/spawner/random/misc/structure/curtain, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"gns" = ( -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"gnv" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"gny" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/central_streets) -"gnI" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bar) -"gnM" = ( -/obj/structure/table/mainship, -/obj/item/taperecorder, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"gnO" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"gnV" = ( -/obj/effect/acid_hole, -/turf/closed/wall, -/area/gelida/indoors/lone_buildings/storage_blocks) -"gnX" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/outdoors/w_rockies) -"gon" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"goK" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"goL" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/docking_port/stationary/crashmode, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_street) -"goV" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"gpd" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"gpo" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_east_street) -"gpx" = ( -/obj/structure/bed, -/obj/structure/bed{ - buckling_y = 13; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown, -/turf/open/floor/prison/plate, -/area/gelida/indoors/c_block/mining) -"gpA" = ( -/obj/structure/prop/vehicle/truck/destructible, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/east_central_street) -"gpF" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves/garbledradio) -"gpR" = ( -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/b_block/bridge) -"gqb" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"gqh" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"gqE" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"gqI" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 5 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_east_street) -"gqR" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"gqU" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/cargo) -"grj" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/cavestructuretwo) -"gsb" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/cavestructuretwo) -"gse" = ( -/obj/structure/prop/mainship/gelida/rails, -/turf/open/floor/tile/dark2, -/area/gelida/outdoors/rock) -"gsf" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/corpo) -"gsk" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"gss" = ( -/obj/machinery/atm{ - pixel_y = 30 - }, -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"gtc" = ( -/obj/structure/rack/nometal, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/head/hardhat, -/obj/effect/spawner/random/engineering/pickaxe, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"gtj" = ( -/obj/effect/ai_node, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"gtp" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - name = "trash bag"; - pixel_x = 4; - pixel_y = 21 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"guf" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/shuttle/dropship/six, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"gum" = ( -/obj/item/trash/kepler, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"gun" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "lv_gym_2"; - name = "treadmill" - }, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"gut" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/fitness) -"guC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/chunk) -"guK" = ( -/obj/structure/table/mainship, -/obj/item/flashlight/lamp{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"guN" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/gibs, -/obj/item/clothing/under/marine{ - pixel_x = 18; - pixel_y = 20 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/corpo) -"guX" = ( -/obj/machinery/landinglight/lz1, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"gve" = ( -/turf/open/floor/prison, -/area/gelida/landing_zone_2) -"gvg" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/obj/machinery/microwave{ - pixel_y = 18 - }, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/chunk) -"gvt" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 23 - }, -/obj/structure/mirror{ - pixel_x = -1; - pixel_y = 29 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/tile/dark2{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"gvL" = ( -/obj/machinery/door/airlock/mainship/maint{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/outdoors/w_rockies) -"gvO" = ( -/obj/effect/spawner/random/misc/structure/curtain/medical, -/turf/open/floor/prison/whitegreen, -/area/gelida/indoors/a_block/medical) -"gwA" = ( -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"gwF" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"gwI" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"gwY" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"gxa" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_street) -"gxF" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"gxK" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/inflatable/wall, -/turf/open/shuttle/dropship/four, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"gxL" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"gxN" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"gxV" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorm_north) -"gyb" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/admin) -"gyd" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/dorm_north) -"gyo" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"gys" = ( -/obj/structure/cable, -/obj/machinery/landinglight/lz1, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"gyz" = ( -/turf/closed/shuttle/dropship2/finback{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"gyH" = ( -/obj/effect/landmark/sensor_tower, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"gyM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"gzj" = ( -/obj/machinery/power/apc/drained, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"gzE" = ( -/obj/structure/table/reinforced/prison, -/obj/item/trash/burger, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"gzF" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"gzM" = ( -/obj/structure/cargo_container/ch_green{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"gzO" = ( -/obj/structure/table/reinforced/prison, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"gzT" = ( -/obj/structure/cargo_container/ch_red, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"gAr" = ( -/obj/effect/spawner/random/engineering/technology_scanner, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"gAT" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"gBc" = ( -/obj/item/shard, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/hallway) -"gBj" = ( -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/c_block/cargo) -"gBm" = ( -/obj/structure/largecrate, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/cavestructuretwo) -"gBs" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/corpo) -"gBK" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"gCw" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/hallway) -"gCK" = ( -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"gCM" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_east_street) -"gCO" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"gDd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/nuke_disk_candidate, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"gDB" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_y = 18 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"gDG" = ( -/obj/structure/rack/nometal, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"gEa" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"gEm" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 17 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"gFi" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_street) -"gFo" = ( -/turf/closed/wall/r_wall{ - dir = 4 - }, -/area/gelida/outdoors/rock) -"gFM" = ( -/obj/effect/decal/cleanable/blood/six{ - dir = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"gGi" = ( -/obj/structure/fence, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/central_streets) -"gGA" = ( -/obj/structure/closet, -/obj/item/clothing/under/colonist, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"gGG" = ( -/obj/structure/cargo_container/ch_red{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"gHe" = ( -/obj/machinery/button/door/open_only/landing_zone/lz2, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"gHg" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"gHj" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_west_street) -"gHC" = ( -/turf/closed/shuttle/dropship2/engine_sidealt{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"gHM" = ( -/obj/structure/flora/jungle/planttop1, -/turf/open/floor/grass, -/area/gelida/indoors/a_block/garden) -"gHP" = ( -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/central_streets) -"gHV" = ( -/obj/structure/cargo_container/ch_red{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"gIp" = ( -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/east_central_street) -"gIL" = ( -/obj/structure/stairs/seamless, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"gIP" = ( -/obj/machinery/vending/hydroseeds, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"gIU" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - pixel_x = 7; - pixel_y = 16 - }, -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"gIX" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/hydro) -"gIY" = ( -/obj/structure/rack/nometal, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"gJz" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"gJD" = ( -/obj/structure/bed, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"gJM" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 17 - }, -/obj/machinery/vending/cola, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"gJP" = ( -/obj/structure/cargo_container, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/central_streets) -"gJQ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/security) -"gKF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/bridges/corpo) -"gKG" = ( -/obj/item/storage/backpack, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"gKN" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"gKU" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/west_caves) -"gKW" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"gLa" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"gLz" = ( -/obj/machinery/door/airlock/mainship/generic, -/obj/effect/ai_node, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/mainship/stripesquare, -/area/gelida/cavestructuretwo) -"gLF" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "checkpoint1" - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"gLM" = ( -/obj/structure/cargo_container, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"gMe" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_street) -"gMH" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "checkpoint1" - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"gMN" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/bridges/op_centre) -"gNd" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/corner_seamless, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"gNq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/security) -"gNQ" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/w_rockies) -"gOD" = ( -/obj/structure/table/reinforced/prison, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"gOR" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 8; - name = "\improper Dormitories" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"gPi" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"gPp" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 9 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"gPx" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/c_block/cargo) -"gPD" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/platebot, -/area/gelida/indoors/c_block/cargo) -"gPK" = ( -/obj/structure/table/mainship, -/obj/machinery/microwave{ - pixel_y = 3 - }, -/obj/effect/spawner/random/machinery/microwave{ - pixel_y = 15 - }, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"gPL" = ( -/obj/structure/table/mainship, -/obj/item/radio/off{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/tool/screwdriver, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"gPO" = ( -/obj/item/reagent_containers/food/drinks/flask/marine, -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"gPQ" = ( -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"gPU" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/liquid/water/river, -/area/gelida/indoors/a_block/fitness) -"gQg" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"gQE" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"gQV" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"gRg" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"gRj" = ( -/obj/structure/table/mainship, -/obj/item/laptop, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"gRH" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/table/mainship, -/obj/item/trash/plate{ - pixel_x = -5 - }, -/obj/item/ashtray/bronze{ - pixel_x = 8; - pixel_y = -3 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"gSb" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_forecon/landing_zone_4) -"gSx" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/obj/structure/platform, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"gSz" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"gSK" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"gSP" = ( -/obj/structure/table/mainship, -/obj/item/tool/kitchen/rollingpin, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -4 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 4 - }, -/obj/effect/spawner/random/food_or_drink/kitchenknife{ - pixel_x = -9; - pixel_y = 3 - }, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"gSY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/blue, -/area/gelida/indoors/a_block/admin) -"gTf" = ( -/obj/effect/turf_decal/warning_stripes/stripedsquare/tile/border, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/garage) -"gTw" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"gTM" = ( -/obj/structure/bed/stool, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/casino) -"gTU" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"gUq" = ( -/turf/closed/shuttle/dropship2/finright{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"gUs" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "\improper Corporate Liason" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/corpo) -"gUR" = ( -/turf/closed/shuttle/dropship2/glasssix, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"gVs" = ( -/obj/machinery/light, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"gVv" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"gVy" = ( -/obj/structure/cargo_container{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"gVG" = ( -/obj/item/clothing/shoes/blue{ - desc = "Comfortable-looking slippers."; - name = "blue slippers" - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"gXb" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"gXH" = ( -/obj/machinery/light{ - pixel_x = 16 - }, -/turf/open/floor/prison/whitegreen, -/area/gelida/indoors/a_block/medical) -"gXI" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/secureweighted, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"gXM" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_street) -"gXV" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/landing_zone_2) -"gYz" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"gZd" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/food_or_drink/drink_alcohol_bottle, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"gZo" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"gZy" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/weaponry/melee, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"gZL" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/cleanmarked, -/area/gelida/cavestructuretwo) -"had" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorm_north) -"haB" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"haI" = ( -/obj/machinery/miner/damaged, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/n_rockies) -"haP" = ( -/turf/closed/wall, -/area/gelida/indoors/a_block/security) -"haX" = ( -/obj/structure/table/mainship{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"haY" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/glass/beaker/vial, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"haZ" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"hby" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/effect/spawner/gibspawner/xeno, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"hbX" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"hca" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"hcy" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"hcL" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/landing_zone_1) -"hcR" = ( -/obj/docking_port/stationary/crashmode, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"hdk" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/landing_zone_2) -"hdo" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"hdI" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"hdJ" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"hdY" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "checkpoint1" - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"hdZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"het" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/glass/fertilizer, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"hey" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform{ - dir = 10 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"heL" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"heM" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"hfL" = ( -/obj/structure/prop/vehicle/truck/destructible{ - dir = 8; - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"hgb" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/b_block/hydro) -"hgq" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/cavestructuretwo) -"hgC" = ( -/obj/effect/spawner/random/engineering/structure/tank/waterweighted, -/obj/item/reagent_containers/food/drinks/flask/marine{ - pixel_x = -6; - pixel_y = -11 - }, -/obj/item/reagent_containers/food/drinks/flask/marine{ - pixel_x = -6; - pixel_y = 13 - }, -/obj/item/reagent_containers/food/drinks/flask/marine{ - pixel_x = -2; - pixel_y = 7 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"hhg" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"hhP" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 6 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/north_street) -"hif" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"hik" = ( -/obj/machinery/floodlight, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"hil" = ( -/obj/structure/rack/nometal, -/obj/item/clothing/under/overalls, -/obj/item/clothing/under/overalls, -/obj/item/clothing/under/overalls, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"hiv" = ( -/obj/item/tool/wet_sign, -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"hjf" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/rack/nometal, -/obj/item/stack/sheet/mineral/gold, -/obj/item/ore/silver, -/obj/item/ore/silver, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"hjh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"hjt" = ( -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/machinery/cic_maptable, -/turf/open/floor/prison/sterilewhite, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"hju" = ( -/obj/structure/holohoop{ - dir = 8; - id = "lvbasketball"; - side = "right" - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"hjw" = ( -/turf/closed/wall, -/area/gelida/indoors/c_block/garage) -"hky" = ( -/obj/structure/table/mainship, -/obj/item/clothing/head/headset{ - pixel_x = 4 - }, -/obj/item/clothing/head/beret{ - pixel_x = 2; - pixel_y = 8 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"hkD" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/obj/structure/table/reinforced/prison, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"hkE" = ( -/turf/closed/shuttle/dropship2/enginetwo{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"hkH" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"hkO" = ( -/obj/structure/table/mainship, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - name = "synthethic potted plant"; - pixel_y = 14 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"hlp" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/east_central_street) -"hlt" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"hlu" = ( -/obj/item/stack/rods, -/obj/structure/window_frame/colony, -/obj/structure/platform, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"hlS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"hlZ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 1 - }, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"hmd" = ( -/obj/structure/prop/vehicle/truck/destructible, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_east_street) -"hmm" = ( -/turf/open/floor/prison{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"hmw" = ( -/obj/prop/hydroponics, -/obj/machinery/light{ - dir = 1; - pixel_x = 16 - }, -/turf/open/floor/plating/platebotc, -/area/gelida/indoors/b_block/hydro) -"hmy" = ( -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"hmF" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/obj/machinery/landinglight/lz1{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"hnn" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"hnw" = ( -/obj/machinery/door_control{ - dir = 1; - id = "mining_secure_blast_3"; - name = "Blast Door Control" - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_east_street) -"hnW" = ( -/obj/structure/flora/ausbushes/reedbush{ - pixel_y = 11 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"how" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_east_street) -"hoS" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"hpl" = ( -/obj/effect/spawner/random/misc/structure/curtain, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/executive) -"hps" = ( -/turf/closed/shuttle/dropship2/enginefive, -/area/gelida/landing_zone_forecon/landing_zone_4) -"hqe" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"hqp" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"hqB" = ( -/turf/open/shuttle/dropship/eight, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"hqS" = ( -/obj/structure/table/reinforced/prison, -/obj/item/flashlight/lamp{ - pixel_x = -7; - pixel_y = 15 - }, -/obj/item/ashtray/glass, -/obj/item/clothing/mask/cigarette, -/obj/item/clothing/mask/cigarette{ - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"hqY" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/cargo) -"hrr" = ( -/turf/closed/shuttle/dropship2/engine_sidealt{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"hrs" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"hrB" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"hrO" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"hsf" = ( -/obj/structure/prop/mainship/sensor_computer2, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"hsk" = ( -/obj/structure/stairs/seamless, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"hsu" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"hsw" = ( -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/cavestructuretwo) -"hsx" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"hsH" = ( -/obj/item/storage/briefcase, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"hsP" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/gelida/outdoors/colony_streets/north_east_street) -"htb" = ( -/turf/closed/shuttle/dropship2/enginethree{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"htf" = ( -/obj/item/stack/rods, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"hth" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"hto" = ( -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"htI" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/bridge) -"htY" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"hul" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"hvo" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"hvG" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/fitness) -"hwd" = ( -/obj/effect/spawner/random/medical/firstaid, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"hwe" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/mainship, -/obj/item/tool/kitchen/tray{ - pixel_y = 3 - }, -/obj/item/reagent_containers/food/condiment/saltshaker, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 9 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"hwh" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/kitchen) -"hwl" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"hws" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"hwu" = ( -/obj/structure/girder/displaced, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"hwJ" = ( -/obj/structure/cargo_container/ch_green{ - dir = 1 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"hwL" = ( -/obj/effect/spawner/random/misc/structure/curtain/medical, -/turf/open/floor/prison/whitegreen{ - dir = 8 - }, -/area/gelida/indoors/a_block/medical) -"hwQ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/hallway) -"hxv" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6 - }, -/area/gelida/indoors/a_block/dorm_north) -"hxF" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/structure/cable, -/obj/effect/landmark/dropship_start_location, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/kitchen) -"hxH" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"hxJ" = ( -/obj/structure/cable, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"hxT" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"hze" = ( -/obj/structure/inflatable/wall, -/turf/open/shuttle/dropship/eight, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"hzn" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"hzu" = ( -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/diamond, -/obj/item/ore/diamond, -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"hzH" = ( -/obj/machinery/light, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"hzP" = ( -/obj/effect/spawner/random/engineering/fuelcell{ - pixel_x = -8; - pixel_y = 16 - }, -/obj/effect/spawner/random/engineering/fuelcell{ - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_east_street) -"hAi" = ( -/obj/structure/stairs/seamless, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"hAt" = ( -/obj/structure/flora/ausbushes/sunnybush{ - pixel_y = 10 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"hAH" = ( -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"hAL" = ( -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_x = 20; - pixel_y = 13 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/hallway) -"hAP" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/mainship/generic{ - dir = 8; - name = "\improper Dormitories" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"hAU" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/three, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"hBf" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/kitchen) -"hBJ" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"hBN" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/obj/structure/cable, -/obj/structure/window/reinforced/windowstake{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"hBP" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"hBX" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/reinforced/prison, -/obj/item/tool/pen/blue, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"hCb" = ( -/obj/machinery/door/airlock/mainship/generic{ - name = "\improper Bedroom" - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"hCr" = ( -/obj/machinery/atm{ - pixel_y = 11 - }, -/obj/structure/prop/mainship/gelida/propserver, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"hCt" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"hDe" = ( -/obj/structure/cargo_container/ch_red, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"hDu" = ( -/turf/open/liquid/water/river, -/area/gelida/indoors/a_block/fitness) -"hDw" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_east_street) -"hDD" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/prison/darkpurple{ - dir = 5 - }, -/area/gelida/indoors/a_block/dorms) -"hDG" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/effect/turf_decal/tracks/wheels/bloody{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"hDO" = ( -/obj/structure/cargo_container/red{ - dir = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"hEt" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/engineering/radio/highspawn{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"hEP" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"hFv" = ( -/turf/closed/shuttle/dropship2/engine_sidealt, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"hFB" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -9; - pixel_y = 12 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"hGc" = ( -/obj/item/pipe, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"hGp" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/east_central_street) -"hGC" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"hGR" = ( -/obj/structure/cargo_container{ - dir = 1 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"hGT" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"hHY" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"hIE" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/toolbox, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"hJp" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/prison/blue, -/area/gelida/indoors/a_block/admin) -"hJz" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 15; - pixel_y = 8 - }, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"hJK" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/mainship, -/obj/item/flashlight/lamp, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"hKl" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/hydro) -"hKm" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"hKp" = ( -/obj/structure/closet/athletic_mixed, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"hLj" = ( -/obj/structure/fence, -/obj/effect/turf_decal/warning_stripes/thin, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/tile/dark2{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"hLv" = ( -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"hLw" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/bridges) -"hMn" = ( -/turf/closed/wall, -/area/gelida/outdoors/colony_streets/north_west_street) -"hMq" = ( -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/retractor, -/obj/structure/table/reinforced/prison, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"hMy" = ( -/obj/structure/cargo_container/red{ - dir = 4 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"hMN" = ( -/obj/structure/bed{ - pixel_y = 12 - }, -/obj/structure/bed{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"hNa" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"hNx" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/powergen) -"hNA" = ( -/obj/structure/table/mainship{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"hNU" = ( -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bridge) -"hOb" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"hOe" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"hOj" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorm_north) -"hOB" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"hOM" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating, -/area/gelida/powergen) -"hOW" = ( -/obj/machinery/computer/security/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 1; - name = "Television set"; - network = null; - pixel_x = -1; - pixel_y = 7 - }, -/obj/structure/table/woodentable, -/obj/item/tool/wrench{ - pixel_y = -6 - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"hPB" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"hQc" = ( -/obj/structure/cable, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/dorm_north) -"hQm" = ( -/obj/machinery/floodlight/colony{ - pixel_y = 9 - }, -/obj/structure/platform{ - dir = 15 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/garden) -"hQt" = ( -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/corpo) -"hQI" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/table/mainship{ - dir = 1; - flipped = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"hRx" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"hRI" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"hRN" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_street) -"hRU" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"hRV" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/prison/cleanmarked, -/area/gelida/cavestructuretwo) -"hSz" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/freezer, -/area/gelida/indoors/a_block/dorms) -"hSO" = ( -/obj/structure/prop/mainship/sensor_computer2, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -7; - pixel_y = 19 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"hSR" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"hTb" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"hTf" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 20 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"hTl" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"hTH" = ( -/obj/machinery/door/airlock/mainship/generic, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/garage) -"hTM" = ( -/obj/machinery/computer/sleep_console, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"hUc" = ( -/obj/structure/prop/mainship/gelida/powerccable, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 10 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 6 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"hUm" = ( -/obj/structure/bed, -/obj/structure/bed{ - buckling_y = 13; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown, -/obj/machinery/light, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"hUy" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 10 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"hUC" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_east_street) -"hUH" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/trash/plate{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/trash/plate{ - pixel_y = -6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"hVw" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"hVB" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"hVN" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/obj/machinery/light, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"hWC" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"hWI" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"hWP" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/obj/effect/turf_decal/warning_stripes/stripedsquare/tile/border, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/b_block/bridge) -"hWR" = ( -/obj/effect/spawner/random/engineering/toolbox, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"hXa" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"hXh" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"hXl" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"hXm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"hXC" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"hYa" = ( -/obj/machinery/light, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"hYu" = ( -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/south_west_street) -"hYC" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"hYS" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"hYT" = ( -/obj/structure/table/mainship, -/obj/item/flashlight/lamp/green, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"hZr" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - desc = "A small desktop computer. Someone has switched to personal emails and disabled the inventory sort system."; - name = "inventory computer" - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"hZK" = ( -/obj/structure/cargo_container/horizontal{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"hZL" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 11; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"hZX" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/fitness) -"hZY" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = 5; - pixel_y = -6 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"iab" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"iaK" = ( -/obj/machinery/light{ - dir = 1; - pixel_x = 16 - }, -/turf/open/floor/prison/whitegreen{ - dir = 1 - }, -/area/gelida/indoors/a_block/medical) -"ibt" = ( -/obj/structure/table/mainship, -/obj/item/storage/fancy/egg_box, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"iby" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"ibV" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"ibY" = ( -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"icj" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"icv" = ( -/obj/machinery/light, -/turf/open/floor/plating, -/area/gelida/powergen) -"icL" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate{ - pixel_y = 11 - }, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = 13; - pixel_y = 12 - }, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"icP" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"icZ" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"idc" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"idz" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"iee" = ( -/obj/structure/fence, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"ien" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"iev" = ( -/obj/machinery/washing_machine{ - pixel_x = 18 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"iey" = ( -/turf/open/floor/podhatch/floor, -/area/gelida/outdoors/colony_streets/north_east_street) -"ieD" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/fitness) -"ieY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"iff" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"ifh" = ( -/obj/structure/rack/nometal, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"ify" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"igb" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/liquid/water/river, -/area/gelida/indoors/a_block/fitness) -"igB" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/closed/wall/r_wall, -/area/gelida/powergen) -"igD" = ( -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"igF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"igJ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/hallway) -"igL" = ( -/turf/open/floor/prison/cleanmarked, -/area/gelida/outdoors/colony_streets/north_west_street) -"igX" = ( -/obj/machinery/button/door/open_only/landing_zone{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"ihl" = ( -/turf/closed/wall, -/area/gelida/indoors/a_block/dorm_north) -"iho" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/east_central_street) -"ihu" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"ihz" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"ihA" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"ihG" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/east_caves/garbledradio) -"ihZ" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/engineering/cable, -/turf/open/floor/plating, -/area/gelida/powergen) -"iiu" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"iiB" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"iiC" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/op_centre) -"iiH" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/hallway) -"iiP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"iiQ" = ( -/obj/structure/rack/nometal, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"ijo" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/freezer, -/area/gelida/indoors/a_block/dorms) -"ijt" = ( -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"ijC" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = -6; - pixel_y = 18 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 9; - pixel_y = 18 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"ijF" = ( -/obj/effect/spawner/random/food_or_drink/kitchenknife/butcherweighted, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"ijG" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/engineering/powercell, -/turf/open/floor/plating, -/area/gelida/powergen) -"ijV" = ( -/obj/structure/stairs/seamless, -/obj/effect/ai_node, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"ikA" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/c_block/cargo) -"ikH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"ikW" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/garden) -"ikZ" = ( -/obj/structure/rack/nometal, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"ilc" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"ilh" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/casino) -"ilj" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"ilz" = ( -/turf/closed/shuttle/dropship2/fins{ - dir = 10 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"ilV" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_east_street) -"ilZ" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"imb" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"imd" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"imm" = ( -/obj/structure/flora/bush{ - pixel_y = 9 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"ind" = ( -/obj/structure/prop/vehicle/truck/truckcargo/destructible, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"inq" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/tile/dark2, -/area/gelida/outdoors/rock) -"int" = ( -/turf/open/floor/prison{ - dir = 5 - }, -/area/gelida/indoors/a_block/hallway) -"inA" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"inS" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/corpo) -"ion" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"iou" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/tool/pen/red, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"ioI" = ( -/obj/structure/cargo_container/wy{ - dir = 1 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_1) -"ioS" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/bridges/corpo) -"ipx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/ai_node, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"ipC" = ( -/obj/structure/closet/basketball, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"ipN" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"iqm" = ( -/turf/closed/wall/r_wall, -/area/gelida/powergen) -"iqP" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/south_west_street) -"iqY" = ( -/obj/structure/table/mainship, -/obj/item/paper, -/obj/item/toy/bikehorn/rubberducky{ - pixel_x = 10; - pixel_y = 7 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"iri" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/dorm_north) -"irr" = ( -/turf/closed/shuttle/dropship2/enginethree{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"irJ" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"irL" = ( -/turf/closed/shuttle/dropship2/interiormisc{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"irN" = ( -/obj/item/stack/rods, -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/b_block/hydro) -"isF" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"itl" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"itw" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/landing_zone_2) -"itG" = ( -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"itI" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/a_block/kitchen) -"itZ" = ( -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "mining_secure_blast_3"; - name = "\improper Secure Blast Door" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/lone_buildings/storage_blocks) -"iuu" = ( -/obj/structure/fence, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/south_street) -"iux" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges/op_centre) -"iuA" = ( -/turf/closed/shuttle/dropship2/cornersalt{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"iuJ" = ( -/turf/closed/wall, -/area/gelida/indoors/b_block/hydro) -"iuN" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"ivg" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"iwh" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/gelida/indoors/c_block/garage) -"iwn" = ( -/obj/machinery/door/airlock/mainship/generic{ - name = "\improper Mining Equipment" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"ixc" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/fitness) -"ixd" = ( -/obj/structure/table/mainship, -/obj/machinery/door/window/secure, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"ixn" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"ixu" = ( -/obj/structure/table/mainship, -/obj/item/tool/stamp/denied{ - pixel_x = -11; - pixel_y = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"ixv" = ( -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"ixw" = ( -/obj/structure/table/mainship, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - name = "synthethic potted plant"; - pixel_y = 14 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"ixx" = ( -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "mining_secure_blast_1"; - name = "\improper Secure Blast Door" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/lone_buildings/storage_blocks) -"ixy" = ( -/obj/structure/dropship_piece/two/front/left{ - dir = 1 - }, -/turf/closed/shuttle/dropship2/front, -/area/gelida/landing_zone_forecon/landing_zone_4) -"ixM" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/south_west_street) -"iya" = ( -/turf/closed/shuttle/dropship2/panels, -/area/gelida/landing_zone_forecon/landing_zone_4) -"iyb" = ( -/obj/structure/sink{ - pixel_y = 26 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/lone_buildings/chunk) -"iyf" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"iyi" = ( -/obj/structure/dropship_piece/two/front/right{ - dir = 1 - }, -/turf/closed/shuttle/dropship2/front{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"iyN" = ( -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"iyQ" = ( -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/chunk) -"izf" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_street) -"izZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/item/tool/surgery/scalpel/manager, -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"iAC" = ( -/obj/machinery/door/poddoor/shutters/mainship/open{ - dir = 8; - id = "A-Block-Dorm Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorm_north) -"iAM" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"iAV" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"iBo" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/gelida/indoors/c_block/garage) -"iBu" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/corpo) -"iBv" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/north_street) -"iBw" = ( -/turf/open/floor/grass, -/area/gelida/indoors/a_block/garden) -"iBO" = ( -/obj/structure/cargo_container, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"iBR" = ( -/obj/structure/prop/vehicle/truck/destructible{ - dir = 8; - pixel_x = 5; - pixel_y = 7 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"iBV" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"iBY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/prison/blue{ - dir = 4 - }, -/area/gelida/indoors/a_block/hallway) -"iCr" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"iCR" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_east_street) -"iCS" = ( -/obj/machinery/computer/shuttle/shuttle_control/dropship{ - pixel_y = -6 - }, -/obj/structure/table/mainship, -/turf/open/floor/prison, -/area/lv624/lazarus/console) -"iDj" = ( -/obj/effect/turf_decal/warning_stripes/thick/corner{ - dir = 8 - }, -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/powergen) -"iDC" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"iDF" = ( -/obj/structure/cargo_container/horizontal, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"iDI" = ( -/obj/structure/rack/nometal, -/obj/item/storage/holster/flarepouch/full, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"iDL" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"iDO" = ( -/turf/closed/wall/r_wall, -/area/gelida/indoors/c_block/garage) -"iDX" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/mining) -"iEh" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/garage) -"iFe" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"iFj" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"iFn" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"iFR" = ( -/obj/effect/spawner/random/engineering/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"iGe" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/testchamber, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"iGX" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"iHf" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"iHo" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"iHW" = ( -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"iIp" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9; - pixel_y = 25 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"iIu" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_street) -"iII" = ( -/obj/structure/bed{ - dir = 10; - name = "bedroll" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/job/survivor, -/obj/structure/cable, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"iIK" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"iJa" = ( -/obj/structure/table/mainship, -/obj/item/ashtray/glass{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/facepaint/black, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"iJc" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_street) -"iJk" = ( -/obj/machinery/light, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/tile/dark2, -/area/gelida/indoors/c_block/mining) -"iJT" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/darkpurple{ - dir = 1 - }, -/area/gelida/indoors/a_block/dorms) -"iJX" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/turf/open/floor/prison/whitegreen{ - dir = 1 - }, -/area/gelida/indoors/a_block/medical) -"iKc" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_street) -"iKi" = ( -/turf/open/floor/plating, -/area/gelida/indoors/a_block/admin) -"iKo" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - name = "\improper Northlock" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/bridges/corpo) -"iKI" = ( -/obj/structure/table/reinforced/prison, -/obj/machinery/computer/operating, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"iKQ" = ( -/obj/structure/table/fancywoodentable, -/obj/effect/spawner/random/misc/cigarettes{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"iLp" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"iLA" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"iLK" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"iLM" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/docking_port/stationary/crashmode, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"iLP" = ( -/obj/structure/table/fancywoodentable, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_forecon/landing_zone_4) -"iLX" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"iMa" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/bridges/op_centre) -"iMh" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"iMn" = ( -/turf/closed/shuttle/dropship2/window{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"iMq" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4; - pixel_x = -9 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"iMx" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/weapon/gun/pistol/m1911, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"iMy" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/hydro) -"iNf" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/bridges) -"iNC" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"iNZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/executive) -"iOj" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/turf/open/floor/prison/blue{ - dir = 4 - }, -/area/gelida/indoors/a_block/admin) -"iOv" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/shuttle/dropship2/wallthree/alt, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"iOB" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"iOR" = ( -/obj/machinery/vending/snack, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"iOZ" = ( -/obj/effect/turf_decal/warning_stripes/thick, -/obj/effect/ai_node, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"iPh" = ( -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"iPj" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"iPn" = ( -/obj/effect/turf_decal/warning_stripes/thick, -/turf/open/floor/plating, -/area/gelida/powergen) -"iQf" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/darkpurple{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"iQL" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/closed/wall/r_wall/unmeltable, -/area/gelida/outdoors/colony_streets/north_east_street) -"iQQ" = ( -/turf/closed/shuttle/dropship2/finleft{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"iQY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"iRm" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"iSy" = ( -/obj/structure/rack/nometal, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"iSB" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"iSG" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"iTh" = ( -/obj/structure/table/mainship, -/obj/item/newspaper, -/obj/machinery/light, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"iTi" = ( -/obj/structure/flora/ausbushes/reedbush{ - pixel_y = 11 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"iTU" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"iUc" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"iUh" = ( -/turf/open/floor/prison/darkbrown/full, -/area/gelida/cavestructuretwo) -"iUl" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"iUm" = ( -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/corpo) -"iUo" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/dorm_north) -"iUt" = ( -/turf/open/floor/prison/blue{ - dir = 6 - }, -/area/gelida/indoors/a_block/admin) -"iUX" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/black/full, -/area/gelida/outdoors/rock) -"iVD" = ( -/turf/closed/wall, -/area/gelida/indoors/a_block/kitchen) -"iVJ" = ( -/obj/structure/prop/vehicle/truck/destructible, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"iVU" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/corpo) -"iWI" = ( -/obj/structure/filingcabinet{ - pixel_x = -9 - }, -/obj/structure/filingcabinet{ - pixel_x = 7 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"iXr" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"iXG" = ( -/turf/closed/shuttle/dropship2/rearcorner/alt{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"iXM" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"iXO" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"iXP" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/c_block/cargo) -"iYg" = ( -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/bridges/corpo_fitness) -"iYi" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_east_street) -"iYs" = ( -/obj/effect/spawner/random/misc/structure/curtain/medical, -/turf/open/floor/prison/whitegreen{ - dir = 4 - }, -/area/gelida/indoors/a_block/medical) -"iYA" = ( -/obj/structure/rack/nometal, -/obj/item/tool/shovel/spade{ - pixel_x = -4 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 4 - }, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"iYC" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"iYK" = ( -/turf/closed/shuttle/dropship2/fins{ - dir = 9 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"iYZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"iZn" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"iZp" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"iZq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"iZz" = ( -/obj/machinery/suit_storage_unit{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"iZH" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_east_street) -"jac" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/kitchen) -"jan" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_street) -"jaz" = ( -/obj/effect/turf_decal/warning_stripes/thick, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"jaB" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/freezer, -/area/gelida/outdoors/colony_streets/south_east_street) -"jaJ" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/prop/mainship/gelida/smallwire, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"jaT" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/east_central_street) -"jaU" = ( -/obj/effect/turf_decal/warning_stripes/thick, -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/powergen) -"jbg" = ( -/obj/structure/stairs/corner_seamless, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"jbr" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/bridges/corpo) -"jbA" = ( -/obj/machinery/door/poddoor/mainship{ - dir = 8; - id = "West LZ Storage"; - name = "Emergency Lockdown" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/lone_buildings/storage_blocks) -"jcm" = ( -/obj/machinery/landinglight/lz1, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"jcs" = ( -/obj/effect/turf_decal/warning_stripes/thick/corner{ - dir = 4 - }, -/obj/effect/spawner/random/food_or_drink/kitchen, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"jcI" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/east_central_street) -"jcT" = ( -/obj/effect/spawner/random/engineering/wood, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"jcZ" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/structure/cable, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"jdh" = ( -/turf/closed/shuttle/dropship2/corners, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"jdk" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/bridge) -"jdO" = ( -/obj/machinery/landinglight/lz1{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"jdX" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen{ - dir = 8 - }, -/area/gelida/indoors/a_block/medical) -"jeL" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"jfk" = ( -/obj/item/shard, -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/hallway) -"jfN" = ( -/obj/effect/spawner/random/misc/structure/curtain, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/executive) -"jfU" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/chips, -/obj/item/trash/buritto, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"jfW" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/hydro) -"jfY" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"jgj" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/secureweighted, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/bridges/op_centre) -"jgu" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"jgG" = ( -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"jgN" = ( -/obj/effect/ai_node, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"jgO" = ( -/obj/structure/table/gamblingtable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"jhc" = ( -/obj/structure/prop/vehicle/truck/destructible{ - dir = 8; - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/east_central_street) -"jhw" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"jhS" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"jio" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 6 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"jjc" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"jjj" = ( -/obj/structure/table/mainship, -/obj/item/clothing/head/helmet/riot, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"jjD" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"jjX" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"jkr" = ( -/obj/effect/landmark/start/job/xenomorph, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"jkC" = ( -/obj/machinery/optable, -/turf/open/floor/prison/sterilewhite, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"jkK" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"jkP" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_east_street) -"jlx" = ( -/obj/structure/rack/nometal, -/obj/item/tool/shovel/spade{ - pixel_x = -4 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 4 - }, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"jly" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/corpo) -"jlX" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/admin) -"jmj" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_1) -"jmn" = ( -/obj/structure/cargo_container/wy{ - dir = 4 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"jmO" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"jmQ" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker" - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"jnm" = ( -/obj/effect/spawner/random/engineering/structure/tank/fuelweighted, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"jno" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"jnF" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/admin) -"jnP" = ( -/obj/structure/table/mainship, -/obj/item/stack/sheet/wood/large_stack, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"joQ" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"jph" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/south_west_street) -"jpS" = ( -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/landing_zone_1) -"jpU" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"jpV" = ( -/turf/closed/shuttle/dropship2/walltwo/alt, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"jpY" = ( -/obj/structure/table/mainship, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/item/trash/plate{ - pixel_x = 6 - }, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = -3; - pixel_y = 12 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = 11 - }, -/obj/effect/spawner/random/food_or_drink/kitchenknife{ - pixel_x = -11 - }, -/obj/effect/spawner/random/food_or_drink/burger{ - pixel_x = 4; - pixel_y = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"jqp" = ( -/obj/structure/table/mainship, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 9 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 3 - }, -/obj/item/tool/kitchen/tray{ - pixel_y = 3 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"jqs" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_west_street) -"jqF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"jqL" = ( -/obj/machinery/miner/damaged, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_street) -"jqP" = ( -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"jqY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"jrp" = ( -/turf/closed/shuttle/dropship2/glassfive, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"jrq" = ( -/obj/effect/turf_decal/warning_stripes/thick, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"jrs" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"jry" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"jrU" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"jrY" = ( -/obj/machinery/vending/medical, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen{ - dir = 4 - }, -/area/gelida/indoors/a_block/medical) -"jsc" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"jsm" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"jsz" = ( -/obj/item/trash/liquidfood, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"jsB" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"jtq" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"jtE" = ( -/obj/machinery/vending/snack, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"jtM" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"jtO" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"jua" = ( -/obj/machinery/door/poddoor/shutters/mainship{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/cavestructuretwo) -"jue" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/gelida/landing_zone_2) -"jum" = ( -/obj/machinery/floodlight/colony{ - pixel_y = 9 - }, -/obj/structure/platform{ - dir = 15 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/outdoors/colony_streets/south_east_street) -"juG" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"juQ" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"jvl" = ( -/obj/machinery/light, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"jvz" = ( -/obj/effect/spawner/random/engineering/ore_box, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/lone_buildings/storage_blocks) -"jvM" = ( -/obj/item/reagent_containers/glass/rag, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"jvV" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/fitness) -"jwa" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/machinery/light, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"jwF" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 9 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"jwG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"jwQ" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"jwX" = ( -/obj/effect/acid_hole, -/turf/closed/wall, -/area/gelida/indoors/lone_buildings/chunk) -"jxf" = ( -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"jxi" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"jxv" = ( -/obj/structure/rack/nometal, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 6 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -6 - }, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"jxz" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"jxG" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"jxI" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"jyo" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"jyV" = ( -/obj/item/tool/hatchet, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"jyY" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/south_west_street) -"jzO" = ( -/obj/structure/stairs/seamless, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison{ - dir = 9 - }, -/area/gelida/indoors/b_block/bridge) -"jzP" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - name = "\improper Corporation Dome" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/corpo) -"jAp" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/hydro) -"jAU" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"jBn" = ( -/obj/structure/table/fancywoodentable, -/obj/machinery/computer/security/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 8; - name = "Television set"; - network = list("military"); - pixel_x = 3; - pixel_y = -5 - }, -/obj/item/ashtray/bronze{ - pixel_x = -7; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/security) -"jBv" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"jBT" = ( -/obj/item/ammo_magazine/rifle/ar11{ - current_rounds = 0 - }, -/turf/open/floor/prison/darkpurple{ - dir = 1 - }, -/area/gelida/indoors/a_block/dorms) -"jBU" = ( -/turf/open/floor/plating, -/area/gelida/caves/west_caves) -"jCt" = ( -/obj/machinery/computer/shuttle/shuttle_control/dropship{ - pixel_y = -9 - }, -/obj/structure/table/mainship, -/turf/open/floor/prison/cleanmarked, -/area/lv624/lazarus/console) -"jDu" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 4 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"jDy" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/fitness) -"jDz" = ( -/turf/closed/shuttle/dropship2/fins{ - dir = 10 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"jDB" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 5 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"jDC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/powergen) -"jEw" = ( -/obj/machinery/light, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges) -"jFo" = ( -/turf/closed/shuttle/dropship2/fins, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"jFW" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"jGE" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"jGH" = ( -/obj/machinery/vending/cigarette/colony, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"jGW" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/corpo) -"jHe" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/south_east_street) -"jHl" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/central_streets) -"jHA" = ( -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"jIb" = ( -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/east_central_street) -"jIc" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"jIg" = ( -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_east_street) -"jIr" = ( -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"jIV" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"jJn" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/bridge) -"jJI" = ( -/obj/item/shard, -/obj/structure/window_frame/colony, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/admin) -"jJK" = ( -/obj/effect/spawner/random/engineering/pickaxe, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_east_street) -"jJS" = ( -/obj/structure/table/mainship, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"jJX" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/intel_computer, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"jKd" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"jKg" = ( -/obj/item/clothing/under/swimsuit/green{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/structure/bed/chair/sofa/corsat, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"jKM" = ( -/obj/item/toy/beach_ball, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/prison{ - dir = 9 - }, -/area/gelida/indoors/a_block/dorm_north) -"jKV" = ( -/obj/effect/turf_decal/tile/full/black, -/obj/effect/landmark/start/job/xenomorph, -/turf/open/floor/plating, -/area/gelida/powergen) -"jKW" = ( -/obj/effect/turf_decal/tile/full/black, -/turf/open/floor/plating, -/area/gelida/powergen) -"jLe" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/corpo) -"jLi" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"jLj" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"jLF" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"jLO" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"jMf" = ( -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"jMk" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 8 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"jMm" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/gelida/indoors/c_block/garage) -"jMn" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"jMq" = ( -/obj/structure/prop/vehicle/truck/destructible{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"jMr" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"jMM" = ( -/obj/structure/cargo_container{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"jMU" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"jMX" = ( -/obj/structure/cargo_container, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_forecon/landing_zone_4) -"jMY" = ( -/obj/structure/table/reinforced/prison, -/obj/item/tool/soap{ - pixel_x = 5 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/stack/nanopaste{ - pixel_x = 8; - pixel_y = 15 - }, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"jNe" = ( -/obj/structure/prop/mainship/gelida/propserveralt, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"jNn" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"jNs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/powergen) -"jNG" = ( -/obj/effect/spawner/random/misc/structure/curtain, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"jNL" = ( -/obj/structure/cargo_container/ch_red{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"jOp" = ( -/obj/structure/closet/crate, -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"jOx" = ( -/obj/machinery/door/airlock/mainship/generic{ - name = "Showeroom" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/executive) -"jOD" = ( -/obj/effect/spawner/random/misc/folder/nooffset{ - pixel_x = 16; - pixel_y = 14 - }, -/obj/effect/turf_decal/symbol/large_rune, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"jOE" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/tile/dark2, -/area/gelida/indoors/c_block/mining) -"jOH" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"jOU" = ( -/obj/structure/rack/nometal, -/obj/item/storage/bag/ore, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_street) -"jOV" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/south_west_street) -"jPr" = ( -/obj/machinery/prop/computer/PC{ - dir = 4; - pixel_y = 7 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"jPy" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"jQc" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"jQd" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/powergen) -"jQe" = ( -/obj/machinery/door/poddoor/shutters/mainship{ - dir = 4; - id = "fitness_dorm_bridge" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"jQr" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"jQx" = ( -/turf/open/floor/prison/whitegreen{ - dir = 10 - }, -/area/gelida/indoors/a_block/medical) -"jQE" = ( -/obj/structure/closet/crate, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"jQO" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"jRa" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"jRd" = ( -/obj/item/tool/wet_sign{ - pixel_x = -11; - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"jRe" = ( -/obj/structure/table/mainship, -/obj/item/cell/high{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/cell/high{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"jRg" = ( -/obj/machinery/power/port_gen/pacman/mrs, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"jRk" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"jRs" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"jRz" = ( -/obj/machinery/light, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/bridges/op_centre) -"jRE" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen{ - dir = 1 - }, -/area/gelida/indoors/a_block/medical) -"jRF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"jRM" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"jRO" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 4; - pixel_y = 3 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"jRQ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"jRU" = ( -/obj/structure/window_frame/colony, -/obj/effect/spawner/random/misc/shard, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"jSb" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bridge) -"jSe" = ( -/obj/item/trash/mre, -/obj/effect/ai_node, -/turf/open/floor/prison/blue{ - dir = 6 - }, -/area/gelida/indoors/a_block/admin) -"jSf" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"jSq" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_street) -"jSP" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"jSQ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"jTb" = ( -/obj/item/trash/burger, -/turf/open/floor/prison/blue, -/area/gelida/indoors/a_block/admin) -"jTc" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"jTv" = ( -/turf/closed/wall, -/area/gelida/indoors/b_block/bridge) -"jTA" = ( -/obj/structure/table/mainship, -/obj/item/tool/kitchen/tray{ - pixel_x = 12; - pixel_y = -6 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 20; - pixel_y = -5 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 8; - pixel_y = -5 - }, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"jTH" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/freezer, -/area/gelida/indoors/a_block/dorms) -"jTN" = ( -/obj/machinery/photocopier, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"jTP" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"jTQ" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_west_street) -"jUt" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/powergen) -"jUS" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/medical) -"jVa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"jVI" = ( -/obj/item/shard, -/obj/structure/window_frame/colony, -/obj/structure/platform, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"jVJ" = ( -/obj/machinery/door_control{ - id = "fitness_dorm_bridge" - }, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"jVO" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/testchamber, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"jVX" = ( -/obj/structure/table/mainship, -/obj/item/weapon/gun/rifle/ar11, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"jWo" = ( -/obj/structure/cargo_container, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"jWM" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"jXi" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"jXE" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"jXL" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"jXM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/op_centre) -"jXZ" = ( -/turf/open/floor/prison/darkpurple{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"jYs" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/north_street) -"jYP" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"jZM" = ( -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/east_central_street) -"jZN" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"kab" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9; - pixel_y = 25 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"kat" = ( -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"kaD" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/admin) -"kaN" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"kbp" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"kbC" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/blue{ - dir = 4 - }, -/area/gelida/indoors/a_block/hallway) -"kcf" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/weaponry/gun/sidearms, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"kci" = ( -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"kcw" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"kcF" = ( -/obj/structure/dropship_piece/two/front{ - dir = 1 - }, -/turf/closed/shuttle/dropship2/front{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"kcG" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"kcN" = ( -/turf/closed/wall, -/area/gelida/outdoors/colony_streets/central_streets) -"kcP" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/corpo) -"kcY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"kda" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"kds" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"kdz" = ( -/turf/closed/shuttle/dropship2/enginefive, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"kdO" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_street) -"kdQ" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/south_west_street) -"kdS" = ( -/obj/machinery/vending/snack{ - pixel_y = 16 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"kel" = ( -/turf/open/floor/prison{ - dir = 8 - }, -/area/gelida/indoors/c_block/cargo) -"ker" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"keT" = ( -/obj/machinery/light, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/op_centre) -"kfd" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"kfv" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1; - name = "\improper Executive Suite" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/executive) -"kfK" = ( -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/op_centre) -"kfN" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"kgx" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"kgz" = ( -/turf/closed/shuttle/dropship2/finback, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"kgE" = ( -/obj/item/shard, -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"kgP" = ( -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/corpo_fitness) -"kgY" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_west_street) -"khd" = ( -/obj/item/weapon/telebaton, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"khi" = ( -/obj/machinery/miner/damaged/platinum, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"khq" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1; - name = "\improper Family Dormitories" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"kht" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 6 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"khy" = ( -/obj/machinery/door/airlock/hatch/cockpit/two, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"khJ" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"kig" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/security/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 4; - name = "Television set"; - network = null; - pixel_y = 4 - }, -/obj/machinery/light, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"kio" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/job/xenomorph, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"kiD" = ( -/obj/item/tool/screwdriver{ - pixel_x = -8; - pixel_y = 9 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"kiM" = ( -/obj/item/target{ - name = "punching bag" - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"kiW" = ( -/obj/machinery/computer/body_scanconsole, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"kjd" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/corner_seamless, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"kji" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/blue{ - dir = 4 - }, -/area/gelida/indoors/a_block/admin) -"kjq" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"kjs" = ( -/obj/item/shard, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"kjB" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"kjD" = ( -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/east_caves/garbledradio) -"kky" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"kkG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"klt" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"klZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/bridges/op_centre) -"kmg" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"knc" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_east_street) -"knI" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/north_west_street) -"knQ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/bridges) -"knX" = ( -/obj/structure/table/mainship, -/obj/item/tool/kitchen/tray{ - pixel_y = 5 - }, -/obj/item/tool/kitchen/tray{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"kom" = ( -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"kow" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"kpb" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"kpf" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/east_central_street) -"kpl" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"kpt" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"kpE" = ( -/obj/structure/closet, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"kpF" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/east_central_street) -"kqs" = ( -/turf/open/floor/plating, -/area/gelida/landing_zone_1) -"kqw" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"kqK" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_street) -"kqQ" = ( -/obj/structure/stairs/corner_seamless, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"kqS" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorm_north) -"kra" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"krt" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"kru" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/b_block/hydro) -"krA" = ( -/obj/effect/spawner/random/misc/structure/curtain, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"krB" = ( -/obj/structure/prop/vehicle/truck/destructible, -/turf/open/floor/plating, -/area/gelida/powergen) -"krK" = ( -/obj/structure/fence, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/south_street) -"krP" = ( -/obj/item/storage/backpack/marine/engineerpack, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"krZ" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_street) -"ksh" = ( -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/south_east_street) -"ksC" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"ksQ" = ( -/turf/open/floor/prison/blue{ - dir = 5 - }, -/area/gelida/indoors/a_block/admin) -"ktM" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"ktT" = ( -/turf/open/floor/prison/blue{ - dir = 9 - }, -/area/gelida/indoors/a_block/admin) -"kuq" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/outdoors/colony_streets/south_east_street) -"kuB" = ( -/obj/structure/flora/ausbushes/reedbush{ - pixel_y = 11 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/cavestructuretwo) -"kuI" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"kvz" = ( -/obj/structure/stairs/seamless, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"kvJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/mining) -"kwo" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"kwz" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"kwJ" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 4 - }, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/plating, -/area/gelida/powergen) -"kxc" = ( -/obj/item/shard, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"kxd" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"kxi" = ( -/obj/structure/flora/ausbushes/stalkybush{ - pixel_y = 12 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"kxB" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/op_centre) -"kxK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/full/black, -/obj/effect/abstract/tele_blocker, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/c_block/mining) -"kxO" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"kxZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/plate, -/area/gelida/indoors/c_block/cargo) -"kyf" = ( -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = -6; - pixel_y = 24 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"kym" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"kyO" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/door_control{ - id = "mining_secure_blast_3"; - name = "Blast Door Control" - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/lone_buildings/storage_blocks) -"kzf" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"kzB" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"kzD" = ( -/turf/open/floor/prison/whitegreen{ - dir = 8 - }, -/area/gelida/indoors/a_block/medical) -"kzQ" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 4; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"kzY" = ( -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = -5 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"kAF" = ( -/obj/structure/cargo_container{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"kAU" = ( -/turf/closed/shuttle/dropship2/panels{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"kBE" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/engineering/toolbox{ - pixel_y = 8 - }, -/obj/effect/spawner/random/engineering/toolbox, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"kBX" = ( -/obj/structure/bed/stool, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"kBZ" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/effect/turf_decal/warning_stripes, -/obj/effect/turf_decal/warning_stripes/nscenter, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"kCQ" = ( -/obj/structure/table/reinforced/prison, -/obj/item/restraints/handcuffs/cable/white{ - pixel_y = 4 - }, -/obj/item/restraints/handcuffs/cable/white, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"kCS" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/security) -"kCY" = ( -/obj/machinery/floodlight/colony{ - pixel_y = 9 - }, -/obj/effect/turf_decal/warning_stripes/stripedsquare/tile/border, -/obj/structure/platform{ - dir = 15 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/outdoors/colony_streets/north_east_street) -"kDa" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"kDw" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"kDS" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"kDT" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/pickaxe, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/lone_buildings/storage_blocks) -"kDV" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9; - pixel_y = 15 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"kDZ" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"kEc" = ( -/obj/structure/table/mainship, -/obj/machinery/door_control{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - pixel_x = -4; - pixel_y = 2 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"kEf" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"kEl" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8; - pixel_x = -4 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"kEn" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"kEG" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate, -/obj/item/trash/eat, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"kEQ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"kFi" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"kFE" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/prison/blue{ - dir = 8 - }, -/area/gelida/indoors/a_block/admin) -"kFS" = ( -/turf/closed/shuttle/dropship2/fins{ - dir = 6 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"kFU" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel, -/obj/item/ore/uranium, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_street) -"kGz" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"kGR" = ( -/turf/open/floor/prison/blue{ - dir = 5 - }, -/area/gelida/indoors/a_block/hallway) -"kGX" = ( -/obj/structure/prop/vehicle/truck/destructible, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"kHD" = ( -/obj/item/pipe{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/mining) -"kHJ" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"kHK" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"kHL" = ( -/obj/effect/ai_node, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"kHM" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/corpo) -"kHR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/prison/blue{ - dir = 10 - }, -/area/gelida/indoors/a_block/hallway) -"kIz" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9; - pixel_y = 25 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"kIA" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/clothing/shoes/marine, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/corpo) -"kIS" = ( -/obj/item/clipboard, -/turf/open/floor/plating, -/area/gelida/outdoors/colony_streets/south_east_street) -"kJl" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"kJs" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/blue{ - dir = 5 - }, -/area/gelida/indoors/a_block/hallway) -"kJy" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"kJz" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"kJL" = ( -/turf/open/floor/plating, -/area/gelida/indoors/a_block/corpo) -"kJT" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_street) -"kKh" = ( -/obj/effect/spawner/random/misc/structure/curtain/medical, -/turf/open/floor/prison/whitegreen{ - dir = 10 - }, -/area/gelida/indoors/a_block/medical) -"kKi" = ( -/obj/structure/cargo_container, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"kKk" = ( -/obj/docking_port/stationary/marine_dropship/lz2, -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/shuttle/drop2/gelida) -"kKo" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/open/floor/grass, -/area/gelida/indoors/a_block/garden) -"kKy" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -4; - pixel_y = 11 - }, -/obj/effect/spawner/random/food_or_drink/donut{ - pixel_x = 4; - pixel_y = 3 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"kKK" = ( -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"kLw" = ( -/obj/structure/table/reinforced/prison, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"kLy" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"kLO" = ( -/obj/structure/bookcase{ - pixel_x = 2; - pixel_y = 16 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"kMe" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"kMm" = ( -/obj/effect/ai_node, -/turf/open/shuttle/dropship/three, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"kMv" = ( -/obj/effect/ai_node, -/turf/open/shuttle/dropship/three, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"kMz" = ( -/obj/structure/table/mainship, -/obj/item/flashlight/lamp, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"kMF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"kMG" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_street) -"kMO" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"kNj" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_west_street) -"kNm" = ( -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"kNu" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"kNv" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_east_street) -"kNF" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/fitness) -"kNO" = ( -/obj/effect/abstract/tele_blocker, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/c_block/mining) -"kNR" = ( -/obj/effect/ai_node, -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves/garbledradio) -"kNT" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"kOf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/obj/effect/ai_node, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"kOy" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/east_central_street) -"kON" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges) -"kOP" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"kPa" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"kPH" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"kPS" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"kPU" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_west_street) -"kQh" = ( -/obj/vehicle/ridden/powerloader{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"kQj" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"kQr" = ( -/obj/structure/table/mainship, -/obj/item/newspaper, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"kRn" = ( -/turf/closed/wall, -/area/gelida/outdoors/colony_streets/south_east_street) -"kRu" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood, -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/b_block/bar) -"kSs" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"kST" = ( -/obj/machinery/miner/damaged/platinum, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves/garbledradio) -"kTi" = ( -/obj/item/tool/lighter/random{ - pixel_x = -4; - pixel_y = 13 - }, -/obj/structure/table/mainship, -/obj/item/ashtray/plastic{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/obj/item/paper/crumpled/bloody{ - pixel_x = -9 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"kTs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"kTF" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"kTN" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/prison{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"kUd" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/twoside/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/south_west_street) -"kUg" = ( -/turf/closed/shuttle/dropship2/enginethree{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"kUo" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4; - pixel_x = 4 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"kUD" = ( -/obj/item/prop/dogtag/pfcjim, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"kUF" = ( -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"kVc" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/item/shard, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"kVt" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"kVA" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/chunk) -"kVQ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"kVR" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"kVX" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"kVY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"kWr" = ( -/obj/structure/inflatable/wall{ - dir = 1 - }, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"kWv" = ( -/obj/structure/bed/stool, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"kWO" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"kWP" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 2 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/hallway) -"kXf" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 8; - name = "\improper Wildcatters Office" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"kYj" = ( -/obj/machinery/conveyor/inverted{ - dir = 9 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"kYx" = ( -/obj/structure/table/mainship, -/obj/item/toy/bikehorn/rubberducky, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"kYJ" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 17 - }, -/obj/item/shard, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"kYP" = ( -/obj/item/tool/shovel, -/obj/structure/closet/crate, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/lone_buildings/storage_blocks) -"kZs" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 5 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_street) -"kZt" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"kZA" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/south_street) -"kZQ" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"kZW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/docking_port/stationary/crashmode, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"laK" = ( -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"laV" = ( -/obj/structure/largecrate, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison/plate, -/area/gelida/landing_zone_2) -"lbu" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_y = 16 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"lby" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/powergen) -"lbJ" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"lcg" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"lcj" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/gelida/indoors/a_block/garden) -"lcm" = ( -/obj/structure/platform_decoration, -/obj/item/reagent_containers/food/drinks/flask/marine, -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"lcx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"lcI" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/structure/prop/mainship/gelida/powerconnector{ - dir = 1 - }, -/obj/machinery/computer/intel_computer, -/turf/open/floor/plating, -/area/gelida/outdoors/colony_streets/central_streets) -"ldv" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"ldz" = ( -/obj/structure/table/reinforced/prison, -/obj/machinery/computer/security/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 4; - name = "Television set"; - network = null; - pixel_y = 3 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"ldA" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/medical) -"lev" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"leP" = ( -/turf/closed/shuttle/dropship2/enginetwo{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"leZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"lfd" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_street) -"lfG" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"lfM" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitegreen{ - dir = 1 - }, -/area/gelida/indoors/a_block/medical) -"lgh" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/darkpurple, -/area/gelida/indoors/a_block/dorms) -"lgi" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1; - name = "\improper Corporation Office" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/corpo) -"lgj" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"lgr" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"lgV" = ( -/obj/item/pipe{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/sign/securearea, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/mining) -"lhb" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/closed/wall/r_wall, -/area/gelida/outdoors/colony_streets/windbreaker) -"lhk" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"lhA" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"lhD" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"lhF" = ( -/obj/machinery/vending/snack, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"lhR" = ( -/obj/structure/cargo_container{ - dir = 1 - }, -/turf/open/floor/plating/platebot, -/area/gelida/indoors/c_block/cargo) -"lhY" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"lia" = ( -/obj/machinery/door/airlock/mainship/generic{ - name = "Showeroom" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tracks/wheels/bloody{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/executive) -"lie" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"lii" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/medical/heal_pack/bruteweighted, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"lir" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"liP" = ( -/obj/structure/window/framed/colony, -/obj/effect/spawner/random/misc/structure/curtain, -/obj/structure/platform, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/garage) -"liQ" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"lkt" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/item/trash/mre, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"lkC" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/platform_decoration, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/cargo) -"lkF" = ( -/obj/structure/table/mainship, -/obj/machinery/microwave{ - pixel_y = 9 - }, -/obj/item/trash/plate{ - pixel_x = 2; - pixel_y = 20 - }, -/obj/item/reagent_containers/food/snacks/sandwiches/grilled_cheese_sandwich{ - pixel_y = 27 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"lkH" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"lkM" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkpurple{ - dir = 1 - }, -/area/gelida/indoors/a_block/dorms) -"lkU" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/corpo) -"llH" = ( -/obj/structure/window/reinforced, -/obj/structure/showcase/six, -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/podhatch/floor, -/area/gelida/indoors/a_block/corpo) -"llK" = ( -/obj/item/ammo_magazine/rifle/ar11{ - current_rounds = 0 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"llO" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_west_street) -"lmc" = ( -/obj/structure/table/reinforced/prison, -/obj/structure/window, -/obj/machinery/prop/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"lmI" = ( -/obj/machinery/sleeper, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"lmN" = ( -/obj/structure/flora/ausbushes/reedbush{ - pixel_y = 11 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/cavestructuretwo) -"lnc" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/effect/ai_node, -/turf/open/floor/prison/blue{ - dir = 9 - }, -/area/gelida/indoors/a_block/admin) -"lnk" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"lnr" = ( -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = -11; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"lnv" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"lnx" = ( -/obj/machinery/light{ - dir = 1; - pixel_x = 16 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/bridge) -"lnz" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 8 - }, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/plating, -/area/gelida/powergen) -"lnC" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/gelida/powergen) -"lnU" = ( -/obj/effect/ai_node, -/obj/machinery/landinglight/lz1{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_2) -"loy" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/powergen) -"loB" = ( -/obj/item/stack/sheet/wood/large_stack, -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"loO" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/east_central_street) -"lpr" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/gelida/indoors/c_block/cargo) -"lpZ" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"lqf" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/south_street) -"lqs" = ( -/obj/structure/rack/nometal, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"lqI" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/turf/open/floor/prison, -/area/gelida/landing_zone_2) -"lqR" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorm_north) -"lqV" = ( -/obj/structure/stairs/seamless, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_street) -"lqX" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"lrb" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = -6; - pixel_y = 15 - }, -/obj/item/trash/plate, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"lrT" = ( -/obj/structure/rack/nometal, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/silver, -/obj/item/ore/silver, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"lrW" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/freezer, -/area/gelida/indoors/a_block/dorms) -"lrX" = ( -/obj/item/clothing/head/hardhat/white, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 7; - pixel_y = 17 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"lrY" = ( -/obj/machinery/door/airlock/mainship/engineering{ - name = "\improper Cargo Bay Break Room" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/cargo) -"lsi" = ( -/turf/closed/wall/r_wall, -/area/gelida/outdoors/rock) -"lsj" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/a_block/kitchen) -"lsJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"lsR" = ( -/obj/machinery/portable_atmospherics/canister{ - pixel_y = 18 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"ltF" = ( -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"ltL" = ( -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/c_block/bridge) -"luE" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 8; - pixel_y = 19 - }, -/obj/structure/filingcabinet{ - pixel_x = -7; - pixel_y = 19 - }, -/obj/item/shard, -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"luX" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 8; - name = "\improper Dormitories" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/hallway) -"lve" = ( -/obj/structure/table/mainship, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"lvE" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_street) -"lvH" = ( -/obj/effect/spawner/random/engineering/ore_box, -/obj/item/tool/weldpack{ - pixel_y = 17 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"lvQ" = ( -/obj/structure/stairs/seamless, -/turf/open/shuttle/dropship/three, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"lwk" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"lwq" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 8; - name = "\improper Wildcatters Office" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"lwz" = ( -/obj/structure/closet/crate/ammo, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"lwT" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"lwY" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"lxt" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"lyz" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/structure/cable, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"lyG" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/n_rockies) -"lzg" = ( -/obj/machinery/portable_atmospherics/canister{ - pixel_x = -1; - pixel_y = 25 - }, -/obj/machinery/portable_atmospherics/canister{ - pixel_x = 8; - pixel_y = 15 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"lzh" = ( -/obj/structure/rack/nometal, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"lzk" = ( -/obj/structure/closet/wardrobe/medic_white, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"lzP" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"lzU" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"lzV" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"lzZ" = ( -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"lAh" = ( -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"lAi" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"lAq" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"lAA" = ( -/turf/closed/wall, -/area/gelida/indoors/lone_buildings/chunk) -"lAB" = ( -/obj/effect/turf_decal/tile/full/black, -/obj/effect/spawner/random/engineering/powercell, -/turf/open/floor/plating, -/area/gelida/powergen) -"lAW" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/bridge) -"lAY" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/executive) -"lBi" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/bridges/op_centre) -"lBm" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/landing_zone_2) -"lBy" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/tool{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"lBH" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/landing_zone_forecon/landing_zone_4) -"lBN" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"lCf" = ( -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = -12 - }, -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = -10; - pixel_y = 18 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"lCJ" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/b_block/bar) -"lCR" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"lCW" = ( -/obj/item/clothing/head/welding, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"lDt" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes, -/obj/effect/turf_decal/warning_stripes/nscenter, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"lDR" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/gelida/landing_zone_forecon/landing_zone_4) -"lDZ" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/bridge) -"lEj" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"lEm" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bridge) -"lEp" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"lEy" = ( -/obj/structure/inflatable/wall, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"lEI" = ( -/turf/open/floor/plating/ground/ice, -/area/gelida/powergen) -"lEJ" = ( -/obj/structure/cable, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"lEZ" = ( -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/plating, -/area/gelida/powergen) -"lFj" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"lFC" = ( -/obj/structure/cargo_container/ch_red{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"lFR" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/closed/mineral/smooth/snowrock, -/area/gelida/outdoors/rock) -"lHs" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/powergen) -"lHx" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/hallway) -"lHB" = ( -/obj/structure/rack/nometal, -/obj/machinery/light, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/lone_buildings/storage_blocks) -"lHD" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"lHK" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/south_street) -"lHZ" = ( -/obj/effect/ai_node, -/turf/open/shuttle/dropship/five, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"lIA" = ( -/obj/structure/bed, -/obj/structure/bed{ - buckling_y = 13; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"lIC" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"lIG" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"lIK" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"lIX" = ( -/obj/effect/ai_node, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"lJo" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 9 - }, -/obj/item/reagent_containers/food/condiment/saltshaker, -/obj/item/tool/kitchen/tray{ - pixel_y = 3 - }, -/obj/item/reagent_containers/food/snacks/sandwiches/tofubreadslice{ - pixel_x = -7 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"lJE" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"lJJ" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/bridges/corpo) -"lJV" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"lKi" = ( -/obj/structure/rack/nometal, -/obj/item/clothing/mask/breath{ - pixel_x = -2 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -6 - }, -/obj/item/tank/emergency_oxygen{ - pixel_x = 6; - pixel_y = 1 - }, -/obj/item/tank/emergency_oxygen{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor/tile/dark2{ - dir = 4 - }, -/area/gelida/outdoors/rock) -"lKp" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform{ - dir = 10 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"lKM" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 10 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_east_street) -"lLD" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"lLK" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"lLP" = ( -/obj/effect/spawner/random/misc/folder/nooffset{ - pixel_x = -9; - pixel_y = -12 - }, -/obj/item/newspaper{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/effect/turf_decal/tracks/wheels/bloody{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"lMj" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"lMo" = ( -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"lMv" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/b_block/bridge) -"lMx" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/prison/plate, -/area/gelida/landing_zone_1) -"lMz" = ( -/obj/structure/inflatable/wall{ - dir = 1 - }, -/obj/structure/inflatable/wall{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"lMI" = ( -/obj/structure/mecha_wreckage/ripley, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/op_centre) -"lMM" = ( -/obj/machinery/power/geothermal, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"lMU" = ( -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"lMX" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"lMZ" = ( -/obj/structure/table/reinforced/prison, -/obj/machinery/prop/computer/PC{ - dir = 4 - }, -/obj/structure/window, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"lOf" = ( -/obj/structure/bed/chair/comfy, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"lOq" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/landing_zone_2) -"lOA" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/prison/whitegreen, -/area/gelida/indoors/a_block/medical) -"lOW" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"lPd" = ( -/obj/structure/cargo_container{ - dir = 4 - }, -/turf/open/floor/plating/platebot, -/area/gelida/indoors/c_block/cargo) -"lPQ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/cargo) -"lQo" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"lQD" = ( -/obj/structure/table/fancywoodentable, -/obj/effect/spawner/random/misc/paperbin{ - pixel_y = 8 - }, -/obj/item/tool/pen, -/obj/item/tool/pen/red{ - pixel_y = 6 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"lQF" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"lQO" = ( -/turf/open/shuttle/dropship/three, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"lRb" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bridge) -"lRq" = ( -/obj/effect/spawner/random/machinery/machine_frame, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"lRN" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/structure/prop/mainship/gelida/smallwire, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/stack/cable_coil{ - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"lRV" = ( -/turf/open/floor/prison/darkpurple{ - dir = 8 - }, -/area/gelida/indoors/a_block/dorms) -"lRX" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"lSo" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"lSR" = ( -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/mining) -"lST" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"lTj" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"lTA" = ( -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges/corpo) -"lTK" = ( -/obj/machinery/door/airlock/mainship/engineering{ - name = "\improper Cargo Bay Storage" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/cargo) -"lTL" = ( -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/east_central_street) -"lTM" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"lTQ" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/cargo) -"lTT" = ( -/obj/structure/flora/ausbushes{ - pixel_y = 8 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"lUa" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall, -/area/gelida/indoors/c_block/garage) -"lUi" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plating, -/area/gelida/cavestructuretwo) -"lVd" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges) -"lVp" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"lVs" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"lVu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"lVy" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/blue{ - dir = 4 - }, -/area/gelida/indoors/a_block/admin) -"lVD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mainship/stripesquare, -/area/gelida/powergen) -"lWb" = ( -/obj/effect/turf_decal/tracks/wheels/bloody{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"lWc" = ( -/turf/closed/shuttle/dropship2/interiormisc{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"lWl" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/corpo_fitness) -"lWQ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"lXf" = ( -/turf/closed/shuttle/dropship2/finright{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"lXh" = ( -/obj/structure/table/reinforced/prison, -/obj/effect/spawner/random/medical/firstaid{ - pixel_y = 9 - }, -/obj/effect/spawner/random/medical/firstaid, -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"lXm" = ( -/obj/structure/table/reinforced/prison, -/obj/machinery/prop/computer/PC{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"lXx" = ( -/obj/machinery/vending/cola, -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"lXy" = ( -/obj/effect/turf_decal/tile/full/black, -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/powergen) -"lXT" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"lXZ" = ( -/obj/structure/cargo_container{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"lYx" = ( -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"lYK" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"lZc" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"lZe" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"lZt" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_east_street) -"lZw" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"lZD" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/bridge) -"lZJ" = ( -/obj/structure/cable, -/obj/machinery/landinglight/lz1{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"lZZ" = ( -/obj/item/weapon/gun/pistol/m1911, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"maw" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"maB" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/structure/cable, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"maC" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/north_east_street) -"maO" = ( -/obj/machinery/vending/boozeomat, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"maQ" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/effect/spawner/random/food_or_drink/donut{ - pixel_y = 3 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"maT" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/docking_port/stationary/crashmode, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/garden) -"mbz" = ( -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/south_street) -"mbE" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/gelida/outdoors/colony_streets/north_west_street) -"mbK" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"mbR" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating, -/area/gelida/indoors/b_block/hydro) -"mbS" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"mcL" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/south_west_street) -"mcP" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"mcU" = ( -/turf/open/floor/tile/dark2, -/area/gelida/indoors/c_block/mining) -"mdh" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"mdj" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"mdA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/powergen) -"mec" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"meg" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/bridges/corpo) -"meu" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"meH" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"meS" = ( -/obj/structure/inflatable/wall{ - dir = 8 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"mfj" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/weaponry/explosive/grenade/multiplefour{ - pixel_x = 7; - pixel_y = 2 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"mfk" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bar) -"mfl" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"mfz" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"mfO" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"mgH" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/powergen) -"mgP" = ( -/obj/structure/closet/crate, -/turf/open/floor/prison/plate, -/area/gelida/indoors/lone_buildings/storage_blocks) -"mgY" = ( -/obj/structure/table/mainship, -/obj/item/ashtray/plastic{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/tool/lighter/random{ - pixel_x = -3; - pixel_y = 4 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/landing_zone_2) -"mhj" = ( -/turf/closed/wall, -/area/gelida/indoors/a_block/medical) -"mhI" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/structure/window/reinforced/windowstake{ - dir = 1 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"mhK" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_y = 20 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/garage) -"miB" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"miL" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"miP" = ( -/obj/structure/table/reinforced/prison, -/obj/item/clothing/gloves/marine/insulated, -/obj/item/tool/weldingtool{ - pixel_x = -4 - }, -/obj/item/tool/weldpack{ - pixel_x = 14; - pixel_y = 17 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"miQ" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"miT" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/south_street) -"mjf" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"mjh" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"mju" = ( -/obj/structure/cargo_container{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"mjz" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/clothing/head/hardhat, -/obj/structure/closet/crate, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/lone_buildings/storage_blocks) -"mjD" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"mjO" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"mku" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"mkv" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/casino) -"mkD" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/landing_zone_2) -"mkF" = ( -/obj/item/ammo_magazine/pistol/m1911{ - current_rounds = 0; - pixel_x = -17; - pixel_y = 14 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/outdoors/colony_streets/north_west_street) -"mkL" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9; - pixel_y = 25 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"mli" = ( -/obj/structure/prop/mainship/brokengen, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"mls" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -7; - pixel_y = 27 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"mlK" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"mlR" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"mlZ" = ( -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"mmh" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/revolver/cmb, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/op_centre) -"mmz" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/obj/effect/ai_node, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"mmD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/engineering/metal, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating, -/area/gelida/powergen) -"mmF" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "\improper Community Office" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"mmH" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "checkpoint2" - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/central_streets) -"mmL" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/landmark/sensor_tower, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"mmP" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 16 - }, -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"mmV" = ( -/obj/structure/rack/nometal, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"mnv" = ( -/turf/open/floor/prison/whitegreen/corner{ - dir = 8 - }, -/area/gelida/indoors/a_block/medical) -"mnw" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/corpo) -"mnD" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/prison/plate, -/area/gelida/landing_zone_2) -"mnU" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_west_street) -"moh" = ( -/obj/structure/table/reinforced/prison, -/obj/effect/spawner/random/clothing/sunglasses, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/garage) -"mor" = ( -/turf/closed/shuttle/dropship2/rearcorner{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"moC" = ( -/obj/machinery/light, -/obj/effect/spawner/random/engineering/metal, -/obj/effect/ai_node, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"moT" = ( -/obj/machinery/light, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"moW" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"mpa" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/east_central_street) -"mpj" = ( -/obj/structure/stairs/corner_seamless, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/south_street) -"mpV" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/east_central_street) -"mqb" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/fitness) -"mqu" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/south_east_street) -"mqw" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"mqM" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 2 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/landing_zone_2) -"mqR" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/obj/machinery/landinglight/lz1, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"mqX" = ( -/obj/item/shard, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/garage) -"mrb" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"mrh" = ( -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"mrI" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/obj/effect/ai_node, -/turf/open/floor/freezer, -/area/gelida/indoors/a_block/dorms) -"mrN" = ( -/turf/closed/shuttle/dropship2/finleft{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"msa" = ( -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"msQ" = ( -/obj/structure/table/mainship, -/obj/item/toy/bikehorn, -/obj/effect/spawner/random/misc/plushie{ - pixel_y = 3 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"mtx" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = 13; - pixel_y = 18 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"mty" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"mtF" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"mtI" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"mtN" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/bridges/op_centre) -"mtO" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/bridge) -"mtV" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"mup" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"mur" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"muE" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"muT" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"muV" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating, -/area/gelida/powergen) -"mvy" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"mvT" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"mwx" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"mxk" = ( -/obj/structure/table/fancywoodentable, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -1; - pixel_y = 17 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = 8; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"mxs" = ( -/turf/closed/shuttle/dropship2/finback{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"mxT" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"mxZ" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 5 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/north_street) -"myk" = ( -/obj/effect/spawner/random/misc/structure/curtain/medical, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen{ - dir = 9 - }, -/area/gelida/indoors/a_block/medical) -"mym" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"myA" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"myC" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"myJ" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"myO" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"myR" = ( -/obj/structure/table/mainship, -/obj/item/toy/beach_ball, -/obj/item/reagent_containers/food/drinks/bottle/sake{ - pixel_x = 9; - pixel_y = 17 - }, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"mzo" = ( -/obj/structure/table/woodentable, -/obj/machinery/reagentgrinder{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"mzH" = ( -/obj/structure/coatrack{ - pixel_x = 10; - pixel_y = 2 - }, -/obj/item/clothing/suit/storage/snow_suit{ - pixel_x = 9; - pixel_y = 7 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = -6 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/lone_buildings/chunk) -"mzI" = ( -/obj/item/pipe{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/mining) -"mzM" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/kitchen) -"mAk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/job/xenomorph, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"mAo" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"mAu" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"mBa" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_street) -"mBK" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/buritto, -/obj/item/trash/syndi_cakes, -/obj/item/trash/pistachios, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"mBM" = ( -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"mCj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"mCI" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"mDb" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"mDh" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/outdoors/colony_streets/north_west_street) -"mDs" = ( -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"mDU" = ( -/obj/structure/inflatable/wall{ - dir = 1 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"mEe" = ( -/obj/item/tool/crowbar, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"mEg" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"mEP" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"mET" = ( -/obj/structure/table/mainship, -/obj/item/tool/weldpack{ - pixel_x = -4; - pixel_y = 12 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"mEU" = ( -/obj/structure/table/reinforced/prison, -/obj/item/reagent_containers/food/drinks/cans/souto{ - pixel_x = 10; - pixel_y = 14 - }, -/obj/item/trash/plate, -/obj/effect/spawner/random/food_or_drink/burger, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"mFA" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"mFF" = ( -/obj/structure/cargo_container/wy, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"mGn" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"mGt" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"mGH" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"mGX" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"mHc" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/fitness) -"mHd" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_east_street) -"mHx" = ( -/turf/closed/shuttle/dropship2/front, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"mHE" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"mHT" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"mHV" = ( -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"mIM" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/c_block/cargo) -"mIS" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/turf/open/floor/freezer, -/area/gelida/indoors/a_block/dorms) -"mJc" = ( -/obj/machinery/floodlight, -/obj/structure/platform{ - dir = 7 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"mJj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"mJP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"mJV" = ( -/obj/structure/cargo_container/wy{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"mKd" = ( -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"mKk" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"mKv" = ( -/obj/effect/turf_decal/warning_stripes/thick, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"mKJ" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/weaponry/ammo, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"mKL" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"mKS" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"mLe" = ( -/obj/structure/window_frame/colony, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"mLl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"mLB" = ( -/obj/item/tool/scythe, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"mLE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"mLG" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"mLW" = ( -/obj/structure/window_frame/colony, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/admin) -"mMd" = ( -/obj/effect/spawner/random/machinery/machine_frame, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"mMy" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/a_block/admin) -"mMH" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_west_street) -"mNt" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - pixel_x = 7; - pixel_y = 16 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/b_block/hydro) -"mOg" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorm_north) -"mOj" = ( -/turf/open/floor/prison/plate, -/area/gelida/landing_zone_1) -"mOp" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/item/shard, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"mPg" = ( -/obj/item/trash/mre, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"mPk" = ( -/obj/structure/cargo_container/wy{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"mPm" = ( -/obj/item/shard, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"mPq" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_east_street) -"mPv" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"mPF" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/west_caves/garbledradio) -"mPL" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/bridges/corpo) -"mQd" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"mQe" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"mQg" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/closed/wall, -/area/gelida/indoors/c_block/garage) -"mQj" = ( -/obj/effect/turf_decal/tile/full/black, -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/powergen) -"mQy" = ( -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"mQV" = ( -/obj/effect/ai_node, -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"mRa" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/mainship, -/obj/item/radio, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"mRn" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"mRH" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"mRJ" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"mRL" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"mSq" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat{ - pixel_x = 3; - pixel_y = 7 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/lone_buildings/chunk) -"mSD" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"mSE" = ( -/obj/item/bananapeel{ - desc = "A bunch of tiny bits of shattered metal."; - name = "piece of shrapnel"; - pixel_x = -3; - pixel_y = -1 - }, -/turf/open/floor/plating{ - dir = 8 - }, -/area/gelida/indoors/a_block/kitchen) -"mSM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"mTc" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"mTs" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/prison{ - dir = 9 - }, -/area/gelida/indoors/b_block/bridge) -"mTy" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"mTK" = ( -/turf/open/floor/wood, -/area/gelida/indoors/a_block/security) -"mTP" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"mUd" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/plate, -/area/gelida/landing_zone_2) -"mUy" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "\improper Dormitories" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorm_north) -"mUC" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tracks/wheels/bloody{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"mUJ" = ( -/turf/open/floor/prison/whitegreen{ - dir = 6 - }, -/area/gelida/indoors/a_block/medical) -"mUW" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/bridges/corpo_fitness) -"mVb" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"mVh" = ( -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"mWb" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/east_central_street) -"mWd" = ( -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_1) -"mWv" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"mWB" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/hallway) -"mWQ" = ( -/obj/structure/table/reinforced/prison, -/obj/effect/spawner/random/misc/cigarettes{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/clothing/under/liaison_suit/suspenders, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"mXb" = ( -/turf/open/floor/plating, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"mXx" = ( -/turf/open/floor/prison/cellstripe{ - dir = 8 - }, -/area/gelida/indoors/lone_buildings/storage_blocks) -"mXF" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/north_street) -"mXM" = ( -/turf/closed/mineral/smooth/snowrock, -/area/gelida/indoors/lone_buildings/storage_blocks) -"mXU" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"mXX" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/bridge) -"mYt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"mYv" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 8; - name = "\improper Family Dormitories" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"mYH" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"mYS" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/gelida/outdoors/rock) -"mZr" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"mZC" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/effect/landmark/xeno_tunnel_spawn, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"nbt" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/caves/east_caves/garbledradio) -"nby" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"nbC" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/stripedsquare/tile/border, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/b_block/bridge) -"ncl" = ( -/turf/open/floor/prison/blue{ - dir = 6 - }, -/area/gelida/indoors/a_block/hallway) -"nct" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/landing_zone_2) -"ncu" = ( -/turf/open/floor/tile/dark2, -/area/gelida/outdoors/rock) -"ncG" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/gelida/indoors/c_block/bridge) -"ncQ" = ( -/turf/closed/shuttle/dropship2/enginefive{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"nda" = ( -/obj/item/stack/rods, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"ndh" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"ndi" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"ndn" = ( -/obj/effect/spawner/random/engineering/wood, -/obj/item/ore/diamond, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/cargo) -"ndA" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"ndG" = ( -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"ndP" = ( -/obj/effect/turf_decal/tile/full/black, -/obj/effect/landmark/start/job/xenomorph, -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/powergen) -"ndU" = ( -/obj/structure/table/fancywoodentable, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = -7; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 14; - pixel_y = 17 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 14; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"neg" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_east_street) -"ner" = ( -/obj/prop/hydroponics, -/turf/open/floor/plating/platebotc, -/area/gelida/indoors/b_block/bridge) -"neF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cargo_container/ch_green{ - pixel_y = 4 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"neI" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/south_street) -"neP" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/snacks/tofukabob, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"neY" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/cable, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"nfh" = ( -/obj/structure/closet/bodybag, -/obj/effect/spawner/random/misc/structure/curtain/medical, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"nfT" = ( -/obj/machinery/door/airlock/mainship/security/glass{ - name = "\improper Marshal Office Holding Cell"; - req_access = null - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/security) -"nfY" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/landing_zone_2) -"ngh" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"ngu" = ( -/obj/structure/stairs/seamless, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"ngv" = ( -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"ngw" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/c_block/bridge) -"ngP" = ( -/turf/closed/wall/r_wall, -/area/gelida/landing_zone_2) -"nhb" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison{ - dir = 5 - }, -/area/gelida/indoors/a_block/dorm_north) -"nhz" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/central_streets) -"nhI" = ( -/obj/machinery/vending/medical, -/turf/open/floor/prison/whitegreen{ - dir = 4 - }, -/area/gelida/indoors/a_block/medical) -"nhK" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/shuttle/dropship/seven, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"nij" = ( -/obj/structure/stairs/seamless/platform, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"niz" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9; - pixel_y = 25 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"niE" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/bridges/op_centre) -"niS" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/sandwiches/toastedsandwich, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -10; - pixel_y = 8 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/lone_buildings/chunk) -"niX" = ( -/turf/closed/shuttle/dropship2/fins{ - dir = 6 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"nja" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/op_centre) -"njh" = ( -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges) -"nji" = ( -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges) -"nju" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"njJ" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/caves/west_caves) -"njN" = ( -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"njW" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"njY" = ( -/obj/machinery/door/poddoor/mainship{ - dir = 8; - id = "West LZ Storage"; - name = "Emergency Lockdown" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/lone_buildings/storage_blocks) -"nkm" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"nkv" = ( -/obj/machinery/vending/boozeomat, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"nkE" = ( -/obj/structure/table/mainship, -/obj/item/clothing/suit/chef/classic, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"nkH" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 1 - }, -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"nkO" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform, -/turf/open/floor/plating, -/area/gelida/indoors/b_block/bridge) -"nkZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"nma" = ( -/obj/structure/flora/ausbushes/sunnybush{ - pixel_y = 13 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"nmk" = ( -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/hydro) -"nmU" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/hydro) -"nnb" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"nnn" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/east_central_street) -"nnE" = ( -/obj/effect/decal/cleanable/blood, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"nnL" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 1 - }, -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/engineering/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"nnR" = ( -/turf/closed/wall/r_wall{ - dir = 9 - }, -/area/gelida/outdoors/rock) -"nnV" = ( -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"nnZ" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"noe" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/fitness) -"noF" = ( -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"noN" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/south_street) -"npE" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/landing_zone_2) -"npG" = ( -/obj/item/stack/rods, -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/hallway) -"npN" = ( -/obj/structure/table/mainship, -/obj/item/trash/cheesie, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"nqO" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/snacks/cheesyfries, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"nqZ" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"nri" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison{ - dir = 8 - }, -/area/gelida/indoors/a_block/dorms) -"nrk" = ( -/obj/machinery/door/airlock/mainship/medical{ - name = "Medical Laboratory Operating Theatre" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"nry" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/fitness) -"nrJ" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"nrX" = ( -/obj/structure/prop/vehicle/truck/destructible, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"nsn" = ( -/obj/structure/cargo_container/ch_green, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"nsv" = ( -/obj/structure/table/fancywoodentable, -/obj/item/flashlight/lamp/green, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"nsC" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 4 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -4 - }, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"nsE" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"nsF" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"nsJ" = ( -/obj/structure/table/gamblingtable, -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"nsK" = ( -/turf/closed/mineral/smooth/snowrock/indestructible, -/area/gelida/outdoors/rock) -"nsX" = ( -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/c_block/cargo) -"ntc" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"ntd" = ( -/obj/structure/table/reinforced/prison, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"ntj" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/east_central_street) -"ntI" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/mining) -"ntN" = ( -/obj/structure/table/woodentable, -/obj/item/storage/bible, -/turf/open/floor/tile/dark2{ - dir = 8 - }, -/area/gelida/indoors/a_block/executive) -"ntU" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 1 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"ntZ" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/gelida/outdoors/colony_streets/north_east_street) -"nue" = ( -/obj/effect/ai_node, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves/garbledradio) -"nvf" = ( -/obj/structure/table/mainship, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/head/hardhat{ - pixel_x = -5; - pixel_y = 9 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"nvl" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/landing_zone_1) -"nvz" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/casino) -"nvP" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"nvW" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"nwb" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/item/newspaper, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"nwc" = ( -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"nwd" = ( -/obj/structure/cargo_container/wy{ - dir = 4 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_1) -"nwf" = ( -/turf/open/floor/prison/blue{ - dir = 8 - }, -/area/gelida/indoors/a_block/admin) -"nwh" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"nws" = ( -/obj/structure/platform, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"nwC" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"nwP" = ( -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_street) -"nwR" = ( -/obj/structure/table/reinforced/prison, -/obj/item/radio/off{ - pixel_x = -5; - pixel_y = 7 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"nxC" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"nyC" = ( -/turf/open/floor/plating, -/area/gelida/powergen) -"nyZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"nzi" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_east_street) -"nzX" = ( -/turf/closed/wall/r_wall, -/area/gelida/landing_zone_1) -"nAe" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/freezer, -/area/gelida/indoors/a_block/dorms) -"nAh" = ( -/obj/machinery/optable, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"nAi" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_west_street) -"nAJ" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/rock) -"nBD" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/bridges) -"nBG" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"nBP" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"nBT" = ( -/obj/machinery/landinglight/lz1{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"nCJ" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/central_streets) -"nDe" = ( -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"nDg" = ( -/obj/item/reagent_containers/glass/bucket/janibucket{ - desc = "It's a large bucket that fits in a janitorial cart. Holds 500 units. The lip is stained."; - pixel_x = -5; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"nDu" = ( -/obj/structure/cable, -/obj/machinery/landinglight/lz1, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"nDy" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/turf/open/floor/prison/blue, -/area/gelida/indoors/a_block/admin) -"nDB" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/landing_zone_1) -"nDF" = ( -/obj/structure/cargo_container, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"nDG" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/garage) -"nDI" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall, -/area/gelida/indoors/c_block/garage) -"nDQ" = ( -/obj/item/shard, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"nEw" = ( -/obj/structure/cable, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"nEF" = ( -/obj/structure/cable, -/obj/machinery/power/apc/drained, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"nEL" = ( -/obj/effect/spawner/random/misc/structure/curtain/medical, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"nEZ" = ( -/obj/machinery/conveyor/inverted{ - dir = 5 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"nFn" = ( -/obj/effect/turf_decal/tile/full/black, -/turf/open/floor/mainship/black/full, -/area/gelida/outdoors/rock) -"nFy" = ( -/obj/item/stack/rods, -/obj/structure/window_frame/colony, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"nFA" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/dorm_north) -"nFQ" = ( -/turf/closed/wall/r_wall, -/area/gelida/indoors/a_block/dorm_north) -"nFV" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/obj/machinery/light, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"nGw" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"nGy" = ( -/turf/closed/wall/r_wall{ - dir = 10 - }, -/area/gelida/outdoors/rock) -"nGB" = ( -/obj/structure/cargo_container{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/central_streets) -"nGK" = ( -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"nGT" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/cellstripe{ - dir = 4 - }, -/area/gelida/indoors/lone_buildings/storage_blocks) -"nHb" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"nHg" = ( -/obj/effect/spawner/random/misc/structure/curtain/medical, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen{ - dir = 1 - }, -/area/gelida/indoors/a_block/medical) -"nHQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/floodlight, -/turf/open/floor/prison/plate, -/area/gelida/indoors/lone_buildings/storage_blocks) -"nHW" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"nIc" = ( -/obj/structure/rack/nometal, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"nId" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"nIu" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"nIx" = ( -/obj/machinery/light{ - pixel_x = 16 - }, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/bridge) -"nIG" = ( -/obj/structure/cargo_container/hd_blue{ - dir = 8 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_1) -"nIM" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/caves/east_caves/garbledradio) -"nIN" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/south_street) -"nIU" = ( -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"nJe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"nJZ" = ( -/obj/structure/table/reinforced/prison, -/obj/item/reagent_containers/food/snacks/packaged_burrito, -/obj/item/reagent_containers/food/drinks/cans/souto{ - pixel_y = 15 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"nKe" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"nKA" = ( -/obj/structure/rack/nometal, -/obj/item/frame/table{ - pixel_y = 16 - }, -/obj/item/frame/table{ - pixel_x = 10; - pixel_y = 12 - }, -/obj/item/frame/table{ - pixel_y = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"nKB" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/landing_zone_1) -"nKH" = ( -/obj/structure/table/mainship, -/obj/item/paper{ - pixel_x = -6 - }, -/obj/item/toy/dice{ - pixel_x = 6; - pixel_y = 17 - }, -/obj/item/toy/prize/ripley{ - pixel_x = 4; - pixel_y = 7 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"nLj" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"nLm" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/hallway) -"nLw" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"nLz" = ( -/obj/structure/prop/vehicle/crane/destructible{ - dir = 1; - pixel_x = -10; - pixel_y = 6 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/landing_zone_1) -"nLA" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"nMr" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"nMP" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"nMT" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/ice, -/area/gelida/powergen) -"nNn" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"nNt" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/hydro) -"nND" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"nNF" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_west_street) -"nNL" = ( -/obj/effect/mapping_helpers/area_flag_injector/marine_base, -/turf/open/floor/plating, -/area/shuttle/drop2/gelida) -"nNN" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/turf/open/floor/tile/dark2{ - dir = 8 - }, -/area/gelida/indoors/a_block/executive) -"nNP" = ( -/obj/machinery/washing_machine{ - pixel_x = 9 - }, -/obj/machinery/washing_machine{ - pixel_x = 9; - pixel_y = 15 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"nNS" = ( -/obj/machinery/computer/operating, -/obj/structure/table/reinforced/prison, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"nNT" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/fitness) -"nNU" = ( -/obj/item/shard, -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"nOE" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"nOF" = ( -/obj/machinery/door/airlock/mainship/generic{ - name = "\improper Corporate Liason" - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/corpo) -"nOJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"nOL" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/outdoors/rock) -"nOQ" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges/op_centre) -"nPk" = ( -/turf/closed/mineral/smooth/snowrock, -/area/gelida/outdoors/colony_streets/north_west_street) -"nPI" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - pixel_y = 3 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"nPP" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"nPU" = ( -/obj/structure/cable, -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"nQL" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"nQX" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -10; - pixel_y = 29 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"nRl" = ( -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/b_block/bridge) -"nRJ" = ( -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/north_east_street) -"nRK" = ( -/obj/item/toy/beach_ball/holoball{ - pixel_x = 5; - pixel_y = -13 - }, -/turf/open/floor/prison{ - dir = 5 - }, -/area/gelida/indoors/a_block/dorm_north) -"nRL" = ( -/obj/structure/table/mainship, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"nRP" = ( -/obj/structure/flora/ausbushes/sunnybush{ - pixel_y = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"nRW" = ( -/obj/structure/prop/vehicle/truck/truckcargo/destructible, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/landing_zone_1) -"nSf" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/south_west_street) -"nSm" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 8; - pixel_y = 6 - }, -/obj/machinery/light, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"nSG" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"nSH" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"nST" = ( -/obj/structure/table/mainship{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"nSX" = ( -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_street) -"nTd" = ( -/obj/machinery/light, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"nTK" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_street) -"nTN" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/pen/blue, -/obj/item/flashlight/lamp{ - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"nTQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"nUn" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/east_central_street) -"nUy" = ( -/obj/effect/turf_decal/warning_stripes/box, -/obj/structure/rack, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/central_streets) -"nUK" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"nVj" = ( -/obj/structure/table/reinforced/prison, -/obj/item/autopsy_scanner, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"nVx" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"nVU" = ( -/obj/effect/ai_node, -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"nWs" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"nWw" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/east_caves/garbledradio) -"nWR" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"nXq" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"nXw" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"nXy" = ( -/obj/effect/spawner/random/misc/structure/curtain, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/executive) -"nXE" = ( -/obj/structure/table/fancywoodentable, -/obj/effect/spawner/random/misc/folder/nooffset{ - pixel_y = 8 - }, -/obj/effect/spawner/random/misc/folder/nooffset{ - pixel_y = 4 - }, -/obj/effect/spawner/random/misc/folder/nooffset, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"nXH" = ( -/turf/closed/shuttle/dropship2/enginefive{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"nXT" = ( -/obj/machinery/door_control{ - id = "A-Block-Dorm Shutters"; - pixel_y = 26 - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/dorm_north) -"nYa" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"nYg" = ( -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"nYF" = ( -/obj/machinery/miner/damaged/platinum, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/east_caves) -"nYN" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"nYR" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/structure/window/reinforced/windowstake{ - dir = 1 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"nZi" = ( -/obj/effect/landmark/start/job/survivor, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/blue{ - dir = 8 - }, -/area/gelida/indoors/a_block/admin) -"nZn" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"nZo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall/unmeltable, -/area/gelida/indoors/c_block/mining) -"nZH" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"nZO" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"oaa" = ( -/obj/structure/cargo_container{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"oab" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_street) -"oao" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"oas" = ( -/turf/closed/wall, -/area/gelida/landing_zone_2) -"oav" = ( -/obj/structure/cable, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"oaG" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"oaK" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"oaT" = ( -/turf/closed/shuttle/dropship2/rearcorner/alt{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"obj" = ( -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"obp" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"obs" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"obt" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"obF" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"obS" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/garden) -"obT" = ( -/obj/structure/sign/nosmoking_2{ - dir = 1 - }, -/obj/structure/rack/nometal, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"obW" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/admin) -"oca" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"ocn" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/corpo) -"ocZ" = ( -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"oda" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"odq" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/cleanmarked, -/area/gelida/outdoors/colony_streets/north_west_street) -"odD" = ( -/obj/structure/bed{ - dir = 4; - name = "bedroll" - }, -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/prison/blue{ - dir = 8 - }, -/area/gelida/indoors/a_block/admin) -"odT" = ( -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorm_north) -"oef" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/garden) -"oeh" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bridge) -"oev" = ( -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"oeB" = ( -/obj/structure/rack/nometal, -/obj/item/reagent_containers/food/snacks/sliceable/cheesewheel{ - pixel_y = -4 - }, -/obj/item/reagent_containers/food/snacks/sliceable/cheesewheel{ - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"oeM" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/corpo) -"oeR" = ( -/obj/structure/table/mainship, -/obj/item/flashlight/lamp, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"ogh" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"ogi" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/station_alert{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"ogl" = ( -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/powergen) -"ogw" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/powergen) -"ogJ" = ( -/obj/structure/dropship_piece/two/engine/leftbottom, -/turf/closed/shuttle/dropship2/engineone{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"ogL" = ( -/obj/item/tool/crowbar/red{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"ogT" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"ohb" = ( -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"ohU" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/east_central_street) -"ohZ" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"oiB" = ( -/obj/structure/flora/ausbushes/fernybush{ - pixel_y = 12 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"oiM" = ( -/turf/closed/shuttle/dropship2/finright, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"ojm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"ojo" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"ojG" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/landing_zone_forecon/landing_zone_4) -"ojI" = ( -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"ojR" = ( -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"okI" = ( -/obj/docking_port/stationary/crashmode, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_street) -"olc" = ( -/obj/effect/ai_node, -/turf/open/floor/prison{ - dir = 9 - }, -/area/gelida/indoors/a_block/dorm_north) -"olh" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"omj" = ( -/obj/structure/table/fancywoodentable, -/obj/item/flashlight/lamp{ - pixel_x = 4; - pixel_y = 14 - }, -/obj/item/binoculars, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"omk" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 5 - }, -/obj/effect/ai_node, -/obj/structure/platform{ - dir = 10 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"omo" = ( -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"omp" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"omq" = ( -/obj/effect/ai_node, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/security) -"omJ" = ( -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_street) -"omN" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 5 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"onR" = ( -/obj/machinery/suit_storage_unit{ - pixel_x = -2 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"oox" = ( -/obj/effect/spawner/random/engineering/ore_box, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/rock) -"ooA" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"ooP" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"opi" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"opk" = ( -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/bridges) -"oqb" = ( -/obj/effect/spawner/random/misc/structure/curtain, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"oqj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"oqk" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/fitness) -"oqu" = ( -/turf/closed/shuttle/dropship2/fins{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"oqy" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"oqV" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/secureweighted, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"orc" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"orh" = ( -/turf/closed/wall, -/area/gelida/indoors/a_block/hallway) -"orn" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"orM" = ( -/obj/structure/platform, -/turf/open/floor/podhatch/floor, -/area/gelida/indoors/a_block/corpo) -"osq" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_forecon/landing_zone_4) -"osB" = ( -/obj/machinery/light, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/bridges/corpo) -"osS" = ( -/turf/closed/shuttle/dropship2/enginefive{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"osY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"otc" = ( -/obj/machinery/door/airlock/dropship_hatch/left/two, -/turf/open/shuttle/dropship/three, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"otr" = ( -/obj/effect/landmark/start/job/xenomorph, -/obj/effect/turf_decal/tile/full/black, -/turf/open/floor/plating, -/area/gelida/powergen) -"ott" = ( -/obj/structure/bed/alien, -/obj/item/pipe{ - pixel_x = -6 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"otG" = ( -/obj/effect/spawner/random/engineering/ore_box, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"otX" = ( -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/nw_rockies) -"ouq" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"ouI" = ( -/obj/machinery/vending/snack, -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"ouX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"ouZ" = ( -/obj/structure/closet, -/obj/item/clothing/under/colonist, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"ove" = ( -/obj/structure/cargo_container/ch_red{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"ovj" = ( -/obj/machinery/power/apc/drained{ - name = "Mining APC"; - start_charge = 0 - }, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"ovu" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/c_block/cargo) -"ovz" = ( -/turf/open/floor/prison/blue, -/area/gelida/indoors/a_block/admin) -"ovD" = ( -/obj/structure/table/reinforced/prison, -/obj/item/newspaper, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"ovH" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"owa" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - pixel_y = 5 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"owj" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/closed/mineral/smooth/darkfrostwall, -/area/gelida/caves/central_caves) -"owm" = ( -/obj/machinery/door/airlock/mainship/medical/glass{ - dir = 1; - name = "\improper Chunk 'N Dump"; - req_access = null - }, -/turf/open/floor/tile/dark2, -/area/gelida/indoors/lone_buildings/chunk) -"owG" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"owU" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"oxS" = ( -/obj/structure/prop/mainship/gelida/railbumper{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"oya" = ( -/obj/effect/ai_node, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"oyd" = ( -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"oyj" = ( -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/north_east_street) -"oyM" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"oyO" = ( -/obj/structure/cargo_container/horizontal, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"ozG" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/landing_zone_forecon/landing_zone_4) -"oAe" = ( -/obj/item/storage/bag/ore, -/obj/structure/rack/nometal, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"oAm" = ( -/obj/machinery/door/airlock/mainship/generic, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/b_block/hydro) -"oAr" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"oAK" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"oAR" = ( -/obj/item/clothing/head/helmet/riot, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"oAT" = ( -/obj/effect/decal/cleanable/vomit, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"oAV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"oBh" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/hallway) -"oBq" = ( -/obj/machinery/light, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"oBs" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/mainship/stripesquare, -/area/gelida/powergen) -"oBw" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"oBx" = ( -/turf/closed/shuttle/dropship2/fins{ - dir = 9 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"oBG" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/admin) -"oBR" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"oCf" = ( -/obj/effect/turf_decal/tile/full/black, -/obj/effect/turf_decal/tile/full/black, -/turf/open/floor/mainship/black/full, -/area/gelida/outdoors/colony_streets/north_east_street) -"oCk" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"oCo" = ( -/obj/structure/table/fancywoodentable, -/obj/item/flashlight/lamp/green{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"oCz" = ( -/turf/open/floor/prison/whitegreen{ - dir = 1 - }, -/area/gelida/indoors/a_block/medical) -"oCF" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/east_caves) -"oCU" = ( -/obj/machinery/door/poddoor/shutters/mainship/open{ - dir = 8; - id = "A-Block-Dorm Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorm_north) -"oDf" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"oDn" = ( -/obj/machinery/computer/arcade{ - pixel_y = 16 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"oDu" = ( -/obj/structure/table/mainship, -/obj/item/toy/plush/farwa{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/toy/plush/farwa, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"oDW" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "\improper Mining Overseers Office" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"oEb" = ( -/obj/item/reagent_containers/jerrycan{ - desc = "A jerry can. In space! Or maybe a colony."; - item_state = "caution"; - name = "fuel can"; - pixel_x = 4; - pixel_y = 16 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/north_street) -"oEt" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/south_street) -"oEw" = ( -/obj/docking_port/stationary/crashmode, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"oEx" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"oEA" = ( -/obj/structure/prop/mainship/hangar_stencil, -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 8 - }, -/obj/effect/turf_decal/warning_stripes/thick, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"oEE" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_street) -"oEN" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"oER" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/corpo) -"oFi" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"oFn" = ( -/obj/machinery/door_control{ - id = "UD6"; - name = "Cargo Shutter Control" - }, -/turf/closed/shuttle/dropship2/aisle{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"oFs" = ( -/obj/effect/ai_node, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves) -"oFt" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 1 - }, -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"oFw" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"oFE" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/platebot, -/area/gelida/indoors/c_block/cargo) -"oFT" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"oGt" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/south_street) -"oGD" = ( -/obj/structure/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 9; - pixel_y = 3 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"oGJ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"oGN" = ( -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/hydro) -"oGY" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9; - pixel_y = 25 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"oHb" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"oHl" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"oHp" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"oHr" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -13 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/nw_rockies) -"oHy" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves/garbledradio) -"oHR" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"oHY" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"oIs" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/powergen) -"oIK" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"oIO" = ( -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"oIP" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"oJa" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/hallway) -"oJb" = ( -/obj/structure/table/reinforced/prison, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"oJi" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/gelida/indoors/b_block/bridge) -"oKe" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"oKr" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - name = "\improper Corporation Dome" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/corpo) -"oKw" = ( -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges/corpo_fitness) -"oKM" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/metal, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"oKU" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"oLd" = ( -/obj/item/stack/rods, -/obj/structure/cable, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"oLu" = ( -/obj/machinery/landinglight/lz1{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"oLA" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"oMc" = ( -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/dorm_north) -"oMg" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/b_block/bridge) -"oMo" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"oMs" = ( -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_east_street) -"oMx" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"oME" = ( -/obj/machinery/door/poddoor/mainship{ - dir = 8; - id = "E_B_Door"; - name = "\improper Emergency Blast Door" - }, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/w_rockies) -"oMF" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/cans/aspen{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/cans/aspen{ - pixel_x = 8; - pixel_y = 5 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_east_street) -"oMN" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/turf/open/floor/prison/darkpurple{ - dir = 8 - }, -/area/gelida/indoors/a_block/dorms) -"oNa" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/obj/structure/prop/mainship/gelida/rails{ - dir = 4 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/outdoors/rock) -"oNl" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"oNN" = ( -/obj/structure/rack/nometal, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/spawner/random/engineering/pickaxe, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"oOO" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_street) -"oOT" = ( -/obj/structure/bedsheetbin{ - pixel_y = 7 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"oPt" = ( -/obj/item/shard, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"oPI" = ( -/obj/item/shard, -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/admin) -"oPL" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"oQi" = ( -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"oQw" = ( -/obj/structure/table/mainship, -/obj/item/clothing/under/redpyjamas, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"oQz" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"oRm" = ( -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/east_central_street) -"oRO" = ( -/obj/effect/turf_decal/warning_stripes/thick/corner{ - dir = 1 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"oRP" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/ammo_magazine/rifle/ar11, -/obj/item/ammo_magazine/rifle/ar11, -/obj/item/ammo_magazine/rifle/ar11, -/obj/item/ammo_magazine/rifle/ar11, -/obj/item/weapon/gun/rifle/ar11{ - pixel_y = -6 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"oRW" = ( -/obj/structure/table/mainship, -/obj/machinery/reagentgrinder{ - pixel_x = -3; - pixel_y = 12 - }, -/obj/item/tool/wrench{ - pixel_y = -6 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"oSf" = ( -/obj/structure/prop/mainship/hangar_stencil/two, -/obj/effect/turf_decal/warning_stripes/thick, -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"oSg" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/corpo) -"oSj" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"oSL" = ( -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/prison/blue{ - dir = 9 - }, -/area/gelida/indoors/a_block/admin) -"oSV" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"oTb" = ( -/obj/machinery/landinglight/lz1, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"oTs" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/landing_zone_2) -"oTy" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/coffee, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/chunk) -"oTB" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/w_rockies) -"oTO" = ( -/obj/item/ammo_magazine/rifle/ar11{ - current_rounds = 0 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"oTW" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/machinery/power/apc/drained, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/chunk) -"oUd" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 7; - pixel_y = 17 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"oUg" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_west_street) -"oUq" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_street) -"oUN" = ( -/obj/effect/spawner/random/decal/blood, -/obj/item/weapon/twohanded/fireaxe, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"oVs" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"oVt" = ( -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"oVv" = ( -/obj/structure/table/mainship, -/obj/item/storage/box/handcuffs{ - pixel_x = 5; - pixel_y = 15 - }, -/obj/item/flash{ - pixel_y = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"oVA" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/plating, -/area/gelida/landing_zone_forecon/landing_zone_4) -"oVE" = ( -/obj/structure/stairs/seamless, -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"oVG" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"oWc" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"oWl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/obj/structure/rack/nometal, -/obj/item/weapon/shield/riot, -/obj/item/weapon/classic_baton, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"oWn" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"oWT" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"oXa" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/powergen) -"oXh" = ( -/obj/structure/table/mainship, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - name = "synthethic potted plant"; - pixel_y = 14 - }, -/obj/machinery/light, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"oXj" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 1 - }, -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"oXo" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - pixel_y = 9 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"oXD" = ( -/obj/structure/table/mainship, -/obj/machinery/faxmachine, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"oXU" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/sandwiches/bread, -/obj/item/newspaper{ - anchored = 1; - desc = "This is the Chunk and Dunks menu. It reads 'Starters chunky fried cheese chunky chicken giblets dunky donuts Main chunky mac and cheese chunky meat and gravy pizza galaxy pizza TM dunky grilled style steak imitation Deserts dunky refried ice cream OUT OF STOCK chunky chocolate moose dunky hash brown Drinks souto TM Original souto TM penguin week special chunk and dunk gravy soft drink chunky coffee CAUTION HOT dunky arcturian imitation tea"; - name = "menu"; - pixel_y = 26 - }, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/chunk) -"oXV" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"oYd" = ( -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/lone_buildings/storage_blocks) -"oYe" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"oYq" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"oYz" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"oYC" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/light, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"oYG" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/turf/open/floor/prison/whitegreen{ - dir = 1 - }, -/area/gelida/indoors/a_block/medical) -"oYI" = ( -/obj/machinery/light, -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"oYR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/obj/structure/largecrate/supply, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/op_centre) -"oZe" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_east_street) -"oZr" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"oZy" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"oZB" = ( -/obj/machinery/light, -/turf/open/floor/prison/blue, -/area/gelida/indoors/a_block/hallway) -"oZE" = ( -/turf/closed/shuttle/dropship2/walltwo/alt, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"oZF" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/powergen) -"pae" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"paM" = ( -/obj/structure/bed{ - dir = 9; - name = "bedroll" - }, -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/prison/blue{ - dir = 4 - }, -/area/gelida/indoors/a_block/admin) -"paR" = ( -/obj/effect/mapping_helpers/area_flag_injector/marine_base, -/turf/open/floor/plating, -/area/shuttle/drop1/gelida) -"pbD" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"pbF" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"pcy" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"pcI" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"pcM" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"pcO" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/bridges/corpo) -"pdb" = ( -/obj/structure/table/mainship, -/obj/item/toy/snappop{ - pixel_x = -7 - }, -/obj/item/toy/snappop{ - pixel_x = 3; - pixel_y = 11 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"pdh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/gelida/cavestructuretwo) -"pds" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves/garbledradio) -"pdD" = ( -/obj/effect/turf_decal/warning_stripes/thick/corner, -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/powergen) -"pdJ" = ( -/obj/machinery/door/airlock/mainship/maint{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/outdoors/rock) -"pdT" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"ped" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9 - }, -/area/gelida/indoors/a_block/dorm_north) -"peg" = ( -/obj/item/clothing/head/hardhat, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"pej" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"peB" = ( -/obj/structure/inflatable/wall{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 8 - }, -/area/gelida/indoors/a_block/admin) -"peR" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"pfk" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_west_street) -"pfm" = ( -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"pfn" = ( -/obj/structure/nuke_disk_candidate, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"pfs" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"pfY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"pgn" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/effect/spawner/random/food_or_drink/donut{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"pgs" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 9 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"pgt" = ( -/obj/item/storage/surgical_tray, -/obj/structure/table/reinforced/prison, -/obj/item/tool/soap{ - pixel_x = 5 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/stack/nanopaste{ - pixel_x = 8; - pixel_y = 15 - }, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"pgu" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"pgJ" = ( -/obj/effect/spawner/random/engineering/structure/tank/waterweighted, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"pgO" = ( -/obj/structure/table/mainship, -/obj/machinery/door_control{ - dir = 1; - id = "Secure_Master_Armoury" - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"pgX" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/south_street) -"phj" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"pht" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"phw" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/buritto, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"phJ" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"phP" = ( -/obj/effect/spawner/random/engineering/ore_box, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"phX" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"pii" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"piq" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"pir" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"piD" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges) -"piE" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"piP" = ( -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"piS" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"pjj" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"pjk" = ( -/obj/machinery/vending/coffee, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"pjt" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"pjv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"pjF" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/fitness) -"pjR" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/shuttle/dropship2/cornersalt{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"pkE" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/bridge) -"pkH" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/machinery/computer/intel_computer, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"pkK" = ( -/obj/structure/girder/displaced, -/obj/structure/platform, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"pkM" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/turf/open/floor/prison/darkpurple, -/area/gelida/indoors/a_block/dorms) -"pkP" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/admin) -"pla" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"pli" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/casino) -"plu" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"plT" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/secureweighted, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/landing_zone_2) -"pma" = ( -/obj/effect/acid_hole{ - dir = 4 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/dorm_north) -"pmD" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"pmX" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges/corpo_fitness) -"pnn" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"pnI" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_street) -"pnQ" = ( -/obj/structure/stairs/seamless/platform{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"poa" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"poj" = ( -/turf/closed/wall, -/area/gelida/indoors/a_block/admin) -"ppv" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/outdoors/colony_streets/south_east_street) -"ppy" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"ppO" = ( -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/fitness) -"ppR" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"pqa" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/fitness) -"pqb" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/fancy/cigar{ - pixel_x = -9; - pixel_y = 9 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"prk" = ( -/obj/structure/closet, -/obj/item/clothing/under/colonist, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"prC" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"prS" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"psl" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/corpo_fitness) -"psp" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/food_or_drink/burger{ - pixel_x = -9; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/snacks/cheesyfries, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/lone_buildings/chunk) -"psP" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/landing_zone_2) -"ptl" = ( -/obj/effect/spawner/gibspawner/robot, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/security) -"ptG" = ( -/turf/closed/shuttle/dropship2/panels, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"ptV" = ( -/obj/machinery/door_control{ - dir = 1; - id = "mining_secure_blast_3"; - name = "Blast Door Control" - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_street) -"pup" = ( -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/bridges/op_centre) -"puF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/b_block/bar) -"puL" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/indoors/a_block/corpo) -"pvp" = ( -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/caves/central_caves/garbledradio) -"pwn" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_street) -"pwy" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_west_street) -"pwF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"pwH" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"pwK" = ( -/obj/effect/spawner/random/misc/structure/curtain, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/casino) -"pwP" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"pxf" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"pxr" = ( -/turf/open/floor/plating, -/area/gelida/caves/central_caves/garbledradio) -"pxY" = ( -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"pyk" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges) -"pyr" = ( -/obj/structure/rack/nometal, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"pyu" = ( -/obj/effect/landmark/xeno_tunnel_spawn, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/east_caves) -"pyF" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"pyY" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -7; - pixel_y = 27 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"pzg" = ( -/obj/effect/turf_decal/tile/full/black, -/obj/effect/turf_decal/tile/full/black, -/turf/open/floor/mainship/black/full, -/area/gelida/outdoors/rock) -"pzm" = ( -/obj/structure/sign/securearea{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/powergen) -"pzF" = ( -/obj/structure/nuke_disk_candidate, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"pzJ" = ( -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"pzR" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"pzU" = ( -/obj/structure/table/mainship, -/obj/item/tool/pen/blue{ - pixel_x = -8 - }, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"pAt" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"pAx" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"pAC" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_east_street) -"pAK" = ( -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/cavestructuretwo) -"pBj" = ( -/obj/structure/bed/stool, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"pBL" = ( -/obj/structure/closet, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"pCd" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_west_street) -"pCC" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"pCU" = ( -/obj/effect/spawner/random/misc/structure/curtain, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/casino) -"pDx" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"pEg" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 9 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"pEl" = ( -/obj/effect/ai_node, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"pEA" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_west_street) -"pEB" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"pED" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"pEK" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/landing_zone_forecon/landing_zone_4) -"pEN" = ( -/obj/item/shard, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"pFs" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/reinforced/prison, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"pFQ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/machinery/vending/nanomed{ - dir = 8 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"pFW" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/admin) -"pGr" = ( -/turf/open/floor/plating{ - dir = 8 - }, -/area/gelida/indoors/a_block/dorms) -"pGA" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/op_centre) -"pHd" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/item/organ/heart, -/turf/open/floor/tile/dark2{ - dir = 8 - }, -/area/gelida/indoors/a_block/executive) -"pHo" = ( -/obj/structure/sign/securearea{ - dir = 1 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"pHY" = ( -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"pIp" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/obj/structure/rack/nometal, -/obj/item/tool/hand_labeler, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"pIx" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"pIB" = ( -/obj/machinery/door/airlock/mainship/medical{ - dir = 2; - name = "Medical Airlock" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/medical) -"pIF" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"pIJ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/tile/dark2, -/area/gelida/indoors/c_block/mining) -"pIT" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"pIX" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9; - pixel_y = 25 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_street) -"pJc" = ( -/turf/closed/shuttle/dropship2/enginetwo{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"pJy" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"pJB" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"pJP" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"pJR" = ( -/obj/structure/table/mainship, -/obj/item/storage/box/beakers, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"pJW" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"pJX" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_street) -"pKb" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/medical) -"pKc" = ( -/obj/machinery/washing_machine, -/obj/machinery/washing_machine{ - pixel_y = 15 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"pKf" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"pKg" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"pKF" = ( -/obj/structure/table/mainship, -/obj/item/key/cargo_train, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"pKQ" = ( -/obj/structure/dropship_piece/two/engine/rightbottom, -/turf/closed/shuttle/dropship2/engineone{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"pKR" = ( -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"pKS" = ( -/turf/closed/wall/r_wall, -/area/gelida/outdoors/colony_streets/windbreaker) -"pLe" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/fitness) -"pLq" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_east_street) -"pLC" = ( -/turf/closed/shuttle/dropship2/enginethree, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"pLD" = ( -/obj/item/tool/crowbar, -/obj/machinery/landinglight/lz1{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"pLJ" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"pLT" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"pLU" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"pLW" = ( -/turf/closed/mineral/smooth/darkfrostwall, -/area/gelida/powergen) -"pMg" = ( -/obj/structure/flora/ausbushes/pointybush{ - pixel_y = 12 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"pMv" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"pNa" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"pNe" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/south_street) -"pNV" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"pOt" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 5 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"pOx" = ( -/obj/structure/cargo_container{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"pOA" = ( -/obj/structure/flora/bush{ - pixel_y = 9 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"pOG" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"pPq" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"pPt" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"pPz" = ( -/obj/structure/table/reinforced/prison, -/obj/item/tool/shovel, -/obj/item/tool/soap/deluxe{ - pixel_x = 4; - pixel_y = 13 - }, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"pPQ" = ( -/obj/machinery/floodlight/colony{ - pixel_y = 6 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/north_west_street) -"pPX" = ( -/turf/closed/wall, -/area/gelida/indoors/c_block/mining) -"pPZ" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_east_street) -"pQi" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 7; - pixel_y = 17 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"pQC" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"pRa" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -10; - pixel_y = 25 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"pRb" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_east_street) -"pRv" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"pRN" = ( -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"pSd" = ( -/obj/item/tool/crowbar, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"pSk" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"pSH" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/east_central_street) -"pSM" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 1 - }, -/obj/structure/filingcabinet{ - pixel_x = 7; - pixel_y = 1 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"pSO" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/north_east_street) -"pST" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_east_street) -"pSX" = ( -/obj/structure/inflatable/wall, -/turf/open/floor/prison/blue{ - dir = 8 - }, -/area/gelida/indoors/a_block/admin) -"pTe" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 7; - pixel_y = 17 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"pTB" = ( -/obj/structure/prop/mainship/gelida/rails, -/turf/open/floor/mainship/black/full, -/area/gelida/outdoors/rock) -"pTW" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"pUg" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"pUt" = ( -/obj/machinery/landinglight/lz1{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"pVu" = ( -/obj/structure/table/mainship, -/obj/item/storage/donut_box/empty{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"pVA" = ( -/obj/machinery/door/airlock/mainship/maint, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"pVU" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"pWq" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"pWu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"pWw" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/turf/open/floor/prison/plate, -/area/gelida/landing_zone_1) -"pWU" = ( -/turf/open/floor/prison{ - dir = 5 - }, -/area/gelida/indoors/a_block/dorm_north) -"pWW" = ( -/obj/machinery/light, -/obj/structure/closet/emcloset, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"pXd" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"pXp" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"pXA" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - name = "\improper B-Block Bar" - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"pYe" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"pYo" = ( -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_forecon/landing_zone_4) -"pYJ" = ( -/obj/structure/cargo_container/gorg, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - name = "synthethic potted plant"; - pixel_y = 28 - }, -/turf/open/floor/plating/platebot, -/area/gelida/indoors/c_block/cargo) -"pYO" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 6 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_street) -"pYW" = ( -/obj/item/stool, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/lone_buildings/chunk) -"pZa" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"pZc" = ( -/obj/structure/closet/secure_closet/miner, -/obj/structure/platform, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"pZD" = ( -/obj/structure/rack/nometal, -/obj/item/radio, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"pZF" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/op_centre) -"pZH" = ( -/obj/machinery/floodlight/colony, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/south_west_street) -"qac" = ( -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/c_block/cargo) -"qaq" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/paper, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"qaD" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/table/mainship{ - dir = 1; - flipped = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"qaM" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"qaR" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/obj/machinery/door/poddoor/shutters/mainship{ - dir = 1; - id = "Sec-Kitchen-Lockdown" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/security) -"qaV" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 - }, -/obj/machinery/light, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/landing_zone_2) -"qaW" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"qbe" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"qbo" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges/corpo) -"qbN" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"qbZ" = ( -/turf/closed/mineral/smooth/snowrock/indestructible, -/area/storage/testroom) -"qcd" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/landing_zone_2) -"qcg" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"qcQ" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/admin) -"qdj" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"qeb" = ( -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_street) -"qei" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/cellstripe{ - dir = 8 - }, -/area/gelida/indoors/lone_buildings/storage_blocks) -"qes" = ( -/obj/structure/prop/mainship/sensor_computer1, -/obj/structure/window/reinforced/windowstake{ - dir = 8 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"qex" = ( -/turf/closed/shuttle/dropship2/corners{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"qeL" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"qfl" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/tile/dark2, -/area/gelida/outdoors/rock) -"qfy" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/gelida/indoors/c_block/garage) -"qfJ" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"qfM" = ( -/obj/machinery/light, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"qfU" = ( -/obj/item/inflatable/wall, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"qgh" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/op_centre) -"qgs" = ( -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/south_west_street) -"qgR" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/hallway) -"qhc" = ( -/obj/structure/flora/jungle/planttop1, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/gelida/indoors/a_block/garden) -"qhj" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_east_street) -"qhP" = ( -/obj/structure/prop/mainship/sensor_computer2, -/obj/structure/window/reinforced/windowstake{ - dir = 4 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"qhT" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"qhZ" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"qih" = ( -/obj/structure/prop/mainship/gelida/propserver, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"qin" = ( -/turf/closed/shuttle/dropship2/finleft, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"qje" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/snacks/sliceable/pastries/plaincake{ - pixel_y = 4 - }, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"qjq" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"qjr" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/turf_decal/warning_stripes/stripedsquare/tile/border, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/b_block/bridge) -"qju" = ( -/obj/structure/table/gamblingtable, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 14; - pixel_y = 9 - }, -/obj/effect/decal/cleanable/blood{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/casino) -"qjA" = ( -/obj/item/weapon/gun/pistol/holdout, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"qjM" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"qjO" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"qky" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"qkB" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "checkpoint2" - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/central_streets) -"qkJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"qkR" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"qlC" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"qlD" = ( -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = 10; - pixel_y = -7 - }, -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = 7; - pixel_y = 15 - }, -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/op_centre) -"qlT" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/powergen) -"qmh" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/suit_storage_unit{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"qmp" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/gelida/indoors/c_block/mining) -"qmy" = ( -/obj/structure/coatrack{ - pixel_y = 24 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/storage/snow_suit{ - pixel_x = -2; - pixel_y = 27 - }, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"qmz" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/mainship/stripesquare, -/area/gelida/powergen) -"qna" = ( -/obj/structure/window_frame/colony, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"qnk" = ( -/obj/item/shard, -/obj/structure/window_frame/colony, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"qnF" = ( -/obj/machinery/door_control{ - dir = 8; - id = "West LZ Storage" - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"qnR" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/south_street) -"qol" = ( -/obj/structure/prop/vehicle/truck/destructible, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/w_rockies) -"qoN" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"qoP" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"qoT" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating, -/area/gelida/powergen) -"qpm" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"qpW" = ( -/obj/structure/table/mainship, -/obj/item/tool/kitchen/tray{ - pixel_y = 9 - }, -/obj/item/tool/kitchen/tray{ - pixel_y = 12 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"qqj" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"qqv" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/shuttle/dropship2/walltwo/alt, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"qqJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"qrg" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"qrj" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"qrA" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/tile/dark2{ - dir = 8 - }, -/area/gelida/indoors/a_block/executive) -"qrZ" = ( -/turf/open/floor/prison/sterilewhite, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"qsS" = ( -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/bridge) -"qtm" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/gelida/indoors/a_block/garden) -"qtB" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 18 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = -8; - pixel_y = 18 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -10; - pixel_y = 25 - }, -/turf/open/floor/tile/dark2, -/area/gelida/indoors/c_block/mining) -"qtR" = ( -/obj/item/ammo_magazine/rifle/ar11{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"quk" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/hydro) -"qus" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/op_centre) -"quw" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"quz" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"quG" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"quL" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"qvC" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 4 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"qvJ" = ( -/obj/structure/stairs/seamless, -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/powergen) -"qwd" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_street) -"qwh" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/landing_zone_2) -"qwH" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"qwT" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 10 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"qwV" = ( -/turf/closed/shuttle/dropship2/engine_sidealt{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"qxa" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"qxh" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/north_street) -"qxq" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/ice, -/area/gelida/powergen) -"qxs" = ( -/obj/structure/bookcase{ - pixel_x = 2; - pixel_y = 16 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"qxD" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"qxM" = ( -/obj/machinery/landinglight/lz1{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"qxW" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"qyj" = ( -/turf/closed/shuttle/dropship2/aisle{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"qyv" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/pen/blue, -/obj/item/flashlight/lamp{ - pixel_x = -9; - pixel_y = 10 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"qyJ" = ( -/obj/structure/table/mainship, -/obj/item/toy/prize/deathripley{ - pixel_x = -7; - pixel_y = 17 - }, -/obj/item/toy/prize/ripley{ - pixel_x = 4; - pixel_y = 7 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"qyL" = ( -/obj/structure/table/mainship, -/obj/item/paper{ - pixel_x = -8; - pixel_y = -6 - }, -/obj/item/paper{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/toy/prize/deathripley{ - pixel_x = 9; - pixel_y = 19 - }, -/obj/item/toy/prize/seraph{ - pixel_y = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"qzk" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"qzH" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves) -"qzL" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"qzW" = ( -/obj/structure/flora/ausbushes/sunnybush{ - pixel_y = 10 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/obj/structure/platform, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"qzY" = ( -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"qBt" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"qBz" = ( -/obj/effect/landmark/start/job/survivor, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"qBP" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"qCr" = ( -/obj/effect/acid_hole{ - dir = 4 - }, -/turf/closed/wall, -/area/gelida/indoors/c_block/cargo) -"qDl" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"qDM" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/caves/east_caves/garbledradio) -"qDN" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"qEb" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"qEd" = ( -/obj/structure/table/mainship, -/obj/structure/bedsheetbin{ - pixel_y = 7 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"qEi" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 10 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_street) -"qEA" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_east_street) -"qEI" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison/plate, -/area/gelida/indoors/lone_buildings/storage_blocks) -"qEN" = ( -/turf/closed/shuttle/dropship2/fins{ - dir = 5 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"qEZ" = ( -/obj/item/clothing/head/hardhat/orange, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_east_street) -"qFK" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/prison{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"qFN" = ( -/turf/closed/shuttle/dropship2/engineone, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"qFS" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/bridges) -"qGg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"qGP" = ( -/obj/machinery/washing_machine{ - pixel_x = -9; - pixel_y = 15 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"qHf" = ( -/obj/effect/spawner/random/engineering/toolbox, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/cargo) -"qHh" = ( -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/n_rockies) -"qHr" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/south_west_street) -"qHs" = ( -/obj/structure/inflatable/wall{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"qHD" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"qHK" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/caves/west_caves/garbledradio) -"qHZ" = ( -/obj/structure/stairs/corner_seamless, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"qIf" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"qID" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/obj/effect/ai_node, -/turf/open/floor/tile/dark2{ - dir = 8 - }, -/area/gelida/indoors/a_block/executive) -"qIG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/xeno_tunnel_spawn, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"qIJ" = ( -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"qIK" = ( -/obj/structure/table/mainship, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/faxmachine, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"qIQ" = ( -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"qIR" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/east_caves) -"qIU" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"qIV" = ( -/obj/effect/spawner/random/misc/structure/curtain, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/fitness) -"qJo" = ( -/obj/structure/cargo_container{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"qJs" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"qKf" = ( -/obj/machinery/miner/damaged/platinum, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves) -"qKi" = ( -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/corpo) -"qKj" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/hallway) -"qKl" = ( -/obj/machinery/prop/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"qKt" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"qKv" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/pickaxe, -/turf/open/floor/tile/dark2{ - dir = 4 - }, -/area/gelida/outdoors/rock) -"qKA" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/casino) -"qLo" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"qLx" = ( -/turf/open/floor/plating/platebot, -/area/gelida/indoors/c_block/cargo) -"qLy" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/east_central_street) -"qLz" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 10 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"qLL" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"qLU" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/landing_zone_forecon/landing_zone_4) -"qLW" = ( -/obj/item/reagent_containers/glass/rag, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"qMn" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/bridge) -"qMo" = ( -/obj/machinery/door/poddoor/mainship{ - dir = 1; - id = "mining_secure_blast_1"; - name = "\improper Secure Blast Door" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/lone_buildings/storage_blocks) -"qMB" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_east_street) -"qMR" = ( -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"qNe" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/suit_storage_unit{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"qNv" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/central_streets) -"qNz" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"qNE" = ( -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 12; - pixel_y = 16 - }, -/obj/structure/table/gamblingtable, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/casino) -"qNH" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/landing_zone_1) -"qNT" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_east_street) -"qOf" = ( -/obj/structure/cargo_container/wy, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"qOg" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"qOh" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/grass, -/area/gelida/indoors/a_block/garden) -"qOn" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/c_block/cargo) -"qOq" = ( -/obj/machinery/door/poddoor/shutters/mainship{ - dir = 1; - id = "Sec-Kitchen-Lockdown" - }, -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"qOv" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"qOE" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/landing_zone_2) -"qOH" = ( -/obj/structure/cargo_container{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"qOV" = ( -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_west_street) -"qOW" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"qPj" = ( -/obj/item/newspaper{ - pixel_x = 15; - pixel_y = -11 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"qPo" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"qPG" = ( -/obj/structure/prop/mainship/gelida/barrier, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"qQc" = ( -/obj/item/clothing/suit/ianshirt{ - pixel_x = -8; - pixel_y = -4 - }, -/turf/closed/wall, -/area/gelida/indoors/c_block/garage) -"qQf" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"qQz" = ( -/obj/machinery/door/airlock/mainship/engineering{ - name = "\improper Cargo Bay Quartermaster" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/cargo) -"qQH" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/stripedsquare/tile/border, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/b_block/bridge) -"qQP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"qRh" = ( -/obj/effect/ai_node, -/turf/closed/mineral/smooth/snowrock, -/area/gelida/outdoors/rock) -"qRn" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_west_street) -"qRu" = ( -/obj/machinery/portable_atmospherics/canister{ - pixel_y = 18 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"qRH" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"qRY" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"qSH" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"qSJ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"qSW" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/ai_node, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/security) -"qTf" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves) -"qTk" = ( -/obj/item/tool/pen/blue{ - pixel_x = 6 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"qUp" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/darkpurple, -/area/gelida/indoors/a_block/dorms) -"qUD" = ( -/obj/item/paper, -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"qUE" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"qUG" = ( -/turf/closed/shuttle/dropship2/corners{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"qUH" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/lone_buildings/storage_blocks) -"qUU" = ( -/obj/effect/landmark/nuke_spawn, -/turf/open/shuttle/dropship/three, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"qUZ" = ( -/obj/structure/table/gamblingtable, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/casino) -"qVb" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"qVp" = ( -/obj/structure/holohoop, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"qVs" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"qVz" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"qVM" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"qVZ" = ( -/obj/structure/table/fancywoodentable, -/obj/item/ashtray/bronze{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"qWi" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"qWo" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"qWp" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"qWs" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/b_block/hydro) -"qWM" = ( -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/bridges/corpo) -"qWU" = ( -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"qXf" = ( -/turf/open/floor/prison/whitegreen/corner{ - dir = 4 - }, -/area/gelida/indoors/a_block/medical) -"qXu" = ( -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"qXQ" = ( -/obj/docking_port/stationary/crashmode, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bar) -"qYj" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"qYl" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"qYn" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 1; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"qYM" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"qZd" = ( -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/freezer, -/area/gelida/indoors/a_block/dorms) -"qZp" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"qZr" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/security) -"qZL" = ( -/obj/vehicle/ridden/wheelchair, -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"qZM" = ( -/obj/machinery/scoreboard{ - id = "lvbasketball"; - pixel_y = 10 - }, -/obj/effect/turf_decal/warning_stripes/nscenter, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"raa" = ( -/turf/closed/mineral/smooth/darkfrostwall, -/area/gelida/caves/west_caves/garbledradio) -"raz" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/secureweighted, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_street) -"raK" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"raW" = ( -/obj/machinery/light, -/turf/open/floor/prison/darkpurple, -/area/gelida/indoors/a_block/dorms) -"rbc" = ( -/obj/structure/table/mainship, -/obj/item/ore/gold, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"rbp" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_west_street) -"rbD" = ( -/obj/structure/table/reinforced/prison, -/obj/effect/spawner/random/misc/cigarettes{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/item/ashtray/bronze{ - pixel_x = -6; - pixel_y = -3 - }, -/obj/item/tool/lighter/zippo{ - pixel_x = -7; - pixel_y = 14 - }, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 7 - }, -/obj/machinery/light, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/garage) -"rbU" = ( -/obj/structure/flora/bush{ - pixel_y = 9 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"rcp" = ( -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"rcx" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_west_street) -"rdf" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple/full, -/area/gelida/outdoors/colony_streets/north_west_street) -"rdg" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"rdk" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"rdm" = ( -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_west_street) -"rdG" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"rdU" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"reb" = ( -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = 10; - pixel_y = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"red" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/fitness) -"ree" = ( -/obj/machinery/door/airlock/dropship_hatch/right/two, -/turf/open/shuttle/dropship/three, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"rem" = ( -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/landing_zone_1) -"rez" = ( -/obj/effect/spawner/gibspawner/robot, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/security) -"rfq" = ( -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/caves/west_caves/garbledradio) -"rfv" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/rock) -"rfP" = ( -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/c_block/cargo) -"rga" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"rgr" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"rgs" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"rgA" = ( -/obj/effect/spawner/random/misc/folder/nooffset{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/newspaper{ - pixel_x = 1; - pixel_y = -8 - }, -/obj/effect/turf_decal/tracks/wheels/bloody{ - dir = 4 - }, -/obj/effect/ai_node, -/obj/effect/spawner/random/medical/organ{ - pixel_x = -7; - pixel_y = 17 - }, -/obj/effect/spawner/random/medical/organ{ - pixel_x = 5; - pixel_y = -7 - }, -/obj/effect/spawner/random/medical/organ{ - pixel_x = -14; - pixel_y = -16 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"rgH" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/kitchen) -"rhm" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_east_street) -"rhx" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges/corpo) -"rhC" = ( -/turf/closed/wall/r_wall, -/area/gelida/outdoors/colony_streets/south_west_street) -"rhH" = ( -/turf/closed/mineral/smooth/snowrock, -/area/gelida/indoors/b_block/bridge) -"rhQ" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"rhS" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/lone_buildings/chunk) -"rhU" = ( -/obj/item/tool/hatchet, -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/hydro) -"rib" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/kitchen) -"rio" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/food_or_drink/donut{ - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 7; - pixel_y = -4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"rip" = ( -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_street) -"riq" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/mainship{ - dir = 2 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/cavestructuretwo) -"riu" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"riC" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/rock) -"riW" = ( -/turf/open/floor/prison/blue{ - dir = 4 - }, -/area/gelida/indoors/a_block/admin) -"riX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"riY" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"rkg" = ( -/turf/closed/mineral/smooth/snowrock, -/area/gelida/indoors/c_block/mining) -"rkr" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/bottle/sake{ - pixel_x = 6; - pixel_y = 10 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"rkG" = ( -/turf/closed/mineral/smooth/snowrock, -/area/gelida/outdoors/colony_streets/south_east_street) -"rkP" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"rkQ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/bridges/corpo) -"rkR" = ( -/turf/closed/wall, -/area/gelida/landing_zone_1) -"rkS" = ( -/obj/item/clothing/suit/storage/RO{ - name = "\improper UA jacket" - }, -/obj/effect/ai_node, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/shuttle/dropship/three, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"rkW" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"rlb" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"rli" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/east_central_street) -"rll" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/landing_zone_2) -"rln" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "\improper Dormitories" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorm_north) -"rlx" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/admin) -"rlA" = ( -/obj/effect/landmark/excavation_site_spawner, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"rlU" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"rlV" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/east_central_street) -"rlW" = ( -/obj/structure/prop/vehicle/crane/destructible, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"rmn" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"rmB" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/corner_seamless, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"rmK" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/snacks/grown/deathberries{ - pixel_y = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"rnb" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"rne" = ( -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"rnh" = ( -/obj/docking_port/stationary/crashmode, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_street) -"rnH" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/blue{ - dir = 8 - }, -/area/gelida/indoors/a_block/admin) -"roh" = ( -/obj/structure/table/mainship, -/obj/item/paper, -/obj/item/toy/prize/honk{ - pixel_x = -10; - pixel_y = 5 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"rou" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"roA" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"roC" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_east_street) -"roD" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell{ - dir = 1 - }, -/turf/open/floor/tile/dark2{ - dir = 4 - }, -/area/gelida/indoors/a_block/medical) -"roG" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison{ - dir = 9 - }, -/area/gelida/indoors/b_block/bridge) -"roX" = ( -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/bridge) -"roY" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/fitness) -"rpG" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"rpT" = ( -/turf/open/floor/prison/plate, -/area/gelida/indoors/lone_buildings/storage_blocks) -"rqw" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "checkpoint1" - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"rra" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"rrl" = ( -/obj/structure/cable, -/turf/closed/mineral/smooth/snowrock, -/area/gelida/outdoors/rock) -"rrm" = ( -/obj/effect/spawner/random/engineering/wood, -/obj/effect/ai_node, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"rsg" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"rsm" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_street) -"rso" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_west_street) -"rsq" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"rsK" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/tile/dark2, -/area/gelida/indoors/c_block/mining) -"rsL" = ( -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"rsR" = ( -/turf/closed/mineral/smooth/snowrock, -/area/gelida/indoors/c_block/garage) -"rsY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/structure/window/reinforced/windowstake{ - dir = 1 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"rtC" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/plate, -/area/gelida/landing_zone_1) -"rtR" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"rtW" = ( -/obj/item/clothing/head/collectable/tophat{ - pixel_x = -7; - pixel_y = 5 - }, -/obj/item/limb/head{ - pixel_x = -7; - pixel_y = -11 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"rtX" = ( -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"rum" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"ruv" = ( -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/central_streets) -"ruF" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"ruK" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"ruV" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/landmark/sensor_tower, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"rvo" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"rvq" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves/garbledradio) -"rvs" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"rvx" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tracks/wheels/bloody{ - dir = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"rvL" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"rvV" = ( -/obj/machinery/vending/cola, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"rwW" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/bridges/corpo_fitness) -"rxg" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -7; - pixel_y = 27 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"rxw" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"rxC" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 10 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"rxI" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"ryj" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/hallway) -"ryq" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"ryG" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"ryK" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/weaponry/explosive/grenade/multiplefour{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"rzk" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"rzM" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"rzO" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 9 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"rAb" = ( -/obj/item/weapon/gun/revolver/cmb, -/obj/item/clothing/head/soft/sec, -/obj/effect/spawner/random/misc/structure/curtain/medical, -/turf/open/floor/prison/whitegreen{ - dir = 4 - }, -/area/gelida/indoors/a_block/medical) -"rAf" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"rAj" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"rAx" = ( -/obj/item/shard, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"rAJ" = ( -/obj/structure/rack/nometal, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/obj/machinery/light, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"rBz" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/structure/window/reinforced/windowstake{ - dir = 1 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"rBW" = ( -/obj/item/toy/beach_ball/holoball{ - pixel_x = 7; - pixel_y = -9 - }, -/obj/structure/holohoop{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"rCj" = ( -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"rCt" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"rCD" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/structure/cargo_container/gorg, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"rCK" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/mainship/generic, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/fitness) -"rCP" = ( -/obj/prop/hydroponics, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/plating/platebotc, -/area/gelida/indoors/b_block/hydro) -"rCQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/gelida/powergen) -"rDm" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"rDn" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/cans/souto{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/snacks/popcorn{ - pixel_x = 5; - pixel_y = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/landing_zone_1) -"rDu" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/cargo) -"rDx" = ( -/turf/closed/mineral/smooth/snowrock, -/area/gelida/indoors/c_block/bridge) -"rDK" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 1 - }, -/turf/open/floor/tile/dark2{ - dir = 8 - }, -/area/gelida/indoors/a_block/executive) -"rDT" = ( -/obj/structure/table/mainship, -/obj/item/tool/minihoe{ - pixel_y = -2 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 2; - pixel_y = 9 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"rDW" = ( -/turf/closed/mineral/smooth/snowrock, -/area/gelida/indoors/c_block/casino) -"rDZ" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_east_street) -"rEa" = ( -/obj/item/shard, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"rFv" = ( -/obj/machinery/door/airlock/multi_tile/mainship/maint{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"rFx" = ( -/obj/structure/prop/vehicle/truck/destructible, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"rFJ" = ( -/obj/effect/spawner/random/misc/folder/nooffset, -/obj/item/newspaper{ - pixel_x = -7; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"rFU" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"rGr" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"rHi" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 9 - }, -/turf/open/shuttle/dropship/three, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"rHj" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/table/mainship, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/fitness) -"rHv" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/machinery/light, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"rHw" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"rHL" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/south_east_street) -"rIi" = ( -/turf/closed/mineral/smooth/snowrock, -/area/gelida/outdoors/rock) -"rIo" = ( -/turf/open/floor/prison/blue, -/area/gelida/indoors/a_block/hallway) -"rIE" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"rJo" = ( -/obj/effect/spawner/random/engineering/structure/tank/fuelweighted, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"rKr" = ( -/obj/structure/table/mainship, -/obj/item/clothing/gloves/black, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"rLo" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"rLw" = ( -/obj/machinery/chem_dispenser/soda{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"rLA" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"rLY" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"rMe" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_street) -"rMh" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/b_block/bridge) -"rMl" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 10 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/north_street) -"rMD" = ( -/turf/closed/mineral/smooth/snowrock, -/area/gelida/indoors/c_block/cargo) -"rME" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"rMI" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/gelida/indoors/c_block/bridge) -"rMS" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/kitchen) -"rMZ" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/south_street) -"rNc" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_y = 16 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"rNr" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/chunk) -"rNs" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/corpo) -"rNw" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/fitness) -"rNA" = ( -/obj/effect/ai_node, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/mining) -"rNB" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/south_east_street) -"rNG" = ( -/turf/closed/mineral/smooth/snowrock, -/area/gelida/outdoors/colony_streets/south_street) -"rOf" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"rOI" = ( -/turf/open/floor/tile/dark2{ - dir = 4 - }, -/area/gelida/outdoors/rock) -"rOU" = ( -/turf/closed/shuttle/dropship2/finleft{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"rPq" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"rPt" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"rPS" = ( -/obj/item/trash/mre, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"rQa" = ( -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"rQe" = ( -/obj/structure/table/mainship{ - dir = 8; - flipped = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"rQo" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/structure/prop/mainship/gelida/smallwire, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"rQq" = ( -/obj/structure/table/gamblingtable, -/obj/item/toy/deck{ - pixel_x = 4; - pixel_y = 5 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"rQS" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "\improper Mining Equipment" - }, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/c_block/mining) -"rQU" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/south_east_street) -"rRg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges) -"rRm" = ( -/obj/effect/spawner/random/medical/heal_pack/bruteweighted{ - pixel_x = -3; - pixel_y = -5 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"rRB" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/hallway) -"rRJ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges/op_centre) -"rSi" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"rSo" = ( -/obj/machinery/vending/MarineMed/Blood, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"rSG" = ( -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"rTb" = ( -/obj/item/shard, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_west_street) -"rUv" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"rVn" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/cans/souto{ - pixel_x = 6; - pixel_y = 2 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/rock) -"rVB" = ( -/obj/item/trash/mre, -/turf/open/floor/prison/blue{ - dir = 4 - }, -/area/gelida/indoors/a_block/admin) -"rVJ" = ( -/obj/structure/rack/nometal, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"rVO" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"rWh" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"rWF" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"rWW" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/closed/wall/r_wall/unmeltable, -/area/gelida/outdoors/colony_streets/north_east_street) -"rXe" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"rXg" = ( -/obj/machinery/light, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"rXv" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"rXK" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_east_street) -"rYv" = ( -/obj/structure/inflatable/wall{ - dir = 4 - }, -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/plating{ - dir = 8 - }, -/area/gelida/indoors/a_block/admin) -"rYJ" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/casino) -"rYO" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/corpo) -"rYS" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"rYU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"rZo" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"rZz" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/central_streets) -"rZN" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 4 - }, -/obj/item/tool/lighter/random{ - pixel_x = 12; - pixel_y = 19 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_east_street) -"rZQ" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"rZS" = ( -/obj/machinery/vending/cigarette/colony, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"saB" = ( -/obj/effect/landmark/xeno_tunnel_spawn, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"saC" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/fitness) -"saG" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"saH" = ( -/obj/structure/showcase{ - desc = "The display model for a NanoTrasen generation one synthetic. It almost feels like the eyes on this one follow you."; - name = "Display synthetic" - }, -/obj/structure/window/reinforced, -/obj/structure/platform, -/turf/open/floor/podhatch/floor, -/area/gelida/indoors/a_block/corpo) -"saI" = ( -/turf/open/floor/prison/blue{ - dir = 9 - }, -/area/gelida/indoors/a_block/hallway) -"saO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"sbf" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"sbx" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"sbQ" = ( -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/fitness) -"sbZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/blue{ - dir = 9 - }, -/area/gelida/indoors/a_block/admin) -"scg" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/closed/wall/r_wall, -/area/gelida/outdoors/colony_streets/windbreaker) -"scv" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/north_west_street) -"scR" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"sdy" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison{ - dir = 9 - }, -/area/gelida/indoors/b_block/bridge) -"sdU" = ( -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_street) -"sdZ" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"sek" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -7; - pixel_y = 27 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"seW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/op_centre) -"sfR" = ( -/obj/structure/table/mainship, -/obj/item/book/manual/chef_recipes, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"sgj" = ( -/obj/structure/cargo_container/hd_blue{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"sgl" = ( -/obj/machinery/landinglight/lz1{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"sgp" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/machinery/vending/nanomed{ - dir = 8 - }, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"sgt" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -12; - pixel_y = 25 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"sgw" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"sgI" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/blue{ - dir = 10 - }, -/area/gelida/indoors/a_block/admin) -"sgL" = ( -/obj/item/inflatable/wall, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"sgS" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/prison/plate, -/area/gelida/indoors/lone_buildings/storage_blocks) -"shk" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/weaponry/gun/sidearms, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"shp" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"shA" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/mainship/gelida/rails, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"shZ" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"sia" = ( -/obj/effect/spawner/random/engineering/wood, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/east_central_street) -"sir" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_west_street) -"siO" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"siX" = ( -/obj/effect/turf_decal/warning_stripes/thick, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"sjb" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/stripesquare, -/area/gelida/outdoors/colony_streets/north_east_street) -"sjh" = ( -/turf/closed/shuttle/dropship2/enginetwo{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"sjj" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/kitchen) -"sjp" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitegreen{ - dir = 1 - }, -/area/gelida/indoors/a_block/medical) -"sks" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"skv" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/trash/plate{ - pixel_x = 11; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = 11; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 4 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"skG" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"skK" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"skP" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"slv" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/medical) -"sly" = ( -/obj/structure/bed, -/obj/structure/bed{ - buckling_y = 13; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"slZ" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"smj" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges/corpo_fitness) -"smR" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -9; - pixel_y = 7 - }, -/obj/item/flashlight/lamp{ - pixel_x = 7 - }, -/obj/item/storage/holster/flarepouch/full, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"sno" = ( -/obj/effect/turf_decal/tracks/wheels/bloody{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"snA" = ( -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges/op_centre) -"snC" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"snG" = ( -/obj/structure/dropship_piece/two/engine/rightbottom, -/turf/closed/shuttle/dropship2/engineone{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"soc" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/blue{ - dir = 9 - }, -/area/gelida/indoors/a_block/admin) -"soj" = ( -/turf/closed/wall/r_wall, -/area/gelida/indoors/a_block/hallway) -"sok" = ( -/turf/open/floor/prison/darkpurple{ - dir = 9 - }, -/area/gelida/indoors/a_block/dorms) -"som" = ( -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"sow" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"soH" = ( -/obj/structure/table/fancywoodentable, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"soJ" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"soL" = ( -/obj/effect/spawner/random/engineering/ore_box, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/outdoors/colony_streets/south_east_street) -"spk" = ( -/obj/structure/flora/ausbushes/reedbush{ - pixel_y = 11 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"spC" = ( -/obj/structure/prop/mainship/gelida/rails, -/obj/structure/prop/mainship/gelida/rails{ - dir = 6 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/outdoors/rock) -"sqi" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"sqm" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"sqH" = ( -/obj/docking_port/stationary/crashmode, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_west_street) -"sqV" = ( -/turf/open/floor/prison/whitegreen/corner, -/area/gelida/indoors/a_block/medical) -"srs" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/rock) -"sru" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"srx" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_street) -"ssh" = ( -/obj/structure/table/reinforced/prison, -/obj/item/clothing/head/welding{ - pixel_y = 7 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"ssD" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/folder/nooffset{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/effect/spawner/random/misc/folder/nooffset{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"ssE" = ( -/obj/item/clothing/under/shorts/blue{ - pixel_x = -6; - pixel_y = -9 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"ssM" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"ssQ" = ( -/obj/structure/rack/nometal, -/obj/item/tank/emergency_oxygen{ - pixel_x = -6 - }, -/obj/item/tank/emergency_oxygen{ - pixel_y = 1 - }, -/obj/item/tank/emergency_oxygen{ - pixel_x = 6; - pixel_y = 2 - }, -/turf/open/floor/tile/dark2, -/area/gelida/outdoors/rock) -"ssR" = ( -/obj/structure/cargo_container, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_east_street) -"ssT" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"ssZ" = ( -/obj/item/tool/crowbar, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"stq" = ( -/obj/machinery/light, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"stE" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"stL" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"stU" = ( -/obj/machinery/door/airlock/mainship/security/glass{ - dir = 1; - name = "\improper Marshall Office Armory"; - req_access = null - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/security) -"suB" = ( -/obj/docking_port/stationary/crashmode, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/east_central_street) -"suP" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"suT" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"suW" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/cargo) -"suZ" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"svc" = ( -/obj/structure/rack/nometal, -/obj/item/tool/minihoe{ - pixel_x = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/obj/item/tool/minihoe{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -2 - }, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"svr" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"svV" = ( -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"swq" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"swH" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"swV" = ( -/obj/structure/table/gamblingtable, -/obj/item/toy/deck{ - pixel_x = 4; - pixel_y = 12 - }, -/obj/item/toy/deck{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/casino) -"sxh" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"sxm" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"sxr" = ( -/obj/machinery/door_control{ - pixel_x = -6; - pixel_y = 26 - }, -/obj/machinery/door_control{ - id = "map_corpo"; - pixel_x = 6; - pixel_y = 26 - }, -/obj/structure/rack/nometal, -/obj/item/storage/fancy/crayons{ - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/corpo) -"sxL" = ( -/obj/structure/cable, -/obj/structure/stairs/seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/landing_zone_1) -"sxS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"sxT" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"syd" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/landing_zone_2) -"sym" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"syt" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"syu" = ( -/obj/structure/ore_box{ - pixel_x = 5 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"syO" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/kitchen) -"szf" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/pickaxe, -/obj/effect/spawner/random/engineering/pickaxe, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_street) -"szK" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/corpo) -"szN" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/structure/table/mainship, -/obj/item/trash/plate{ - pixel_x = -13; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/drinks/coffee, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"szX" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - pixel_y = 6 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"sAt" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/lone_buildings/storage_blocks) -"sAE" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/turf_decal/warning_stripes/thin, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "checkpoint2" - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/central_streets) -"sAH" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"sAO" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"sBt" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/pistachios, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"sBH" = ( -/obj/structure/table/mainship, -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 16; - pixel_y = 7 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"sBI" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 6 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"sCi" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/south_east_street) -"sCG" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/gelida/landing_zone_2) -"sCH" = ( -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"sCQ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"sDc" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/rack/nometal, -/obj/item/weapon/baseballbat/metal, -/obj/item/weapon/baseballbat/metal{ - pixel_x = 5 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"sDk" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/platebot, -/area/gelida/indoors/c_block/cargo) -"sDt" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/bridges/op_centre) -"sDv" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/south_west_street) -"sDx" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 8; - name = "\improper Dormitories" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"sEe" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"sEt" = ( -/obj/structure/table/fancywoodentable, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"sEJ" = ( -/obj/effect/spawner/random/engineering/extinguisher/regularweighted, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"sEM" = ( -/obj/item/shard, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"sEZ" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/soap/regularweighted, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"sFv" = ( -/turf/open/floor/prison/blue{ - dir = 10 - }, -/area/gelida/indoors/a_block/hallway) -"sFK" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"sGf" = ( -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"sGn" = ( -/obj/structure/table/mainship, -/obj/item/clothing/gloves/heldgloves/boxing, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"sGo" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_east_street) -"sGG" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8 - }, -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"sGN" = ( -/obj/effect/spawner/random/engineering/wood, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"sHi" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/docking_port/stationary/crashmode, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"sHZ" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/bridges/op_centre) -"sIb" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/kitchen) -"sIj" = ( -/obj/structure/cargo_container/ch_red, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"sIt" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"sIU" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 6 - }, -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"sIV" = ( -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"sIZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"sJb" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"sJg" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_west_street) -"sJq" = ( -/turf/closed/shuttle/dropship2/fins{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"sJr" = ( -/obj/item/clothing/head/hardhat, -/obj/structure/closet/crate, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/lone_buildings/storage_blocks) -"sJs" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"sJv" = ( -/obj/structure/cargo_container/horizontal{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_east_street) -"sJA" = ( -/turf/closed/shuttle/dropship2/enginetwo{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"sJD" = ( -/obj/effect/spawner/random/misc/structure/curtain, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"sKa" = ( -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"sKj" = ( -/obj/structure/fence, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"sKr" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/central_streets) -"sKE" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"sKM" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"sKS" = ( -/obj/structure/bed/chair/wood/normal, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"sLZ" = ( -/mob/living/simple_animal/cat/kitten{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"sMe" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_1) -"sMi" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"sMk" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/hydro) -"sMv" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"sMC" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/landing_zone_2) -"sMK" = ( -/obj/structure/table/fancywoodentable, -/obj/item/trash/plate, -/obj/item/trash/plate{ - pixel_x = 3; - pixel_y = 10 - }, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"sML" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/secureweighted, -/turf/open/floor/prison{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"sMO" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/grass, -/area/gelida/indoors/a_block/garden) -"sMS" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/admin) -"sNd" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/blue{ - dir = 4 - }, -/area/gelida/indoors/a_block/hallway) -"sNv" = ( -/obj/structure/bed, -/obj/item/bedsheet/yellow, -/obj/structure/safe/floor{ - pixel_y = -6 - }, -/obj/item/clothing/under/redcoat, -/obj/item/tool/kitchen/knife/ritual, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"sNQ" = ( -/obj/structure/inflatable/wall{ - dir = 8 - }, -/obj/item/ammo_magazine/rifle/ar11{ - current_rounds = 0 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/kitchen) -"sNT" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/gelida/landing_zone_2) -"sOb" = ( -/turf/closed/wall, -/area/gelida/indoors/c_block/cargo) -"sOv" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"sOx" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"sOJ" = ( -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"sOL" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/garden) -"sOU" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/windbreaker) -"sPq" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/bridge) -"sPN" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/gelida/indoors/b_block/bridge) -"sPO" = ( -/obj/machinery/door/poddoor/shutters/mainship{ - dir = 1; - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/security) -"sQf" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"sQj" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/op_centre) -"sQm" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"sQn" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/closed/mineral/smooth/snowrock, -/area/gelida/outdoors/rock) -"sQp" = ( -/obj/structure/table/mainship, -/obj/item/armor_module/module/antenna, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"sQv" = ( -/obj/structure/table/mainship, -/obj/structure/bed/chair{ - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"sQI" = ( -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"sQJ" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"sQU" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/obj/structure/prop/mainship/gelida/smallwire, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"sQW" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/garage) -"sRh" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - pixel_y = 5 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"sRi" = ( -/obj/effect/spawner/random/misc/structure/curtain/medical, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"sRk" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"sRx" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/kitchen) -"sRQ" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"sSk" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/bridge) -"sSY" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"sTK" = ( -/obj/machinery/door/airlock/mainship/generic, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/cargo) -"sUi" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"sUt" = ( -/obj/machinery/door/poddoor/shutters/mainship{ - dir = 2 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/cavestructuretwo) -"sUO" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"sUT" = ( -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/rock) -"sVj" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/plate, -/area/gelida/indoors/lone_buildings/storage_blocks) -"sVy" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/hydro) -"sVP" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"sVQ" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_street) -"sVZ" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"sWa" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"sWh" = ( -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/cavestructuretwo) -"sWl" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"sWt" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_west_street) -"sWy" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"sWW" = ( -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/casino) -"sXb" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"sXp" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"sXy" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"sYg" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/north_street) -"sYm" = ( -/obj/structure/rack/nometal, -/obj/item/stack/sheet/cardboard, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"sYC" = ( -/obj/machinery/photocopier, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"sYN" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/admin) -"sZy" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/central_streets) -"sZF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple{ - dir = 10 - }, -/area/gelida/indoors/a_block/dorms) -"sZR" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"sZV" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"sZZ" = ( -/turf/open/floor/plating, -/area/gelida/cavestructuretwo) -"tad" = ( -/obj/structure/table/mainship, -/obj/item/flashlight/lamp{ - pixel_x = -14; - pixel_y = 10 - }, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/prison/blue, -/area/gelida/indoors/a_block/admin) -"taz" = ( -/turf/open/floor/prison, -/area/gelida/indoors/a_block/hallway) -"taG" = ( -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_east_street) -"taI" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/effect/spawner/random/misc/plushie, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"taP" = ( -/turf/open/floor/prison/darkpurple, -/area/gelida/indoors/a_block/dorms) -"taY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"taZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"tbe" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/prop/mainship/sensor_computer3, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"tbE" = ( -/obj/structure/table/mainship, -/obj/item/ammo_magazine/rifle/ar11{ - current_rounds = 0; - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/ammo_magazine/rifle/ar11{ - current_rounds = 0; - pixel_x = 11; - pixel_y = -4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"tbN" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"tcn" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/kitchen) -"tct" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"tcF" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/hallway) -"tdm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"tdJ" = ( -/obj/structure/table/reinforced/prison, -/obj/effect/spawner/random/food_or_drink/beer{ - pixel_x = 8 - }, -/obj/item/reagent_containers/food/snacks/hotdog{ - pixel_x = -8; - pixel_y = 15 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"tdN" = ( -/obj/structure/sink/puddle, -/turf/open/floor/grass, -/area/gelida/indoors/a_block/garden) -"tec" = ( -/obj/structure/table/reinforced/prison, -/obj/item/radio/off{ - pixel_x = -5; - pixel_y = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"tej" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 9 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/north_street) -"ten" = ( -/obj/structure/bed{ - dir = 1; - name = "bedroll" - }, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"teC" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/sign/securearea, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"teS" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/central_streets) -"tfn" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"tfz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"tfZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"tgz" = ( -/obj/effect/spawner/random/engineering/pickaxe, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"tgK" = ( -/obj/structure/platform, -/turf/closed/wall, -/area/gelida/indoors/a_block/corpo) -"tgL" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"thk" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"thu" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/south_street) -"thQ" = ( -/obj/machinery/power/apc/drained, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"tib" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"tie" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"tix" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"tiC" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"tiJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9; - pixel_y = 25 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"tjd" = ( -/obj/item/shard, -/obj/effect/ai_node, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"tjq" = ( -/obj/machinery/light{ - dir = 8; - pixel_y = 16 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"tjx" = ( -/obj/item/stack/rods, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"tjE" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate, -/obj/machinery/light, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"tjU" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"tjX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"tko" = ( -/obj/effect/spawner/random/misc/structure/curtain/medical, -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/medical) -"tkq" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"tku" = ( -/obj/machinery/door/airlock/mainship/maint{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"tkC" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"tlE" = ( -/obj/structure/closet/secure_closet/bar, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"tlH" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/blue, -/area/gelida/indoors/a_block/admin) -"tmg" = ( -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_street) -"tmh" = ( -/obj/item/trash/burger, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"tmm" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "\improper Canteen" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/kitchen) -"tms" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8 - }, -/area/gelida/indoors/a_block/dorms) -"tmu" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"tmz" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"tmG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/full/black, -/obj/effect/turf_decal/tile/full/black, -/obj/effect/abstract/tele_blocker, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/c_block/mining) -"tmH" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"tmL" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/blue{ - dir = 8 - }, -/area/gelida/indoors/a_block/admin) -"tmV" = ( -/obj/machinery/vending/snack, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"tnB" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"tnD" = ( -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_street) -"tnJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"tod" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "lv_gym_2"; - name = "treadmill" - }, -/obj/machinery/conveyor_switch{ - id = "lv_gym_2"; - name = "treadmill switch"; - pixel_x = -9; - pixel_y = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"toZ" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"tpP" = ( -/obj/structure/prop/vehicle/truck/destructible{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"tpQ" = ( -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"tpW" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"tqc" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"tqh" = ( -/obj/effect/turf_decal/warning_stripes/thick, -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/powergen) -"tqi" = ( -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_west_street) -"tqo" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"tqq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"tqv" = ( -/obj/structure/cable, -/obj/docking_port/stationary/crashmode, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"tqF" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_west_street) -"tqM" = ( -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bridge) -"tqO" = ( -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"trd" = ( -/obj/structure/stairs/seamless/platform, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/bridge) -"trn" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_street) -"trM" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_street) -"trS" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorm_north) -"tsI" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"tto" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/south_west_street) -"ttA" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"ttT" = ( -/obj/structure/table/fancywoodentable, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 13; - pixel_y = 17 - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"tud" = ( -/obj/structure/bed/roller, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"tuK" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 8; - name = "\improper Dormitories" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"tvB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"tvG" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_east_street) -"tvS" = ( -/obj/structure/table/fancywoodentable, -/obj/item/flashlight/lamp{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"twk" = ( -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"twr" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"tww" = ( -/obj/structure/table/gamblingtable, -/obj/item/reagent_containers/food/drinks/bottle/sake{ - pixel_x = 3; - pixel_y = 13 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_y = 4 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/casino) -"twI" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/hallway) -"twW" = ( -/obj/structure/inflatable/wall, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"txq" = ( -/obj/item/shard, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"txr" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"txw" = ( -/obj/structure/girder/displaced, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"txz" = ( -/obj/structure/table/fancywoodentable, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"txG" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/landing_zone_1) -"txH" = ( -/turf/closed/wall, -/area/gelida/indoors/a_block/corpo) -"tyc" = ( -/turf/closed/shuttle/dropship2/enginetwo{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"tym" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"tyq" = ( -/obj/structure/table/mainship{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"tyz" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_east_street) -"tyG" = ( -/turf/open/floor/plating, -/area/gelida/indoors/a_block/fitness) -"tyI" = ( -/obj/structure/table/mainship, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - name = "synthetic potted plant"; - pixel_y = 13 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"tyY" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"tzc" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"tze" = ( -/obj/structure/table/mainship, -/obj/item/toy/crossbow, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"tzv" = ( -/obj/structure/inflatable/wall, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"tzz" = ( -/obj/item/stack/rods, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"tzF" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"tzW" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/east_central_street) -"tzY" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/caves/east_caves/garbledradio) -"tAs" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"tAx" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"tAB" = ( -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"tAH" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/item/shard, -/obj/item/stack/rods, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"tAY" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/snacks/sandwiches/bread{ - pixel_y = 8 - }, -/obj/item/reagent_containers/food/snacks/sandwiches/bread{ - pixel_y = 4 - }, -/obj/item/reagent_containers/food/snacks/sandwiches/bread, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"tBa" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"tBn" = ( -/obj/structure/inflatable/wall{ - dir = 1 - }, -/turf/open/floor/prison/blue{ - dir = 4 - }, -/area/gelida/indoors/a_block/admin) -"tBB" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/south_street) -"tBM" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"tCc" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"tCp" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"tCw" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges) -"tCE" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"tCF" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"tCL" = ( -/obj/structure/cable, -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/security) -"tCX" = ( -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"tDZ" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"tES" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"tEU" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"tEW" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"tFg" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"tFo" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"tFU" = ( -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"tGa" = ( -/obj/structure/table/reinforced/prison, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"tGe" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/south_street) -"tGE" = ( -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = 9; - pixel_y = -4 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_east_street) -"tGM" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/spawner/random/weaponry/ammo/sidearm, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"tHt" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/fitness) -"tHH" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"tHI" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"tIi" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"tIv" = ( -/obj/structure/bed, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_forecon/landing_zone_4) -"tIE" = ( -/obj/effect/ai_node, -/turf/open/shuttle/dropship/six, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"tJa" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"tJf" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/black/full, -/area/gelida/outdoors/colony_streets/central_streets) -"tJg" = ( -/obj/effect/landmark/xeno_tunnel_spawn, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"tJs" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves/garbledradio) -"tJZ" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/blue{ - dir = 10 - }, -/area/gelida/indoors/a_block/admin) -"tKl" = ( -/obj/item/trash/barcardine, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/hallway) -"tKn" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"tKr" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"tKz" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_east_street) -"tKP" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/gelida/indoors/b_block/bridge) -"tLr" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"tLt" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_east_street) -"tLw" = ( -/obj/structure/table/reinforced/prison, -/obj/effect/spawner/random/misc/folder/nooffset, -/obj/structure/cable, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"tLO" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/obj/item/tool/crowbar, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"tMb" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"tMh" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"tMH" = ( -/turf/closed/shuttle/dropship2/glassfive, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"tMM" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_street) -"tNv" = ( -/obj/effect/spawner/random/engineering/structure/tank/fuelweighted, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"tNA" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/kitchen) -"tNH" = ( -/obj/machinery/door/airlock/mainship/engineering{ - dir = 1; - name = "\improper Workshop Storage" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/corpo) -"tNN" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/docking_port/stationary/crashmode, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"tNS" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/south_street) -"tNT" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"tNZ" = ( -/obj/effect/decal/cleanable/vomit, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"tOc" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/east_caves/garbledradio) -"tOY" = ( -/obj/structure/table/mainship, -/obj/item/clothing/gloves/botanic_leather, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"tPp" = ( -/obj/prop/hydroponics, -/turf/open/floor/plating/platebotc, -/area/gelida/indoors/b_block/hydro) -"tPt" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves/garbledradio) -"tPN" = ( -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"tQi" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/cargo) -"tQN" = ( -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"tQO" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/chunk) -"tQR" = ( -/obj/structure/table/mainship{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/prison/blue{ - dir = 9 - }, -/area/gelida/indoors/a_block/admin) -"tQT" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"tRg" = ( -/obj/item/tool/weldingtool{ - pixel_x = 6; - pixel_y = -8 - }, -/obj/item/tool/weldpack{ - pixel_x = -6; - pixel_y = 19 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"tRD" = ( -/obj/structure/rack/nometal, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"tRN" = ( -/obj/structure/closet/crate/ammo, -/obj/item/weapon/gun/rifle/ar11, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"tRT" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"tRY" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate{ - pixel_x = 7; - pixel_y = 3 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/landing_zone_2) -"tSO" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/south_street) -"tTe" = ( -/obj/machinery/prop/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"tTp" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"tTr" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/landing_zone_forecon/landing_zone_4) -"tTH" = ( -/obj/structure/barricade/wooden{ - dir = 8; - pixel_y = 12 - }, -/obj/structure/barricade/wooden{ - dir = 8; - pixel_y = 25 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"tUr" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"tUx" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/engineering/mineral, -/turf/open/floor/prison/plate, -/area/gelida/indoors/lone_buildings/storage_blocks) -"tUK" = ( -/obj/machinery/door/airlock/dropship_hatch/right/two, -/turf/open/shuttle/dropship/three, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"tUP" = ( -/obj/structure/cargo_container/wy{ - dir = 1 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"tUU" = ( -/obj/structure/rack/nometal, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"tVl" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/cargo) -"tVK" = ( -/obj/effect/spawner/random/weaponry/melee, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"tVR" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"tWd" = ( -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/bridges/corpo_fitness) -"tWj" = ( -/obj/machinery/vending/cola, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"tWk" = ( -/obj/structure/cargo_container/ch_red, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"tWB" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/item/shard, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"tWN" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/nw_rockies) -"tWP" = ( -/obj/machinery/floodlight/colony{ - pixel_y = 9 - }, -/obj/structure/platform{ - dir = 15 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/outdoors/colony_streets/south_street) -"tWR" = ( -/obj/structure/cargo_container/ch_red{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"tXa" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/mining) -"tXg" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"tXk" = ( -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"tXK" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"tXO" = ( -/obj/structure/stairs/corner_seamless, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"tXT" = ( -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/diamond, -/obj/item/ore/diamond, -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"tYd" = ( -/obj/effect/spawner/random/engineering/structure/tank/fuelweighted, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"tYp" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"tYB" = ( -/obj/structure/cargo_container, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"tYH" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bridge) -"tZa" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"tZb" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"tZi" = ( -/obj/machinery/door_control{ - dir = 4; - id = "West LZ Storage" - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"tZs" = ( -/turf/open/floor/plating{ - dir = 8 - }, -/area/gelida/indoors/a_block/kitchen) -"uaf" = ( -/obj/machinery/light, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"uak" = ( -/turf/closed/wall/r_wall, -/area/gelida/indoors/b_block/bridge) -"uaH" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cargo_container/ch_red, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"uaR" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/secureweighted, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/op_centre) -"uaZ" = ( -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/bridge) -"ubb" = ( -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves/garbledradio) -"ubE" = ( -/obj/machinery/light{ - dir = 1; - pixel_x = 16 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/bridge) -"ubR" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform, -/obj/machinery/door/poddoor/mainship{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/bridge) -"uce" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/ai_node, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"ucg" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/mining) -"uch" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"uco" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/obj/effect/turf_decal/warning_stripes/stripedsquare/tile/border, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/b_block/bridge) -"ucw" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"ucE" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"udk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"udG" = ( -/obj/structure/prop/vehicle/apc{ - dir = 4; - pixel_x = 10 - }, -/obj/structure/prop/vehicle/apc/decoration/frontturretone, -/obj/structure/prop/vehicle/apc/dualcannonone{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"udK" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/gelida/landing_zone_2) -"udO" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"uet" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/south_east_street) -"uew" = ( -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"ueD" = ( -/obj/machinery/vending/cola, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"ueJ" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"ueO" = ( -/turf/closed/shuttle/dropship2/finright{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"ueY" = ( -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "West LZ Storage"; - name = "Emergency Lockdown" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/lone_buildings/storage_blocks) -"ufl" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"uge" = ( -/obj/item/ammo_magazine/pistol/m1911{ - pixel_x = 9; - pixel_y = 12 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"ugj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"ugu" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/west_caves/garbledradio) -"ugE" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"ugJ" = ( -/turf/closed/wall/r_wall, -/area/gelida/indoors/a_block/corpo) -"ugM" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"ugN" = ( -/obj/structure/curtain, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"ugP" = ( -/obj/structure/table/mainship, -/obj/machinery/recharger{ - pixel_y = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"ugQ" = ( -/obj/structure/barricade/metal, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"uhs" = ( -/turf/closed/shuttle/dropship2/fins{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"uhx" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"uhI" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"uhV" = ( -/obj/structure/flora/ausbushes/leafybush{ - pixel_y = 5 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"uhW" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"uiF" = ( -/obj/effect/spawner/random/engineering/structure/powergenerator, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"uiI" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"ujh" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_street) -"ujy" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/blood{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"ujT" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"ujV" = ( -/turf/closed/shuttle/dropship2/cornersalt, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"ujY" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"uke" = ( -/obj/item/shard, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"uky" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"ukA" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"ukV" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"ulW" = ( -/obj/structure/prop/vehicle/truck/destructible{ - dir = 8 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"ulZ" = ( -/obj/structure/table/mainship, -/obj/item/toy/dice, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"uma" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"umk" = ( -/turf/closed/shuttle/dropship2/engineone{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"umo" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 9; - pixel_y = 15 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"umE" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/b_block/hydro) -"umG" = ( -/obj/structure/table/reinforced/prison, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"une" = ( -/obj/structure/closet/secure_closet/marshal, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"unu" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/south_street) -"unA" = ( -/turf/closed/wall, -/area/gelida/outdoors/colony_streets/north_east_street) -"unI" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 8 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/fitness) -"uod" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"uoP" = ( -/obj/effect/acid_hole, -/turf/closed/wall, -/area/gelida/indoors/a_block/corpo) -"uoS" = ( -/obj/structure/table/reinforced/prison, -/obj/effect/spawner/random/misc/paperbin{ - pixel_y = 8 - }, -/obj/item/tool/pen, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"uoU" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/grass, -/area/gelida/indoors/a_block/garden) -"upa" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/east_central_street) -"uph" = ( -/obj/machinery/light{ - dir = 1; - pixel_x = 16 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/bridge) -"upj" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorm_north) -"upm" = ( -/turf/closed/shuttle/dropship2/wallthree/alt, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"upp" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"upA" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/chips, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"upW" = ( -/turf/open/floor/prison, -/area/gelida/cavestructuretwo) -"urz" = ( -/obj/machinery/landinglight/lz1, -/turf/open/floor/prison, -/area/gelida/landing_zone_2) -"urM" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"usn" = ( -/obj/structure/prop/vehicle/truck/destructible{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/w_rockies) -"usH" = ( -/obj/machinery/smartfridge/seeds, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"usO" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"utz" = ( -/obj/structure/rack/nometal, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/lone_buildings/storage_blocks) -"utM" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_street) -"uug" = ( -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -4; - pixel_y = -8 - }, -/obj/item/reagent_containers/food/drinks/coffee/cafe_latte, -/turf/open/floor/prison, -/area/gelida/landing_zone_2) -"uuq" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"uus" = ( -/obj/machinery/optable, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"uuO" = ( -/obj/machinery/suit_storage_unit{ - pixel_x = -9 - }, -/obj/machinery/suit_storage_unit{ - pixel_x = 16 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"uvE" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"uvW" = ( -/obj/structure/flora/bush{ - pixel_y = 9 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/obj/structure/platform, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"uwf" = ( -/obj/machinery/light, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"uwy" = ( -/obj/machinery/vending/boozeomat, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"uxh" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/north_east_street) -"uxt" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"uxC" = ( -/turf/closed/shuttle/dropship2/window{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"uye" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"uyq" = ( -/obj/effect/spawner/random/engineering/structure/tank/waterweighted, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"uyD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"uyO" = ( -/obj/structure/inflatable/wall, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"uyY" = ( -/obj/effect/landmark/corpsespawner/miner/rig, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"uyZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"uzc" = ( -/obj/structure/inflatable/wall{ - dir = 8 - }, -/obj/item/ammo_magazine/rifle/ar11{ - current_rounds = 0 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"uzg" = ( -/obj/structure/girder/displaced, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"uzm" = ( -/obj/structure/table/mainship, -/obj/item/storage/belt/utility, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"uzH" = ( -/obj/structure/table/fancywoodentable, -/obj/item/trash/hotdog{ - pixel_x = -2; - pixel_y = -4 - }, -/obj/effect/spawner/random/engineering/radio/highspawn{ - pixel_x = -4; - pixel_y = 13 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"uAt" = ( -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"uAB" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"uAD" = ( -/obj/structure/cable, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/hydro) -"uAI" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"uAZ" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/pastries/cherrypie{ - pixel_y = 13 - }, -/obj/item/reagent_containers/food/snacks/sliceable/pastries/pumpkinpie, -/obj/machinery/door/window{ - dir = 2; - pixel_y = 6 - }, -/obj/machinery/door/window{ - dir = 1; - pixel_y = 18 - }, -/obj/structure/window{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/window{ - dir = 8; - pixel_y = 17 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/lone_buildings/chunk) -"uBs" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"uCf" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/dorms) -"uCp" = ( -/obj/machinery/light, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/b_block/bridge) -"uDa" = ( -/obj/structure/table/mainship, -/obj/structure/bed/chair{ - dir = 1; - pixel_y = 11 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"uDh" = ( -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"uDz" = ( -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"uDB" = ( -/obj/machinery/door/airlock/mainship/medical{ - dir = 2; - name = "Medical Airlock" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/medical) -"uDG" = ( -/obj/prop/hydroponics, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"uDM" = ( -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"uEh" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bridge) -"uEi" = ( -/obj/structure/table/reinforced/prison, -/obj/effect/spawner/random/engineering/toolbox, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"uEr" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"uEs" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/casino) -"uEy" = ( -/obj/machinery/door/airlock/mainship/security/glass{ - dir = 1; - name = "\improper Marshall Office"; - req_access = null - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/security) -"uFd" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/engineering/radio/highspawn{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/effect/spawner/random/engineering/radio/highspawn{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"uFt" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"uFu" = ( -/obj/effect/acid_hole{ - dir = 4 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/security) -"uFD" = ( -/turf/open/floor/prison/blue{ - dir = 4 - }, -/area/gelida/indoors/a_block/hallway) -"uFG" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = 4; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/snacks/sandwiches/grilled_cheese_sandwich{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"uFH" = ( -/obj/structure/table/mainship, -/obj/item/tank/emergency_oxygen/engi{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"uFK" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"uFM" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"uFZ" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 20 - }, -/obj/item/trash/cigbutt{ - pixel_x = -9; - pixel_y = -6 - }, -/obj/item/weapon/gun/pistol/holdout{ - pixel_y = 31 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/garage) -"uGn" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_street) -"uGF" = ( -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves) -"uGI" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_east_street) -"uGJ" = ( -/turf/open/floor/prison/darkpurple{ - dir = 1 - }, -/area/gelida/indoors/a_block/dorms) -"uGS" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_east_street) -"uHs" = ( -/turf/closed/shuttle/dropship2/engine_sidealt{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"uHA" = ( -/turf/closed/shuttle/dropship2/fins{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"uHE" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_east_street) -"uHR" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/freezer, -/area/gelida/indoors/a_block/dorms) -"uIh" = ( -/obj/structure/table/mainship, -/obj/item/flashlight/lamp, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"uIl" = ( -/obj/machinery/suit_storage_unit{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"uIz" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/powergen) -"uIC" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/closed/mineral/smooth/snowrock, -/area/gelida/outdoors/rock) -"uJf" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 1; - pixel_y = 5 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"uJj" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges) -"uJv" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"uJO" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"uJT" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/garden) -"uJV" = ( -/obj/structure/bed, -/obj/structure/bed{ - buckling_y = 13; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"uKb" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/b_block/bridge) -"uLo" = ( -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/rock) -"uLr" = ( -/obj/structure/stairs/seamless, -/obj/machinery/door/poddoor/shutters/mainship/open{ - dir = 1; - id = "UD6"; - name = "\improper Shutters" - }, -/turf/open/floor/plating, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"uLt" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/east_caves) -"uMq" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"uMu" = ( -/obj/structure/rack/nometal, -/obj/item/ore/uranium, -/obj/item/ore/uranium, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"uMx" = ( -/turf/closed/shuttle/dropship2/finleft, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"uMZ" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 8; - name = "\improper East Medical Access" - }, -/obj/effect/ai_node, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"uNc" = ( -/obj/structure/table/mainship, -/obj/item/tool/kitchen/tray{ - pixel_y = 3 - }, -/obj/item/reagent_containers/food/snacks/sliceable/pizzapasta/margherita{ - pixel_y = 2 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"uNo" = ( -/turf/open/floor/prison/blue{ - dir = 8 - }, -/area/gelida/indoors/a_block/hallway) -"uNy" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"uNC" = ( -/obj/machinery/door/airlock/mainship/generic, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/b_block/bar) -"uNK" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/corpo) -"uNW" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"uPa" = ( -/obj/item/tool/pickaxe/silver, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"uPb" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"uPi" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"uPm" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"uPv" = ( -/obj/item/trash/barcardine, -/turf/open/floor/prison/blue, -/area/gelida/indoors/a_block/hallway) -"uPN" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/corner_seamless, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"uQh" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1; - name = "\improper Canteen" - }, -/obj/effect/ai_node, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/kitchen) -"uQL" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"uQP" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/op_centre) -"uRd" = ( -/obj/item/explosive/grenade, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"uRo" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"uRt" = ( -/turf/closed/mineral/smooth/snowrock, -/area/gelida/outdoors/w_rockies) -"uRG" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"uRS" = ( -/turf/closed/shuttle/dropship2/fins{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"uRU" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"uSc" = ( -/obj/structure/table/reinforced/prison, -/obj/structure/window{ - dir = 4 - }, -/obj/structure/window{ - dir = 8 - }, -/obj/machinery/prop/computer/PC{ - desc = "A small desktop computer. Someone has switched to personal emails and disabled the inventory sort system."; - name = "inventory computer" - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"uSd" = ( -/obj/structure/inflatable/wall{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"uSj" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"uSU" = ( -/obj/structure/window/reinforced, -/obj/structure/showcase/six, -/obj/structure/platform, -/turf/open/floor/podhatch/floor, -/area/gelida/indoors/a_block/corpo) -"uTf" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"uTl" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/corpo) -"uTK" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/caves/west_caves/garbledradio) -"uUh" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/garage) -"uUl" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 8; - pixel_y = 7 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"uUm" = ( -/obj/structure/inflatable/wall{ - dir = 8 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"uUq" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"uUx" = ( -/obj/structure/table/fancywoodentable, -/obj/item/flashlight/lamp/green{ - pixel_y = 13 - }, -/obj/item/ashtray/bronze{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"uUB" = ( -/turf/closed/wall/r_wall{ - dir = 5 - }, -/area/gelida/outdoors/rock) -"uUF" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"uUN" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"uVa" = ( -/obj/structure/table/reinforced/prison, -/obj/item/tool/pen/blue, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"uVf" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/casino) -"uVj" = ( -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/casino) -"uVk" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"uVl" = ( -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/prison/blue, -/area/gelida/indoors/a_block/admin) -"uVp" = ( -/obj/structure/table/mainship{ - flipped = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"uVz" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_west_street) -"uWj" = ( -/obj/structure/rack/nometal, -/obj/machinery/light, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/lone_buildings/storage_blocks) -"uWr" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"uWx" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/blue{ - dir = 4 - }, -/area/gelida/indoors/a_block/admin) -"uWz" = ( -/obj/structure/stairs/corner_seamless, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"uWL" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"uXb" = ( -/turf/closed/shuttle/dropship2/engine_sidealt, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"uXf" = ( -/turf/open/floor/prison/cellstripe, -/area/gelida/cavestructuretwo) -"uXi" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"uXB" = ( -/obj/structure/cable, -/obj/machinery/landinglight/lz1{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"uXX" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"uYy" = ( -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/n_rockies) -"uYJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"uYM" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"uYN" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"uZl" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"uZz" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"uZC" = ( -/obj/structure/prop/vehicle/truck/destructible, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"uZK" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"uZP" = ( -/turf/open/floor/mainship/black/full, -/area/gelida/outdoors/colony_streets/north_east_street) -"vah" = ( -/obj/machinery/door_control{ - id = "Sec-North-Lockdown"; - pixel_x = -4; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"var" = ( -/obj/structure/table/mainship, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"vaA" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"vaE" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"vaM" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1; - name = "\improper Colony Kitchen" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/kitchen) -"vaN" = ( -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"vaR" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"vby" = ( -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"vbB" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreen{ - dir = 1 - }, -/area/gelida/indoors/a_block/medical) -"vbK" = ( -/obj/structure/table/mainship, -/obj/machinery/faxmachine{ - pixel_y = 5 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"vbN" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"vbU" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_street) -"vci" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"vcr" = ( -/obj/structure/stairs/corner_seamless, -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"vcW" = ( -/obj/item/shard, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"vdC" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_street) -"vdY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bridge) -"veR" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/darkpurple{ - dir = 8 - }, -/area/gelida/indoors/a_block/dorms) -"vfe" = ( -/obj/structure/coatrack{ - pixel_x = 11; - pixel_y = 3 - }, -/obj/item/clothing/suit/storage/snow_suit{ - pixel_x = 9; - pixel_y = 9 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"vfg" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen{ - dir = 5 - }, -/area/gelida/indoors/a_block/medical) -"vfh" = ( -/turf/open/floor/plating, -/area/gelida/indoors/a_block/dorms) -"vfk" = ( -/obj/structure/bed/chair/comfy, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"vfo" = ( -/obj/docking_port/stationary/crashmode, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/east_central_street) -"vfw" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/central_streets) -"vfA" = ( -/turf/closed/shuttle/dropship2/enginethree{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"vfK" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 9 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"vfP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"vge" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thick, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"vgZ" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"vhu" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_west_street) -"vhC" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/gelida/indoors/a_block/security) -"vhH" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9; - pixel_y = -2 - }, -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"vhT" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/metal, -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"vib" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison{ - dir = 9 - }, -/area/gelida/indoors/a_block/dorm_north) -"vid" = ( -/obj/effect/spawner/random/misc/folder/nooffset, -/obj/item/newspaper{ - pixel_x = 8; - pixel_y = -7 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"vih" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/food_or_drink/drink_alcohol_bottle, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"vin" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"viH" = ( -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"viL" = ( -/obj/machinery/atmospherics/components/unary/tank/oxygen, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"viU" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/stripesquare, -/area/gelida/outdoors/colony_streets/north_street) -"vjb" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_west_street) -"vjI" = ( -/obj/structure/stairs/corner_seamless, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"vjV" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/structure/prop/vehicle/truck/destructible{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"vke" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"vku" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/turf/open/floor/prison/darkpurple{ - dir = 1 - }, -/area/gelida/indoors/a_block/dorms) -"vky" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_street) -"vkT" = ( -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/cavestructuretwo) -"vlh" = ( -/obj/machinery/shower{ - dir = 1 - }, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/fitness) -"vlq" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/pistachios, -/obj/item/trash/kepler, -/obj/item/trash/chips, -/obj/item/trash/popcorn, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"vlA" = ( -/turf/closed/shuttle/dropship2/finright, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"vlZ" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/secureweighted, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_west_street) -"vmh" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"vmp" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"vnB" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 6 - }, -/obj/structure/cable, -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"vnD" = ( -/obj/machinery/landinglight/lz1{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_2) -"vnQ" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"vol" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"vox" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"voF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/stairs/seamless/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"voT" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/six{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"vpe" = ( -/obj/effect/ai_node, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"vpo" = ( -/turf/closed/shuttle/dropship2/corners, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"vpI" = ( -/turf/closed/wall, -/area/gelida/indoors/b_block/bar) -"vpS" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"vqd" = ( -/obj/machinery/door/airlock/mainship/security/glass{ - dir = 1; - name = "\improper Marshall Office Armory"; - req_access = null - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/security) -"vqi" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/closed/mineral/smooth/darkfrostwall, -/area/gelida/outdoors/rock) -"vqz" = ( -/obj/effect/spawner/random/engineering/structure/tank/waterweighted, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"vqA" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/w_rockies) -"vqV" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"vrt" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"vrJ" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"vrL" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/north_street) -"vsk" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/garden_bridge) -"vsp" = ( -/obj/machinery/vending/snack{ - pixel_y = 16 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"vst" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"vsB" = ( -/obj/machinery/vending/medical, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitegreen{ - dir = 8 - }, -/area/gelida/indoors/a_block/medical) -"vsD" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/hallway) -"vsV" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_east_street) -"vsX" = ( -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"vsY" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"vtc" = ( -/obj/structure/closet/bodybag, -/obj/effect/spawner/random/misc/structure/curtain/medical, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"vtl" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/pistachios, -/obj/item/trash/kepler, -/obj/item/trash/chips, -/obj/item/trash/popcorn, -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/obj/structure/platform_decoration, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"vtt" = ( -/obj/machinery/seed_extractor, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/hydro) -"vuo" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"vus" = ( -/obj/effect/ai_node, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"vuv" = ( -/obj/structure/table/mainship, -/obj/machinery/cic_maptable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"vuB" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/hydro) -"vuR" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"vvf" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"vvU" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 12; - pixel_y = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"vwm" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves) -"vws" = ( -/obj/structure/table/mainship, -/obj/item/flashlight/lamp{ - pixel_x = -12; - pixel_y = 12 - }, -/obj/item/toy/dice/d20, -/obj/item/toy/dice{ - pixel_x = 13; - pixel_y = 9 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"vwt" = ( -/obj/docking_port/stationary/crashmode, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"vwv" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/landing_zone_forecon/landing_zone_4) -"vwz" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"vwB" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_west_street) -"vwV" = ( -/obj/structure/prop/mainship/gelida/barrier, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"vwY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"vxg" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"vxj" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"vxs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"vxv" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/closed/mineral/smooth/snowrock, -/area/gelida/outdoors/rock) -"vxz" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"vxL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/mainship/gelida/rails, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"vxO" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/platform_decoration, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/c_block/cargo) -"vxP" = ( -/obj/structure/coatrack{ - pixel_x = -6; - pixel_y = 22 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = -6 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"vyd" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"vyw" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/blue{ - dir = 4 - }, -/area/gelida/indoors/a_block/hallway) -"vyH" = ( -/obj/structure/platform, -/turf/open/floor/prison/darkpurple, -/area/gelida/indoors/a_block/dorms) -"vyS" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"vzc" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"vzI" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"vAf" = ( -/turf/closed/shuttle/dropship2/finleft{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"vAn" = ( -/turf/closed/shuttle/dropship2/aisle, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"vAB" = ( -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/garage) -"vAZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"vBg" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"vBm" = ( -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/landing_zone_forecon/landing_zone_4) -"vBq" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/outdoors/colony_streets/south_east_street) -"vBx" = ( -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/east_caves) -"vBz" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"vBD" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"vBF" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"vCg" = ( -/obj/machinery/chem_dispenser/soda{ - pixel_x = 1; - pixel_y = 14 - }, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"vCi" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/obj/effect/turf_decal/warning_stripes/stripedsquare/tile/border, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/b_block/hydro) -"vCl" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - dir = 8 - }, -/area/gelida/indoors/a_block/kitchen) -"vCo" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/closed/mineral/smooth/snowrock, -/area/gelida/outdoors/rock) -"vCy" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = 7; - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"vCE" = ( -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"vCO" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"vCT" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"vCZ" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"vDp" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/central_streets) -"vDL" = ( -/obj/structure/closet/crate/miningcar, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"vDU" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/spawner/random/engineering/ore_box, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"vEz" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1; - name = "\improper Family Dormitories" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"vEE" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"vEM" = ( -/turf/open/floor/prison, -/area/gelida/landing_zone_forecon/landing_zone_4) -"vFk" = ( -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_east_street) -"vFl" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/powergen) -"vFn" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"vFu" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"vFF" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"vFU" = ( -/obj/machinery/floodlight/colony{ - pixel_y = 6 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"vGk" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"vGp" = ( -/obj/effect/spawner/random/machinery/disposal, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"vGB" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"vGR" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"vHC" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"vHE" = ( -/obj/structure/table/fancywoodentable, -/obj/item/radio/off{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"vIq" = ( -/obj/structure/prop/vehicle/crawler/destructible, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_street) -"vIE" = ( -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"vIT" = ( -/obj/prop/hydroponics, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/plating/platebotc, -/area/gelida/indoors/b_block/hydro) -"vJb" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"vJl" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall, -/area/gelida/indoors/b_block/bridge) -"vJx" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"vJy" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_street) -"vJD" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9 - }, -/area/gelida/indoors/a_block/dorm_north) -"vJR" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/corpo) -"vJT" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"vJV" = ( -/obj/effect/ai_node, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/casino) -"vJY" = ( -/obj/structure/closet/secure_closet/miner{ - pixel_x = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"vKe" = ( -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/fitness) -"vKl" = ( -/turf/closed/shuttle/dropship2/engineone, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"vLr" = ( -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"vLt" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/corpo) -"vLI" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"vLL" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/garden) -"vMn" = ( -/obj/structure/bed/stool{ - buckling_y = 14; - pixel_y = 14 - }, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"vMo" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/powergen) -"vMO" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"vNb" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"vNf" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 9 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_street) -"vNw" = ( -/obj/effect/spawner/random/misc/structure/girder/highspawn, -/turf/open/floor/prison/plate, -/area/gelida/indoors/lone_buildings/storage_blocks) -"vNz" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/bridges/corpo) -"vNA" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"vNT" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/landing_zone_2) -"vNW" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 6 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/outdoors/rock) -"vNY" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 8; - pixel_y = 1 - }, -/turf/open/floor/prison/blue{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"vOM" = ( -/turf/open/floor/prison/whitegreen/corner{ - dir = 1 - }, -/area/gelida/indoors/a_block/medical) -"vOU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"vPi" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"vPN" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"vPO" = ( -/turf/closed/wall, -/area/gelida/indoors/a_block/fitness) -"vQe" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/powergen) -"vQm" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"vQx" = ( -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/hydro) -"vQB" = ( -/turf/open/floor/prison/plate, -/area/gelida/indoors/b_block/bar) -"vQI" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"vQJ" = ( -/turf/open/floor/prison, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"vQP" = ( -/obj/item/shard, -/obj/structure/window_frame/colony, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/corpo) -"vRt" = ( -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/powergen) -"vSd" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"vSD" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 5 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"vSV" = ( -/obj/item/trash/kepler{ - pixel_y = 15 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"vTp" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"vTV" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"vUe" = ( -/obj/structure/flora/ausbushes/sunnybush{ - pixel_y = 13 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"vUk" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"vUo" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"vUI" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -9; - pixel_y = 11 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"vUJ" = ( -/obj/structure/stairs/corner_seamless{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"vUQ" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"vVd" = ( -/obj/structure/table/fancywoodentable, -/obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"vVg" = ( -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"vVm" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 2 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorm_north) -"vVO" = ( -/obj/structure/closet/crate, -/obj/item/clothing/under/colonist, -/obj/item/clothing/under/colonist, -/obj/item/clothing/under/colonist, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"vVY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges) -"vWf" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/east_central_street) -"vWC" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/fitness) -"vWS" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"vXc" = ( -/obj/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating, -/area/gelida/landing_zone_1) -"vXh" = ( -/obj/structure/inflatable/wall, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"vXW" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"vYg" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/op_centre) -"vYo" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/outdoors/colony_streets/north_west_street) -"vYQ" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_west_street) -"vZd" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"vZi" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"waf" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform, -/obj/structure/platform{ - dir = 1 - }, -/obj/machinery/door/poddoor/mainship{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/bridge) -"wah" = ( -/obj/structure/bed/chair/wood/normal, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"wai" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"war" = ( -/obj/structure/table/gamblingtable, -/obj/item/spacecash/c500{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/bottle/sake{ - pixel_x = 6; - pixel_y = 14 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"waE" = ( -/obj/structure/inflatable/wall, -/turf/open/shuttle/dropship/five, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"waV" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"wbj" = ( -/obj/item/weapon/gun/pistol/highpower{ - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"wbD" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"wbG" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/north_street) -"wbH" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/central_streets) -"wbM" = ( -/obj/item/ammo_magazine/rifle/ar11{ - current_rounds = 0; - pixel_x = 9; - pixel_y = 3 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"wbP" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"wcb" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_west_street) -"wcc" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"wcg" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/table/reinforced/prison, -/obj/effect/spawner/random/engineering/extinguisher/regularweighted, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"wcB" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"wcO" = ( -/obj/item/tool/crowbar, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 9 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"wdk" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"wdu" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_west_street) -"wdR" = ( -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"wec" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"wet" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/tile/dark2{ - dir = 8 - }, -/area/gelida/indoors/a_block/executive) -"weu" = ( -/obj/machinery/door_control{ - id = "UD6"; - name = "Cargo Shutter Control" - }, -/turf/closed/shuttle/dropship2/aisle{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"wev" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"wex" = ( -/obj/structure/barricade/wooden, -/obj/item/shard, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"weK" = ( -/turf/closed/shuttle/dropship2/interiormisc{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"weV" = ( -/obj/structure/cable, -/turf/open/floor/prison/plate, -/area/gelida/landing_zone_1) -"wfe" = ( -/obj/structure/prop/vehicle/truck/destructible, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"wfm" = ( -/obj/effect/spawner/random/decal/blood, -/obj/effect/spawner/random/medical/structure/rollerbed, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"wfV" = ( -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"wgZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"wha" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"whj" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/b_block/bridge) -"whv" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/powergen) -"whD" = ( -/obj/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating, -/area/gelida/landing_zone_2) -"whI" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"whO" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/landing_zone_forecon/landing_zone_4) -"wiC" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 8 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"wiG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"wiL" = ( -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"wjc" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"wjf" = ( -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"wji" = ( -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"wjs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1 - }, -/turf/open/floor/prison/blue{ - dir = 8 - }, -/area/gelida/indoors/a_block/admin) -"wjD" = ( -/turf/closed/shuttle/dropship2/enginefive, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"wjU" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"wko" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"wkB" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/fitness) -"wkK" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"wkN" = ( -/obj/machinery/shower{ - pixel_y = 16 - }, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/fitness) -"wkX" = ( -/obj/docking_port/stationary/crashmode, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"wkZ" = ( -/obj/structure/inflatable/wall, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"wlw" = ( -/obj/machinery/light, -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"wmi" = ( -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"wmO" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_street) -"wng" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"wnq" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"woj" = ( -/obj/structure/table/mainship, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - name = "synthethic potted plant"; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/prison/blue{ - dir = 9 - }, -/area/gelida/indoors/a_block/hallway) -"wok" = ( -/obj/structure/table/mainship, -/obj/machinery/prop/computer/PC{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/landing_zone_1) -"wol" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorm_north) -"wot" = ( -/obj/structure/bookcase{ - pixel_y = 16 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"woF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_west_street) -"woU" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"woY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/north_west_street) -"wpv" = ( -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/west_caves) -"wpx" = ( -/turf/closed/shuttle/dropship2/finleft{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"wpE" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/c_block/cargo) -"wpL" = ( -/obj/machinery/door/airlock/mainship/maint{ - dir = 1 - }, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/mainship/stripesquare, -/area/gelida/outdoors/w_rockies) -"wqy" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/shuttle/dropship2/cornersalt, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"wqF" = ( -/obj/structure/table/mainship, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bar) -"wqH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"wqK" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"wrb" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"wrm" = ( -/obj/effect/spawner/random/misc/structure/curtain, -/obj/structure/platform, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/garage) -"wrn" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/central_streets) -"wrz" = ( -/obj/item/pipe, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/mining) -"wrM" = ( -/obj/effect/decal/cleanable/blood, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/op_centre) -"wrR" = ( -/obj/machinery/optable{ - pixel_x = 16; - pixel_y = -6 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"wsa" = ( -/turf/closed/wall, -/area/gelida/indoors/a_block/executive) -"wsk" = ( -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"wsw" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"wsz" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9; - pixel_y = 25 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_street) -"wsH" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/engineering/powercell, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"wsJ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"wtk" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/bridge) -"wtt" = ( -/obj/machinery/light, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/bridges) -"wtu" = ( -/turf/open/shuttle/dropship/three, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"wtB" = ( -/obj/structure/closet/firecloset/full, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"wtG" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_street) -"wtI" = ( -/obj/structure/prop/mainship/gelida/powerccable, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/central_streets) -"wtN" = ( -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_west_street) -"wtT" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"wud" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"wug" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/landing_zone_4) -"wui" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/dorm_north) -"wuw" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/w_rockies) -"wuC" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/b_block/hydro) -"wuL" = ( -/obj/structure/table/mainship, -/obj/item/stack/sheet/cardboard, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"wuQ" = ( -/turf/closed/mineral/smooth/snowrock, -/area/gelida/outdoors/colony_streets/south_west_street) -"wvm" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/security/wooden_tv{ - dir = 8; - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/landing_zone_1) -"wvL" = ( -/obj/effect/ai_node, -/turf/open/floor/tile/dark2{ - dir = 4 - }, -/area/gelida/outdoors/rock) -"wvO" = ( -/obj/effect/spawner/random/food_or_drink/kitchenknife, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"wvP" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 11; - pixel_y = 25 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"wvV" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/hallway) -"wwL" = ( -/obj/structure/platform_decoration, -/turf/closed/mineral/smooth/snowrock, -/area/gelida/outdoors/rock) -"wxi" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"wxn" = ( -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = 9; - pixel_y = 12 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/north_east_street) -"wxt" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"wxV" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 1 - }, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"wyf" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_street) -"wyl" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"wyE" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_east_street) -"wyP" = ( -/obj/effect/spawner/random/decal/blood, -/obj/effect/spawner/random/medical/heal_pack/bruteweighted{ - pixel_x = -10; - pixel_y = 8 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"wzv" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"wzw" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"wAn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"wAs" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"wAt" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/corpo) -"wAP" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"wAS" = ( -/obj/item/shard, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"wAW" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"wBl" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"wBH" = ( -/obj/item/tool/wet_sign{ - pixel_x = -11; - pixel_y = 21 - }, -/obj/effect/decal/cleanable/vomit, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 21 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"wBW" = ( -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/indoors/a_block/dorm_north) -"wCg" = ( -/obj/item/stack/sandbags_empty/half, -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"wCy" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"wCN" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"wDv" = ( -/obj/effect/turf_decal/tile/full/black, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/abstract/tele_blocker, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/c_block/mining) -"wDw" = ( -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/landing_zone_2) -"wDE" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/landing_zone_2) -"wEk" = ( -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/bridge) -"wEA" = ( -/obj/effect/turf_decal/warning_stripes/nscenter, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"wES" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/obj/structure/bed/alien, -/obj/item/pipe{ - pixel_x = -6 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"wFM" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"wFV" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"wFW" = ( -/obj/item/toy/beach_ball/holoball, -/obj/effect/turf_decal/warning_stripes/nscenter, -/obj/effect/turf_decal/warning_stripes, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"wFX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"wGi" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"wGo" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - name = "\improper Colony Marshals" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/security) -"wGF" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"wGG" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"wGQ" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/east_central_street) -"wGR" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"wGX" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_street) -"wHB" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 6 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/landing_zone_2) -"wHJ" = ( -/obj/structure/platform_decoration, -/obj/structure/bed/roller, -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"wHY" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"wIa" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/obj/structure/platform, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"wId" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/corpo) -"wIs" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"wIz" = ( -/obj/structure/rack/nometal, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"wIS" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"wJs" = ( -/obj/structure/rack/nometal, -/obj/item/storage/bag/ore, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"wJx" = ( -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"wJU" = ( -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/nw_rockies) -"wKm" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/obj/machinery/door/poddoor/mainship{ - dir = 2; - id = "checkpoint3" - }, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"wKr" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/cargo) -"wKz" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_west_street) -"wKI" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"wLl" = ( -/obj/machinery/landinglight/lz1{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_2) -"wLx" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/item/clothing/under/suit_jacket, -/turf/open/floor/tile/dark2, -/area/gelida/indoors/c_block/mining) -"wLT" = ( -/obj/structure/rack/nometal, -/obj/item/tool/pickaxe/jackhammer, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"wLX" = ( -/obj/effect/spawner/random/medical/surgical, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"wMa" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"wMf" = ( -/obj/structure/table/fancywoodentable, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 12; - pixel_y = 17 - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"wMh" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/dorms_fitness) -"wMi" = ( -/obj/item/clipboard, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"wMj" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"wMn" = ( -/obj/structure/cargo_container/green, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_west_street) -"wMz" = ( -/obj/structure/table/gamblingtable, -/obj/item/toy/deck{ - pixel_x = 4; - pixel_y = 12 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"wNa" = ( -/obj/effect/acid_hole, -/turf/closed/wall, -/area/gelida/outdoors/colony_streets/central_streets) -"wNh" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_east_street) -"wNj" = ( -/obj/effect/spawner/random/engineering/wood, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"wNA" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/cargo) -"wOd" = ( -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"wOi" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/structure/prop/mainship/gelida/smallwire, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"wON" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/gelida/landing_zone_1) -"wOW" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 4 - }, -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -9; - pixel_y = 25 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/south_street) -"wPr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"wPx" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"wPD" = ( -/obj/structure/rack/nometal, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"wPI" = ( -/obj/structure/table/reinforced, -/obj/machinery/chem_dispenser/soda{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/lone_buildings/chunk) -"wPQ" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_street) -"wQe" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"wQo" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/hallway) -"wQH" = ( -/obj/item/ammo_magazine/rifle/ar11{ - current_rounds = 0 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"wQL" = ( -/turf/open/floor/prison/cellstripe{ - dir = 4 - }, -/area/gelida/indoors/lone_buildings/storage_blocks) -"wRq" = ( -/obj/item/paper{ - pixel_x = -4; - pixel_y = 21 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"wRA" = ( -/obj/structure/bed{ - pixel_y = 12 - }, -/obj/structure/bed{ - pixel_y = 25 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"wRY" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/b_block/bar) -"wSg" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/spawner/random/decal/blood, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"wSr" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/corpo) -"wSD" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/corpo) -"wSK" = ( -/obj/structure/stairs/seamless, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_west_street) -"wTr" = ( -/obj/effect/turf_decal/warning_stripes/stripedsquare/tile/border, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/b_block/bridge) -"wTv" = ( -/obj/structure/stairs/corner_seamless, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"wTw" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"wTB" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/secureweighted, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"wTN" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/gelida/landing_zone_2) -"wTO" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"wUu" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 9 - }, -/area/gelida/outdoors/colony_streets/south_west_street) -"wUJ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"wUK" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple/full, -/area/gelida/outdoors/colony_streets/north_west_street) -"wVl" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 5 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 10 - }, -/area/gelida/landing_zone_2) -"wVC" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/south_west_street) -"wVF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/mainship/gelida/railbumper{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"wVG" = ( -/obj/structure/table/reinforced/prison, -/obj/item/clothing/head/collectable/hardhat{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/garage) -"wWA" = ( -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"wWB" = ( -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"wXv" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"wXG" = ( -/obj/structure/table/mainship{ - flipped = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"wXM" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"wXW" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/east, -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"wXZ" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 6 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_east_street) -"wYJ" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_east_street) -"wZr" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue{ - pixel_y = -12 - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"wZs" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_2) -"wZC" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/turf/closed/wall, -/area/gelida/outdoors/colony_streets/north_west_street) -"wZK" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/east_central_street) -"xad" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/gelida/indoors/c_block/garage) -"xaf" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/food_or_drink/kitchenknife, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = 7 - }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8 - }, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"xaP" = ( -/turf/closed/shuttle/dropship2/finright{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"xaT" = ( -/obj/structure/rack/nometal, -/obj/effect/spawner/random/misc/earmuffs, -/obj/item/clothing/ears/earmuffs{ - item_state = "earmuffs2"; - pixel_y = -4 - }, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/north_east_street) -"xaV" = ( -/obj/effect/spawner/random/misc/structure/supplycrate{ - pixel_x = -8; - pixel_y = -8 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_west_street) -"xbv" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/nw_rockies) -"xbH" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"xbQ" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/mining) -"xbV" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/closed/mineral/smooth/snowrock, -/area/gelida/outdoors/rock) -"xcj" = ( -/turf/closed/wall, -/area/gelida/indoors/c_block/bridge) -"xcn" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/item/stool, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/chunk) -"xdj" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"xef" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"xeN" = ( -/obj/structure/rack/nometal, -/turf/open/floor/tile/dark2, -/area/gelida/indoors/c_block/mining) -"xeS" = ( -/obj/structure/table/fancywoodentable, -/obj/item/toy/deck{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/gelida/indoors/b_block/bar) -"xff" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/snacks/pastries/plaincakeslice{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/snacks/pastries/plaincakeslice, -/obj/machinery/light, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"xfT" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_y = 16 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"xgS" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_street) -"xhe" = ( -/obj/structure/table/fancywoodentable, -/obj/machinery/prop/computer/PC{ - dir = 4; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"xhE" = ( -/obj/item/tool/shovel/etool, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/b_block/bridge) -"xic" = ( -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/grass, -/area/gelida/indoors/a_block/garden) -"xie" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/central_streets) -"xiF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/south_east_street) -"xjr" = ( -/turf/closed/shuttle/dropship2/enginethree{ - dir = 8 - }, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"xjz" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/bridges/op_centre) -"xjB" = ( -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/west_caves/garbledradio) -"xjC" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/fitness) -"xkG" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/outdoors/colony_streets/north_west_street) -"xkN" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/a_block/bridges/op_centre) -"xle" = ( -/obj/effect/spawner/random/engineering/metal, -/obj/item/stack/rods, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"xlo" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/snacks/sandwiches/sandwich{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"xlK" = ( -/turf/open/floor/prison/blue{ - dir = 10 - }, -/area/gelida/indoors/a_block/admin) -"xlV" = ( -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"xmb" = ( -/obj/structure/rack/nometal, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"xmc" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"xmf" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"xmh" = ( -/obj/machinery/floodlight/colony{ - pixel_y = 16 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_street) -"xmk" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/central_streets) -"xmm" = ( -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/landing_zone_1) -"xmr" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"xmu" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"xmx" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/prison, -/area/gelida/indoors/lone_buildings/storage_blocks) -"xmG" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 23 - }, -/obj/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/mirror{ - pixel_x = -1; - pixel_y = 29 - }, -/turf/open/floor/tile/dark2{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/north_street) -"xnc" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/kitchen) -"xnx" = ( -/turf/closed/shuttle/dropship2/enginetwo, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"xnH" = ( -/obj/structure/girder/displaced, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"xnU" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/indoors/b_block/bridge) -"xod" = ( -/obj/structure/table/mainship, -/obj/item/clothing/head/collectable/tophat, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/cavestructuretwo) -"xow" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"xoV" = ( -/obj/structure/table/reinforced/prison, -/obj/machinery/prop/computer/PC{ - dir = 1 - }, -/obj/item/ashtray/bronze{ - pixel_y = 9 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"xpf" = ( -/obj/effect/spawner/random/medical/structure/ivdrip, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"xpA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"xpF" = ( -/obj/machinery/light, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"xpG" = ( -/turf/open/floor/plating, -/area/gelida/landing_zone_2) -"xpN" = ( -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"xqs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/hallway) -"xqv" = ( -/obj/item/tool/kitchen/utensil/pknife{ - pixel_x = -9 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"xqy" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/food_or_drink/donut{ - pixel_x = 4; - pixel_y = 3 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"xqB" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"xqS" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/turf/open/shuttle/dropship/floor, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"xqU" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"xrg" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bridge) -"xrA" = ( -/obj/item/wrapping_paper, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/north_street) -"xrD" = ( -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/landing_zone_1) -"xsf" = ( -/obj/item/stack/rods, -/obj/item/shard, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"xsN" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/wall, -/area/gelida/indoors/a_block/bridges) -"xsO" = ( -/obj/item/storage/belt/champion{ - anchored = 1; - pixel_y = 28 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"xtc" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 1 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"xts" = ( -/obj/machinery/light, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/hallway) -"xtt" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"xtD" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel, -/obj/item/ore/uranium, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"xtF" = ( -/obj/effect/spawner/random/engineering/metal, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"xtM" = ( -/obj/structure/cargo_container/red, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"xtY" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/heatinggrate, -/area/gelida/indoors/c_block/bridge) -"xtZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/spawner/random/engineering/metal, -/obj/structure/closet/crate, -/turf/open/floor/prison/cleanmarked, -/area/gelida/indoors/lone_buildings/storage_blocks) -"xuW" = ( -/obj/machinery/computer/intel_computer{ - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"xvh" = ( -/obj/structure/bed, -/obj/item/bedsheet/hos, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/executive) -"xvn" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/gelida/indoors/b_block/bar) -"xvz" = ( -/turf/closed/shuttle/dropship2/enginetwo, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"xvC" = ( -/turf/closed/wall, -/area/gelida/indoors/c_block/casino) -"xvD" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"xvL" = ( -/obj/machinery/door/poddoor/shutters/mainship/open{ - dir = 1; - id = "UD6"; - name = "\improper Shutters" - }, -/obj/structure/stairs/seamless, -/turf/open/floor/plating, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"xwk" = ( -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"xwq" = ( -/obj/structure/cargo_container{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"xwy" = ( -/obj/item/weapon/gun/revolver/cmb, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"xwV" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/machinery/door/poddoor/shutters/mainship{ - dir = 2; - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/security) -"xxb" = ( -/obj/docking_port/stationary/marine_dropship/lz1, -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/shuttle/drop1/gelida) -"xxQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_street) -"xxR" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"xyj" = ( -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/landing_zone_1) -"xyo" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/kitchen) -"xyN" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/stairs/seamless/platform, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"xyO" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/landing_zone_2) -"xyZ" = ( -/obj/item/lightstick/red/anchored, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/south_west_street) -"xzp" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/closed/wall, -/area/gelida/indoors/c_block/cargo) -"xzQ" = ( -/obj/machinery/light, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/bridge) -"xAe" = ( -/obj/structure/cargo_container/horizontal, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"xAf" = ( -/turf/open/floor/prison/darkpurple{ - dir = 6 - }, -/area/gelida/indoors/a_block/dorms) -"xAO" = ( -/obj/effect/spawner/random/misc/structure/curtain/medical, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/medical) -"xAT" = ( -/obj/machinery/landinglight/lz1{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"xBa" = ( -/obj/machinery/door_control{ - dir = 1; - id = "checkpoint3" - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"xBf" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/admin) -"xBF" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/corpo) -"xBG" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/op_centre) -"xBL" = ( -/obj/structure/table/mainship, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - name = "synthetic potted plant"; - pixel_y = 15 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"xBY" = ( -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/effect/spawner/random/engineering/structure/tank/fuelweighted, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"xCv" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/admin) -"xCF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"xCL" = ( -/obj/structure/bookcase, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"xCQ" = ( -/obj/structure/cargo_container{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"xCX" = ( -/obj/structure/flora/ausbushes/sunnybush{ - pixel_y = 10 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"xDv" = ( -/obj/structure/table/mainship, -/obj/item/stack/tile/plasteel{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/bottle/sake{ - pixel_x = 8; - pixel_y = 9 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"xDF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 1 - }, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"xDG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/machinery/suit_storage_unit{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"xDU" = ( -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 4 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"xDW" = ( -/obj/structure/nuke_disk_candidate, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"xEe" = ( -/obj/structure/cargo_container/ch_green{ - dir = 1; - pixel_y = 4 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"xEg" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/central_caves) -"xEr" = ( -/obj/structure/inflatable/wall, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"xEw" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/obj/effect/ai_node, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"xEF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/computer3/server/rack, -/turf/open/floor/podhatch/floor, -/area/gelida/indoors/c_block/mining) -"xEP" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"xEZ" = ( -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"xFw" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"xFA" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/garage) -"xFH" = ( -/obj/structure/cargo_container/horizontal{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"xFZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"xGa" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"xGD" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"xHf" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 6; - pixel_y = 18 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = -9; - pixel_y = 18 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"xHE" = ( -/obj/effect/ai_node, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"xHK" = ( -/obj/structure/table/reinforced/prison, -/obj/effect/spawner/random/medical/firstaid{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/effect/spawner/random/medical/firstaid, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"xHX" = ( -/turf/open/floor/prison/whitegreen, -/area/gelida/indoors/a_block/medical) -"xIg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitegreen{ - dir = 4 - }, -/area/gelida/indoors/a_block/medical) -"xIs" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/turf_decal/warning_stripes/stripedsquare/tile/border, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/b_block/hydro) -"xIt" = ( -/turf/closed/mineral/smooth/darkfrostwall, -/area/gelida/outdoors/rock) -"xIu" = ( -/obj/structure/rack/nometal, -/obj/item/frame/table{ - pixel_y = 15 - }, -/obj/item/frame/table{ - pixel_x = 10; - pixel_y = 11 - }, -/obj/item/frame/table{ - pixel_y = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"xIC" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"xIN" = ( -/obj/structure/table/mainship, -/obj/item/prop/dogtag{ - desc = "This dogtag seems stained with phoron and looks like it's been through a lot."; - name = "Nolan Basinger's dog tag" - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/a_block/admin) -"xIR" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/west, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"xJa" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/c_block/mining) -"xJp" = ( -/obj/structure/inflatable/wall{ - dir = 8 - }, -/obj/structure/inflatable/wall, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/admin) -"xJu" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/central_streets) -"xJv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"xJz" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/east_central_street) -"xJK" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_west_street) -"xJO" = ( -/obj/effect/spawner/random/machinery/disposal, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 5 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"xKz" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 8 - }, -/area/gelida/outdoors/colony_streets/north_west_street) -"xKA" = ( -/obj/structure/dropship_piece/two/engine/leftbottom, -/turf/closed/shuttle/dropship2/engineone{ - dir = 4 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"xKB" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/nw_rockies) -"xKH" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer2, -/area/gelida/outdoors/colony_streets/central_streets) -"xKI" = ( -/obj/machinery/door/airlock/mainship/generic{ - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"xKK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"xKP" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/n_rockies) -"xLa" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/coffee, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"xLb" = ( -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/kitchen, -/area/gelida/indoors/a_block/fitness) -"xLo" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"xLr" = ( -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"xLs" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/rack/nometal, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/garage) -"xLD" = ( -/obj/structure/cargo_container/ch_red{ - dir = 1 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"xLY" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/casino) -"xMf" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/b_block/hydro) -"xMw" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/bridge) -"xMA" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"xMV" = ( -/obj/machinery/floodlight/colony{ - pixel_y = 9 - }, -/obj/structure/platform{ - dir = 15 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/outdoors/colony_streets/east_central_street) -"xNl" = ( -/obj/structure/cargo_container, -/turf/open/floor/plating/platebot, -/area/gelida/indoors/c_block/cargo) -"xNI" = ( -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/garage) -"xNK" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 11; - pixel_y = 25 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_1) -"xNL" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/bridges/op_centre) -"xNN" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/corner_seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"xNQ" = ( -/obj/item/clothing/shoes/pmc{ - name = "steel toe boots" - }, -/obj/machinery/light, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/mining) -"xNX" = ( -/obj/structure/bed/chair/comfy, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"xOl" = ( -/obj/item/shard, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/outdoors/colony_streets/central_streets) -"xOn" = ( -/obj/structure/closet/crate, -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"xOE" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/landing_zone_2) -"xOJ" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"xOM" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/bridges/op_centre) -"xOP" = ( -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/dorms) -"xPd" = ( -/obj/structure/stairs/seamless, -/obj/machinery/door/poddoor/shutters/mainship/open{ - dir = 1; - id = "UD6"; - name = "\improper Shutters" - }, -/turf/open/floor/plating, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"xPh" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"xPk" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/central_streets) -"xPm" = ( -/obj/item/stool, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"xPn" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"xPU" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular, -/area/gelida/landing_zone_2) -"xPZ" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/colony_streets/windbreaker) -"xQy" = ( -/obj/item/ammo_magazine/rifle/ar11{ - current_rounds = 0 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/security) -"xQz" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/kitchen) -"xQD" = ( -/obj/item/ammo_magazine/rifle/ar11{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/kitchen) -"xQR" = ( -/obj/structure/prop/vehicle/crawler/destructible, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/north_street) -"xQT" = ( -/obj/structure/safe, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"xQU" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/c_block/cargo) -"xQV" = ( -/obj/structure/table/reinforced, -/obj/structure/prop/mainship/gelida/register, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/lone_buildings/chunk) -"xRc" = ( -/obj/machinery/space_heater, -/turf/open/floor/prison/darkpurple{ - dir = 1 - }, -/area/gelida/indoors/a_block/dorms) -"xRk" = ( -/obj/machinery/atmospherics/pipe/manifold/green/hidden{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"xRE" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"xRX" = ( -/obj/structure/ore_box{ - pixel_x = -4 - }, -/obj/structure/ore_box{ - pixel_x = -11; - pixel_y = 23 - }, -/turf/open/floor/prison/cleanmarked, -/area/gelida/landing_zone_1) -"xSR" = ( -/turf/open/floor/prison/whitegreen{ - dir = 4 - }, -/area/gelida/indoors/a_block/medical) -"xST" = ( -/obj/effect/ai_node, -/obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/lone_buildings/chunk) -"xTa" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/indoors/a_block/fitness) -"xTc" = ( -/obj/structure/window/framed/colony, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/bridges/corpo_fitness) -"xTh" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"xTr" = ( -/obj/structure/cargo_container/horizontal, -/obj/structure/platform{ - dir = 10 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/landing_zone_1) -"xTw" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/fitness) -"xTA" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"xTJ" = ( -/obj/structure/table/mainship, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - name = "synthethic potted plant"; - pixel_y = 14 - }, -/obj/machinery/door_control{ - id = "Sec-North-Lockdown"; - pixel_x = -4; - pixel_y = 2 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"xTR" = ( -/turf/closed/shuttle/dropship2/corners{ - dir = 1 - }, -/area/gelida/landing_zone_forecon/UD6_Typhoon) -"xUg" = ( -/obj/structure/prop/vehicle/crane/cranecargo/destructible, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_east_street) -"xUp" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 10 - }, -/area/gelida/outdoors/colony_streets/south_street) -"xUr" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/inflatable/door, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"xUw" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/mainship/black/full, -/area/gelida/outdoors/rock) -"xUF" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/closed/wall/r_wall, -/area/gelida/outdoors/rock) -"xUH" = ( -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorm_north) -"xUK" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/machinery/door/airlock/mainship/generic{ - dir = 1; - name = "\improper Mining Equipment" - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/c_block/mining) -"xVo" = ( -/obj/structure/flora/ausbushes/reedbush{ - pixel_y = 11 - }, -/obj/structure/prop/mainship/gelida/planterboxsoil{ - dir = 9 - }, -/turf/open/floor/prison/whitepurple/full{ - dir = 4 - }, -/area/gelida/indoors/a_block/dorms) -"xVy" = ( -/obj/effect/spawner/random/machinery/disposal, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/casino) -"xVE" = ( -/obj/machinery/bioprinter, -/turf/open/floor/prison/whitegreen/full, -/area/gelida/indoors/a_block/medical) -"xVO" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison/green/full{ - dir = 4 - }, -/area/gelida/indoors/b_block/hydro) -"xVV" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/stairs/corner_seamless{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/outdoors/colony_streets/north_east_street) -"xVZ" = ( -/obj/effect/decal/cleanable/blood, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/tile/yellow/patch, -/area/gelida/indoors/a_block/corpo) -"xWH" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/outdoors/colony_streets/south_west_street) -"xWJ" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"xWQ" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 10; - pixel_y = 21 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"xXi" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/ice, -/area/gelida/caves/west_caves) -"xXU" = ( -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -8; - pixel_y = 16 - }, -/turf/open/floor/prison/sterilewhite/full, -/area/gelida/indoors/a_block/medical) -"xYl" = ( -/turf/open/floor/plating, -/area/gelida/outdoors/colony_streets/south_east_street) -"xYx" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/fitness) -"xYQ" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"xYR" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/outdoors/w_rockies) -"xZn" = ( -/turf/closed/shuttle/dropship2/glasssix, -/area/gelida/landing_zone_forecon/UD6_Tornado) -"xZp" = ( -/obj/machinery/door/airlock/mainship/security/glass{ - dir = 8; - name = "\improper Marshall Head Office"; - req_access = null - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/turf/open/floor/mainship/stripesquare, -/area/gelida/indoors/a_block/security) -"xZs" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/mining) -"yae" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/landing_zone_1) -"yan" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/machinery/computer/intel_computer, -/turf/open/floor/tile/dark2{ - dir = 8 - }, -/area/gelida/indoors/a_block/executive) -"yaz" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple{ - dir = 1 - }, -/area/gelida/indoors/a_block/dorms) -"yaF" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 1 - }, -/area/gelida/outdoors/colony_streets/east_central_street) -"yaS" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bar) -"ybe" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/gelida/indoors/c_block/garage) -"ybl" = ( -/obj/effect/spawner/random/misc/structure/barrel, -/turf/open/floor/prison/plate, -/area/gelida/landing_zone_2) -"ybs" = ( -/obj/machinery/telecomms/relay/preset/telecomms, -/turf/closed/mineral/smooth/snowrock/indestructible, -/area/storage/testroom) -"ybx" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/machinery/vending/coffee{ - pixel_y = 20 - }, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"ybM" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bridge) -"ybV" = ( -/turf/open/floor/plating/ground/mars/random, -/area/gelida/indoors/b_block/bridge) -"ych" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/wood, -/area/gelida/indoors/a_block/fitness) -"yco" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"ycD" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/prison/darkred/full, -/area/gelida/outdoors/colony_streets/central_streets) -"ycN" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = -12 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 5 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"ycW" = ( -/obj/structure/stairs/corner_seamless, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/gelida/outdoors/colony_streets/north_east_street) -"ydl" = ( -/obj/effect/spawner/random/misc/structure/chair_or_metal/north, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"ydo" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/security) -"ydx" = ( -/obj/structure/prop/mainship/gelida/miner, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/south_east_street) -"ydC" = ( -/turf/open/floor/prison{ - dir = 4 - }, -/area/gelida/landing_zone_2) -"ydU" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) -"yev" = ( -/obj/structure/table/mainship, -/obj/item/tool/analyzer/plant_analyzer, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/hydro) -"yeY" = ( -/obj/structure/table/mainship, -/obj/item/trash/plate{ - pixel_y = 13 - }, -/obj/item/reagent_containers/food/snacks/sandwiches/toastedsandwich{ - pixel_y = 20 - }, -/turf/open/floor/prison/darkbrown/full, -/area/gelida/indoors/c_block/cargo) -"yfp" = ( -/turf/closed/wall, -/area/gelida/indoors/a_block/dorms) -"yfv" = ( -/obj/structure/prop/mainship/gelida/lightstick{ - pixel_x = 13; - pixel_y = 29 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_west_street) -"ygI" = ( -/obj/structure/prop/vehicle/crane/destructible{ - dir = 1 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/cargo) -"yhb" = ( -/obj/effect/ai_node, -/obj/machinery/landinglight/lz1{ - dir = 8 - }, -/turf/open/floor/prison, -/area/gelida/landing_zone_2) -"yhg" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/gelida/landing_zone_2) -"yhr" = ( -/obj/effect/spawner/random/machinery/microwave, -/obj/effect/spawner/random/engineering/wood, -/turf/open/floor/prison/plate, -/area/gelida/outdoors/colony_streets/north_street) -"yhX" = ( -/obj/structure/table/mainship, -/turf/open/floor/plating/plating_catwalk/prison, -/area/gelida/indoors/a_block/dorms) -"yib" = ( -/obj/effect/spawner/random/engineering/toolbox, -/obj/structure/table/mainship, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/north_east_street) -"yid" = ( -/obj/structure/prop/mainship/gelida/propserver, -/turf/open/floor/prison/darkred/full, -/area/gelida/indoors/a_block/security) -"yij" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 5 - }, -/area/gelida/outdoors/colony_streets/north_east_street) -"yiB" = ( -/turf/closed/wall, -/area/gelida/cavestructuretwo) -"yjx" = ( -/turf/open/floor/plating/ground/snow/layer1, -/area/gelida/caves/central_caves) -"yjB" = ( -/obj/item/stack/rods, -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/gelida/indoors/a_block/admin) -"yjN" = ( -/turf/open/floor/prison/plate, -/area/gelida/indoors/a_block/admin) -"yjU" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/spawner/random/machinery/disposal, -/obj/effect/spawner/random/medical/firstaid{ - pixel_x = 3; - pixel_y = 13 - }, -/turf/open/floor/prison/sterilewhite, -/area/gelida/indoors/a_block/corpo) -"yjV" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/snow/layer0, -/area/gelida/outdoors/colony_streets/central_streets) -"yke" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/b_block/bridge) -"yks" = ( -/obj/item/storage/secure/safe{ - pixel_y = 29 - }, -/obj/machinery/computer/intel_computer, -/turf/open/floor/wood, -/area/gelida/indoors/c_block/casino) -"ykH" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/admin) -"ykX" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 9 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/edge/regular{ - dir = 6 - }, -/area/gelida/landing_zone_2) -"ykZ" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_y = -5 - }, -/turf/open/floor/prison, -/area/gelida/indoors/c_block/garage) -"yly" = ( -/obj/structure/table/mainship, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/random/misc/paperbin{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/tool/pen/red{ - pixel_x = -6 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/gelida/indoors/c_block/mining) -"ylG" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/carpet, -/area/gelida/indoors/a_block/executive) -"ylS" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/gelida/indoors/a_block/dorms) - -(1,1,1) = {" -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -"} -(2,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -nsK -nsK -qbZ -qbZ -qbZ -nsK -nsK -nsK -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(3,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -nsK -nsK -qbZ -ybs -qbZ -nsK -nsK -nsK -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -vxv -xUF -oME -oME -oME -xUF -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rhH -nsK -"} -(4,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -nsK -nsK -qbZ -qbZ -qbZ -nsK -nsK -nsK -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -vxv -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -lsi -fBJ -fBJ -fBJ -xUF -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rNG -nsK -"} -(5,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -yiB -yiB -xIt -xIt -yiB -yiB -yiB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -vxv -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nnR -lsi -lsi -lsi -lsi -nGy -oox -rIi -lsi -lsi -lsi -lsi -lsi -lsi -lsi -rIi -lsi -fBJ -fBJ -fBJ -xUF -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -fsz -fsz -lIC -wOd -wOd -wOd -lIC -wOd -wOd -wOd -lIC -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -pJP -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -lIC -wOd -wOd -rIi -rIi -rIi -rIi -rkg -nsK -"} -(6,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -yiB -dII -ewI -geP -gBm -gZL -yiB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -vxv -rIi -bYd -bYd -bYd -fBJ -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -gFo -cUw -cUw -oNa -cUw -gFo -oox -bkP -fjn -gse -gse -gse -gse -gse -lsi -lsi -lsi -fBJ -fBJ -fBJ -xUF -lsi -lsi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -hbX -wOd -lIC -wOd -wOd -wOd -tWk -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -tFU -cZL -lpZ -tmu -bbO -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -rIi -rIi -rIi -rIi -uRt -nsK -"} -(7,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -yiB -cDx -dKf -cIy -gim -geP -aPS -gZL -yiB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -mYS -mYS -mYS -mYS -mYS -wuw -ddP -rIi -ddP -oTB -fBJ -ddP -bYd -bYd -bYd -bYd -fBJ -fBJ -fBJ -oTB -fBJ -fBJ -fBJ -rIi -rIi -rIi -rIi -gFo -vNW -spC -cUp -spC -pTB -fjn -dHe -uLo -uLo -rOI -wvL -rOI -rOI -pdJ -nOL -pdJ -gnX -dBl -gnX -wpL -gnX -gvL -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -eHG -wOd -wOd -wOd -wOd -wOd -ove -wOd -wOd -npE -wOd -wOd -wOd -wOd -wOd -tFU -qrg -lpZ -pHY -gve -pHY -lpZ -fyu -bbO -wOd -wOd -wOd -npE -wOd -wOd -wOd -wOd -wOd -wOd -wOd -rIi -rIi -rIi -rIi -nsK -"} -(8,1,1) = {" -cgS -xIt -xIt -xIt -xIt -yiB -yiB -cDx -dOA -dQm -mSM -iUh -bgd -hRV -yiB -yiB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -wJU -wJU -xIt -xIt -xIt -xIt -xIt -uew -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -mYS -pzg -pzg -pzg -mYS -vxv -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -ddP -ddP -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -rIi -rIi -rIi -gFo -aZV -aZV -aZV -aZV -aZV -uLo -uLo -uLo -uLo -uLo -rOI -rOI -rOI -lsi -lsi -lsi -fBJ -fBJ -fBJ -xUF -lsi -lsi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -wOd -wOd -lIC -fsz -fsz -wOd -tWR -wDw -npE -npE -npE -npE -wOd -tFU -cZL -lpZ -pHY -fPw -wud -gve -epc -epc -pHY -lpZ -tmu -bbO -wOd -wOd -npE -npE -wOd -wOd -wOd -wOd -wOd -wOd -rIi -rIi -rIi -nsK -"} -(9,1,1) = {" -cgS -xIt -xIt -xIt -wpv -bem -iUh -aBZ -dQm -upW -upW -mSM -bic -geP -iUh -sUt -jBU -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -wJU -wJU -agw -xIt -xIt -xIt -xIt -uew -uew -uew -uew -uew -uew -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -mYS -pzg -pzg -pzg -aZV -rfv -uLo -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -ddP -ddP -rIi -rIi -rIi -gFo -aZV -aZV -iUX -aZV -aZV -uLo -uLo -uLo -ncu -ncu -wvL -rOI -ncu -lsi -rIi -lsi -fBJ -fBJ -fBJ -xUF -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -wOd -wOd -wOd -fsz -hbX -npE -wDw -npE -npE -wOd -wOd -wOd -tFU -cZL -pHY -gve -gve -gve -gve -mkD -abc -euf -gve -gve -pHY -tmu -bbO -wOd -wOd -wOd -npE -wOd -wOd -wOd -wOd -wOd -rIi -rIi -rIi -nsK -"} -(10,1,1) = {" -cgS -xIt -xIt -wpv -wpv -bjn -iUh -cPM -upW -upW -pAK -upW -sZZ -uXf -iUh -sUt -jBU -jBU -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -bOD -wJU -wJU -xKB -uew -uew -uew -xEr -xUr -wkZ -wjD -pLC -xvz -qFN -uew -uew -uew -uew -uew -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -mYS -pzg -pzg -pzg -aZV -riC -uLo -uLo -uLo -fBJ -fBJ -fBJ -vqA -fBJ -fBJ -rIi -rIi -fBJ -fBJ -ddP -ddP -ddP -ddP -ddP -ddP -rIi -rIi -gFo -aZV -aZV -xUw -aZV -aZV -uLo -nAJ -lsi -lsi -ssQ -rOI -rOI -inq -lsi -rIi -lsi -fBJ -fBJ -fBJ -xUF -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -ngP -ngP -ngP -wOd -vNT -npE -npE -wOd -wOd -wOd -tFU -cZL -lpZ -pHY -jQE -gve -wud -wud -wZs -gve -abc -tUP -vTV -gve -abc -pHY -lpZ -tmu -bbO -wOd -wOd -lIC -npE -wOd -wOd -lIC -rIi -rIi -rIi -nsK -"} -(11,1,1) = {" -cgS -xIt -xIt -wpv -wpv -bjn -geP -cPM -cZX -mSM -upW -glN -upW -sZZ -iUh -jua -jBU -jBU -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -wJU -wJU -wJU -wJU -wJU -uew -bPy -iQQ -kgz -uew -uew -ncQ -kUg -pJc -abp -wjD -pLC -xvz -qFN -jFo -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -mYS -pzg -pzg -pzg -aZV -srs -sUT -ddP -bYd -ddP -ddP -bYd -fBJ -fBJ -rIi -rIi -ddP -ddP -ddP -ddP -bYd -bYd -ddP -bYd -ddP -rIi -rIi -gFo -aZV -aZV -aZV -aZV -gFo -fbf -rVn -rIi -lsi -qfl -lKi -qKv -inq -lsi -rIi -lsi -fBJ -fBJ -fBJ -xUF -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -ngP -hbX -plT -plT -gXV -wOd -lIC -tFU -cZL -lpZ -pHY -jQE -fPw -fPw -gve -wZs -wZs -fPw -gve -abc -jmn -fJJ -gve -abc -bwJ -bwJ -pHY -lpZ -tmu -bbO -wOd -wOd -npE -wOd -wOd -wOd -rIi -rIi -nsK -"} -(12,1,1) = {" -cgS -xIt -xIt -wpv -wpv -bjn -iUh -cPM -bFN -aPS -ezB -cDx -upW -uXf -iUh -sUt -dOs -jBU -dOs -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -cJC -xIt -xIt -xIt -wJU -wJU -wJU -wJU -wJU -wJU -iXG -vAf -cXL -uMx -epj -epj -jpV -hFv -gHC -fsX -ncQ -kUg -pJc -abp -oqu -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -mYS -pzg -pzg -nFn -mYS -vxv -bYd -bYd -bYd -gNQ -ddP -ddP -ddP -xYR -ddP -ddP -bYd -bYd -ddP -gNQ -ddP -ddP -ddP -bYd -ddP -rIi -rIi -uUB -lsi -lsi -lsi -lsi -bVK -rIi -rIi -rIi -lsi -lsi -lsi -lsi -lsi -lsi -lsi -lsi -fBJ -fBJ -fBJ -xUF -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -ngP -eHG -npE -wDw -npE -wOd -tFU -cZL -dTA -fvt -fvt -fvt -fvt -fvt -fvt -fvt -fvt -fvt -fvt -fvt -fvt -fvt -fvt -fvt -fvt -fvt -fvt -fvt -dTA -tmu -bbO -wOd -wOd -npE -wOd -wOd -rIi -rIi -nsK -"} -(13,1,1) = {" -cgS -xIt -wpv -wpv -wpv -yiB -yiB -cQe -upW -ezB -ezB -cDx -upW -hVN -yiB -yiB -wpv -wpv -wpv -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xjB -xjB -cJC -rfq -cJC -wJU -wJU -wJU -wJU -wJU -ptG -lWc -hky -hjt -aba -lYx -eva -uUF -uUF -uUF -wqy -jpV -hFv -gHC -qqv -niX -xIt -xIt -xIt -xIt -xIt -uew -xIt -xIt -xIt -uew -xIt -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -mYS -mYS -mYS -mYS -mYS -vxv -rIi -rIi -ddP -ddP -fBJ -fBJ -ddP -bYd -bYd -ddP -ddP -ddP -ddP -ddP -bYd -rIi -ddP -ddP -ddP -ddP -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -lsi -fBJ -fBJ -fBJ -xUF -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -ngP -ngP -ngP -wDw -npE -npE -wOd -qrg -oTb -xpG -whD -xpG -xpG -xpG -alr -alr -alr -xpG -xpG -whD -xpG -xpG -alr -alr -alr -alr -alr -xpG -whD -xpG -nBT -fyu -wOd -wOd -npE -wOd -wOd -rIi -rIi -nsK -"} -(14,1,1) = {" -cgS -xIt -xIt -wpv -wpv -bjn -iUh -cPM -upW -eEw -aPS -sZZ -pdh -uXf -iUh -sUt -jBU -wpv -wpv -wpv -wpv -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -cJC -rfq -uTK -tWN -bkL -mHx -vpo -xZn -irL -guf -dDm -rHi -lQO -kMv -lQO -lQO -gxK -ijV -dqj -lYx -lYx -xPd -fJd -uew -xIt -xIt -xIt -xIt -uew -uew -uew -uew -uew -uew -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -vxv -rIi -ddP -ddP -fBJ -fBJ -fBJ -fBJ -ddP -ddP -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -rIi -rIi -ddP -fBJ -fBJ -fBJ -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -lsi -fBJ -fBJ -fBJ -xUF -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -ngP -aIf -wDw -wDw -npE -xmu -pHY -urz -xpG -xpG -xpG -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -xpG -xpG -alr -wLl -pHY -bPK -wOd -npE -wOd -wOd -rIi -rIi -nsK -"} -(15,1,1) = {" -cgS -xIt -xIt -wpv -wpv -bem -iUh -sZZ -upW -eOl -gqh -mSM -upW -sZZ -iUh -sUt -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -mPF -xjB -xjB -xjB -xjB -mPF -xjB -xjB -xjB -rfq -qHK -cJC -wJU -wJU -dzU -uxC -xqS -khy -bMA -eva -lYx -vAn -weu -lwz -lYx -waE -lvQ -lQO -hAU -lQO -xPd -uew -uew -uew -xIt -xIt -uew -uew -eue -uew -uew -uew -eue -tzc -tzc -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -vxv -ddP -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -pKS -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -bYd -bYd -fBJ -fBJ -fBJ -fBJ -lsi -lsi -lsi -lsi -lsi -lsi -lsi -lsi -fBJ -fBJ -fBJ -xUF -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -ngP -tAx -npE -npE -wOd -iUl -pHY -urz -xpG -xpG -xpG -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -xpG -alr -wLl -pHY -geE -wOd -wDw -wDw -wOd -rIi -rIi -nsK -"} -(16,1,1) = {" -cgS -xIt -wpv -wpv -wpv -bjn -sZZ -cPM -cZX -upW -upW -glN -upW -bnc -geP -sUt -jBU -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -cJC -rfq -rfq -tWN -wJU -dsZ -qex -tMH -lWc -nhK -rkS -bay -kMv -hAU -lQO -lQO -hze -ijV -nHb -lYx -lYx -xPd -oda -uew -iiB -uew -uew -uew -tzc -eue -tzc -uew -mXU -tzc -tzc -tzc -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -vxv -rIi -rIi -ddP -ddP -pKS -pKS -gVv -vaN -vaN -vaN -vaN -vaN -pKS -oTB -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -oTB -fBJ -fBJ -bYd -fBJ -fBJ -fBJ -oTB -fBJ -fBJ -fBJ -fBJ -fBJ -oTB -fBJ -fBJ -fBJ -fBJ -oTB -fBJ -xUF -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -tqi -rIi -ngP -ngP -ngP -npE -wOd -wOd -iUl -pHY -urz -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -wLl -pHY -geE -wOd -wDw -npE -wOd -rIi -rIi -nsK -"} -(17,1,1) = {" -cgS -xIt -xIt -wpv -wpv -bjn -iUh -iUh -upW -cZX -sZZ -upW -mSM -geP -iUh -sUt -gbt -wpv -wpv -wpv -wpv -wpv -fyL -wpv -wpv -wpv -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xIt -xIt -cJC -rfq -rfq -cJC -otX -tWN -wJU -wJU -cJI -irL -jkC -qrZ -pFQ -twW -twW -ssM -ssM -ssM -pjR -upm -dJv -qwV -iOv -jDz -uew -uew -eue -uew -tzc -tzc -tzc -tzc -nPk -tzc -eue -uew -tzc -iee -sir -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -lhb -lhb -lhb -lhb -lhb -lhb -lhb -gGi -gGi -gmB -gmB -gGi -gGi -lhb -lhb -fBJ -pKS -fBJ -fBJ -pKS -fBJ -fBJ -pKS -fBJ -fBJ -pKS -fBJ -fBJ -pKS -fBJ -fBJ -fBJ -qol -azN -fBJ -fBJ -fBJ -dYl -fBJ -fBJ -fBJ -usn -xUF -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -tqi -tqi -rIi -rIi -ngP -npE -wOd -wOd -lIC -iUl -pHY -urz -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -xpG -xpG -wLl -pHY -geE -wOd -wDw -npE -wOd -rIi -rIi -nsK -"} -(18,1,1) = {" -cgS -xIt -xIt -wpv -xIt -yiB -yiB -aPS -iUh -vkT -aWS -vkT -iUh -aPS -yiB -yiB -xIt -jBU -dOs -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xjB -xjB -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tWN -wJU -wJU -wJU -ake -upm -lXf -oiM -tUK -tUK -upm -dJv -qwV -eqv -asu -xjr -leP -ogJ -uRS -tzc -tzc -tzc -tzc -tzc -tzc -uew -nPk -nPk -uew -uew -tzc -tzc -iee -sir -dHh -diU -diU -pKS -diU -mZC -pKS -diU -rCD -pKS -pCC -iGX -xJK -woF -iGX -iGX -tnJ -gmh -pKS -rxw -uew -uew -eRY -tzc -pKS -uew -vQm -bYC -bYC -bYC -bYC -bYC -bYC -bYC -bYC -bYC -bYC -bYC -bYC -bYC -bYC -bYC -bYC -bYC -bYC -hoS -pKS -vaN -vaN -vaN -vaN -vaN -vaN -vaN -lhb -lhb -lhb -lhb -lhb -lhb -lhb -lhb -lhb -lhb -lhb -lhb -lhb -lhb -lhb -fBJ -fBJ -fBJ -fBJ -fBJ -fBJ -oTB -fBJ -dYl -fBJ -fBJ -fBJ -fBJ -xUF -rIi -rIi -rIi -rIi -rIi -rIi -rIi -tqi -tqi -tqi -rIi -rIi -ngP -wOd -wOd -lIC -wOd -iUl -pHY -exV -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -kKk -alr -alr -nNL -alr -alr -alr -alr -alr -xpG -xpG -lnU -pHY -geE -wOd -wDw -qwh -wOd -rIi -rIi -nsK -"} -(19,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -yiB -cQx -dUu -iUh -iUh -iUh -hgq -hRV -yiB -xIt -xIt -jBU -wpv -dOs -wpv -wpv -wpv -wpv -dOs -wpv -wpv -wpv -wpv -wpv -wpv -wpv -xjB -mPF -xjB -xjB -xjB -xjB -xjB -mPF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -otX -tWN -wJU -wJU -uew -iYK -xaP -mxs -uew -uew -asu -xjr -leP -ogJ -ncQ -vfA -sJA -pKQ -uHA -uew -tzc -eue -tzc -tzc -uew -uew -nPk -uew -uew -uew -tzc -tzc -cEt -sir -meu -igL -igL -nGK -uMq -nGK -xkG -cgx -ajh -woY -auK -eue -btm -kaN -tzc -eue -eue -dSF -tzc -rLo -uew -uew -aQU -uew -uew -uew -vQm -bYC -xtZ -rpT -rpT -tdm -rpT -rpT -kjB -xmx -rpT -uaH -rpT -sgS -oqj -sgS -tUx -xtZ -bYC -hoS -vaN -vaN -vSd -vaN -vaN -vaN -vaN -vSd -vaN -vaN -rIi -rIi -rIi -rIi -rIi -qRh -rIi -rIi -sQn -rIi -rIi -rIi -xUF -xPZ -sOU -xUF -xUF -xUF -xUF -xUF -xUF -xUF -xUF -xUF -xUF -xUF -xUF -rIi -rIi -rIi -rIi -rIi -rIi -rIi -tqi -tqi -tqF -rIi -ngP -ngP -ngP -wOd -wOd -wOd -iUl -pHY -urz -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -xpG -xpG -wLl -pHY -geE -wOd -npE -npE -wOd -rIi -rIi -nsK -"} -(20,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -yiB -yiB -yiB -eRD -grj -gLz -yiB -yiB -yiB -xIt -xIt -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -xjB -xjB -ugu -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xbv -tWN -wJU -wJU -uew -uew -uew -uew -iiB -uew -ncQ -vfA -sJA -pKQ -uew -uew -iiB -uew -uew -uew -iiB -uew -eue -tzc -uew -uew -uew -uew -uew -uew -tzc -tzc -meu -sir -meu -igL -igL -esl -hZK -fHE -vYo -igL -gRg -scv -tzc -eue -btm -rLo -eue -eue -eue -sWa -iiB -tzc -vDL -tYB -uew -uew -uew -uew -vQm -bYC -ann -rpT -rpT -vwz -rpT -rpT -ann -fdW -rpT -bbF -sgS -rpT -jWo -tUx -tUx -iUc -bYC -uhx -bZn -bZn -tMh -nZn -bZn -bZn -bZn -bZn -gmI -vaN -vaN -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nNF -tqF -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -tqi -tqi -tqi -tqi -tqF -wuQ -rhC -ngP -ngP -wOd -wOd -wOd -iUl -pHY -urz -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -wLl -pHY -geE -wOd -npE -npE -wOd -rIi -rIi -nsK -"} -(21,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -yiB -lmN -lUi -sWh -gsb -sWh -hsw -kuB -yiB -xIt -xIt -wpv -wpv -wpv -xXi -xXi -xXi -xXi -xXi -xXi -xXi -xXi -xXi -wpv -wpv -xjB -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -otX -tWN -tWN -tzc -tzc -tzc -uew -uew -bPS -tzc -tzc -bPS -rIi -rIi -rIi -tzc -uew -uew -uew -uew -iiB -uew -uew -uew -uew -uew -uew -iiB -uew -uew -tzc -meu -sir -meu -igL -odq -nGK -nGK -nGK -vGB -nGK -gRg -scv -eue -tzc -btm -jMM -eue -tzc -tzc -qRu -uew -uew -tzc -pOx -uew -uew -uew -gwI -pCd -bYC -xmc -rpT -rpT -vwz -qEI -rpT -ann -rpT -rpT -fTz -sgS -rpT -hGR -rpT -rpT -mtI -bYC -uhx -jBv -rzM -rzM -rzM -rzM -rzM -rzM -uhx -tRT -vaN -gzT -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -tqF -tqF -tqF -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -tqi -tqi -tqF -qOV -wuQ -rhC -ngP -ngP -wOd -wOd -wOd -iUl -pHY -urz -xpG -xpG -xpG -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -xpG -alr -wLl -pHY -geE -wOd -npE -npE -wOd -wOd -rIi -nsK -"} -(22,1,1) = {" -cgS -xIt -xIt -yiB -yiB -yiB -xod -cZX -upW -cZX -mSM -upW -upW -fTM -yiB -yiB -xIt -wpv -wpv -wpv -xXi -wpv -wpv -wpv -wpv -wpv -wpv -wpv -xXi -wpv -wpv -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -otX -otX -tWN -xIt -xIt -eue -tzc -eue -tzc -tzc -eue -eue -mXU -rIi -tzc -tzc -uew -xIt -xIt -uew -uew -uew -uew -nPk -uew -uew -uew -uew -uew -tzc -tzc -cEt -sir -meu -nGK -vox -nGK -iMx -xkG -mDh -igL -gRg -scv -eue -tzc -btm -jMM -iGX -iGX -tpP -kJl -qqJ -qqJ -qqJ -iGX -iGX -suT -tzc -vQm -bYC -bYC -jAU -rpT -rpT -ann -qEI -rpT -ann -rpT -rpT -ann -rpT -rpT -bie -rpT -rpT -ann -bYC -bYC -mtV -cIx -mSD -mSD -mSD -mSD -omN -cZq -ind -vaN -gGG -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -tqi -tqF -tqF -tqi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -tqi -tqF -nNF -tqi -wuQ -ngP -wOd -wOd -lIC -wOd -gNd -pHY -urz -xpG -xpG -xpG -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -alr -xpG -xpG -alr -wLl -pHY -fix -wOd -npE -wDw -wOd -wOd -rIi -nsK -"} -(23,1,1) = {" -cgS -xIt -yiB -yiB -aHZ -sWh -upW -upW -mSM -fwg -upW -sZZ -upW -upW -sWh -yiB -xIt -wpv -wpv -wpv -xXi -wpv -wpv -wpv -wpv -wpv -wpv -wpv -xXi -wpv -wpv -wpv -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tWN -tWN -xIt -xIt -xIt -tzc -tzc -tzc -xIt -xIt -xIt -eue -tzc -oWT -tzc -uew -uew -uew -xIt -uew -uew -uew -nPk -nPk -uew -uew -uew -uew -tzc -tzc -eue -iee -sir -meu -wMn -qSH -nGK -rPq -mkF -igL -igL -gRg -scv -bPS -eue -btm -kAF -tzc -uew -uew -uew -uew -uew -uew -uew -eue -dsy -tzc -vQm -ueY -rpT -qei -wjf -wjf -mXx -wjf -wjf -mXx -wjf -wAs -mXx -wjf -wjf -mXx -wjf -wjf -mXx -sVj -ueY -hHY -bQE -nhz -nhz -ewj -gJP -sXy -cZq -hoS -vaN -gHV -vaN -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -tqi -tqF -qOV -tqi -tqi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -tqi -tqi -tqi -tqi -tqF -tqF -wuQ -wuQ -ngP -wOd -wOd -wOd -wOd -wOd -nND -oTb -xpG -whD -xpG -xpG -xpG -alr -alr -alr -xpG -xpG -whD -xpG -xpG -alr -alr -alr -alr -alr -xpG -whD -xpG -nBT -xOJ -wOd -wOd -wDw -wOd -wOd -rIi -rIi -nsK -"} -(24,1,1) = {" -cgS -xIt -yiB -aeZ -aNR -bqw -bXz -daN -upW -eSL -aZE -aNR -bqw -bXz -sWh -yiB -yiB -jBU -wpv -wpv -xXi -wpv -wpv -wpv -wpv -wpv -wpv -wpv -xXi -wpv -wpv -wpv -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tWN -otX -xIt -xIt -xIt -tzc -tzc -eue -xIt -xIt -xIt -xIt -tzc -uew -uew -uew -uew -uew -uew -uew -uew -uew -xMA -nPk -nPk -uew -uew -uew -tzc -tzc -eue -iee -sir -vFn -cUg -qhZ -rra -qhZ -bmM -qhZ -qhZ -tym -scv -eue -tzc -btm -xwq -uew -uew -uew -lzg -iiB -uew -uew -uew -iiB -dTs -qqJ -mcP -ahh -oYz -rhQ -jOH -hkH -hkH -hkH -hkH -hkH -lVp -wjf -wjf -iVJ -wjf -wjf -wjf -wjf -wjf -wjf -ueY -hoS -bQE -ewj -ewj -ewj -nGB -sXy -cZq -hoS -vaN -vaN -cCQ -kcN -kcN -kcN -kcN -kcN -kcN -kcN -rIi -rIi -kgY -tqi -tqF -qOV -tqF -tqi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -tqi -tqi -tqi -tqi -rIi -qOV -tqi -wuQ -rhC -ngP -ngP -wOd -wOd -mFF -wOd -sMv -nSH -xAT -vnD -vnD -vnD -vnD -vnD -vnD -vnD -vnD -vnD -yhb -vnD -vnD -vnD -vnD -vnD -vnD -vnD -vnD -vnD -xAT -nMP -xwk -wOd -npE -wDw -wOd -wOd -rIi -rIi -nsK -"} -(25,1,1) = {" -cgS -xIt -xIt -sWh -cZX -upW -cfG -upW -upW -eWM -mSM -upW -hsH -upW -upW -sWh -riq -gbt -wpv -dOs -xXi -wpv -wpv -wpv -wpv -wpv -dOs -wpv -xXi -wpv -wpv -wpv -xjB -mPF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xIt -tWN -otX -tWN -tWN -xIt -tzc -tzc -eue -tzc -tzc -xIt -xIt -eue -tzc -uew -uew -uew -uew -lkH -uew -uew -uew -uew -uew -uew -nPk -uew -uew -esd -uew -tzc -eue -mbE -sir -uXX -uXX -uXX -uXX -uXX -ugM -uXX -uXX -uXX -muE -tzc -uew -wZC -gVy -uew -uew -uew -lsR -uew -uew -uew -uew -uew -vaE -uew -vQm -ueY -wjf -wjf -wjf -wjf -wjf -wjf -wjf -dGU -nWR -wjf -wjf -wjf -wjf -gXb -wjf -wjf -daK -wjf -ueY -hoS -bQE -ewj -ewj -wrn -wrn -sXy -cZq -uhx -bZn -bZn -bZn -gLF -bZn -bZn -bZn -aZg -bZn -rqw -iqP -qHr -qHr -ixM -tqF -tqF -tqF -tqi -tqi -tqi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -rIi -tqi -tqi -tqi -tqi -tqi -tqi -rIi -rIi -tqi -tqi -tqi -npE -ngP -npE -wOd -wOd -mJV -wOd -wOd -sMv -nSH -mAu -pHY -wIz -jTN -uDG -gve -jQE -abc -jQE -gve -nXw -nXw -epc -gve -qLL -wIz -wIz -pHY -mAu -nMP -xwk -wOd -wOd -npE -wDw -npE -wOd -rIi -rIi -nsK -"} -(26,1,1) = {" -cgS -xIt -xIt -sWh -apA -bAh -sZZ -sZZ -eez -eZB -sZZ -sZZ -bAh -awQ -sWh -sWh -bXk -jBU -wpv -wpv -xXi -wpv -wpv -wpv -wpv -wpv -wpv -wpv -xXi -wpv -wpv -xjB -xjB -xjB -xjB -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -cJC -tWN -otX -otX -tWN -eue -uew -eue -tzc -uew -uew -eue -tzc -tzc -uew -uew -uew -uew -uew -uew -uew -uew -uew -uew -uew -uew -uew -uew -uew -uew -tzc -tzc -eue -bDp -bDp -bDp -fSp -fSp -fSp -nLA -vCO -fSp -fSp -fSp -fSp -fSp -hMn -hMn -hMn -fSp -fSp -fSp -fSp -fSp -fSp -fSp -fSp -nLA -vCO -nLA -vQm -ueY -rpT -sAt -wQL -wQL -wQL -wQL -wQL -wjf -nWR -wjf -kbp -wjf -wQL -nGT -wQL -eOu -nHQ -rpT -ueY -hoS -bQE -ewj -ewj -wrn -wrn -sXy -cZq -gzF -uhx -uhx -uhx -gMH -uhx -hdI -uhx -uhx -uhx -rqw -jyY -jyY -jph -crF -tqi -tqF -tqF -tqF -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -qOV -tqF -tqi -tqi -tqi -nAJ -wDw -npE -npE -wOd -mPk -wOd -wOd -wOd -wOd -sMv -nSH -mAu -pHY -uDG -iCS -jQE -fPw -jQE -gve -nXw -nXw -epc -gve -wIz -pHY -mAu -nMP -xwk -wOd -wOd -wOd -wOd -npE -wDw -wDw -rIi -rIi -rIi -nsK -"} -(27,1,1) = {" -cgS -xIt -xIt -sZZ -upW -upW -upW -dgr -upW -fwg -bFN -sZZ -upW -bFN -upW -sWh -riq -wpv -wpv -wpv -xXi -wpv -wpv -wpv -wpv -wpv -wpv -wpv -xXi -wpv -wpv -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -mPF -xjB -xjB -xjB -xjB -tWN -otX -tWN -oHr -oVs -uew -uew -uew -uew -gTw -qqJ -qqJ -qqJ -qqJ -qqJ -qqJ -qqJ -qqJ -qqJ -qqJ -qqJ -qqJ -qqJ -qqJ -qqJ -qqJ -qqJ -iCr -uew -tzc -tzc -eue -sIj -eue -eue -eue -eue -eue -eue -dsy -eue -eue -tzc -uew -tzc -tzc -hMn -uew -uew -rlW -rBW -uew -uew -uew -uew -uew -uew -vaE -uew -dBv -bYC -bYC -bYC -bhj -ann -jMn -ann -qnF -rpT -nWR -wjf -wjf -rpT -ann -jMn -ann -eAs -bYC -bYC -bYC -isF -qLz -qQf -qQf -aLW -qQf -wcO -cZq -uhx -rzM -ker -rzM -hdY -rzM -rzM -rzM -ker -qxa -rqw -jOV -kdQ -kdQ -crF -tqi -mMH -tqi -tqF -tqF -tqF -tqF -tqi -tqi -tqi -tqi -tqi -tqi -mMH -tqi -tqi -tqi -tqi -tqF -wKz -tqF -tqi -tqi -mMH -tqi -tqF -npE -npE -wHB -wDE -itw -itw -itw -wVl -lIC -wOd -wOd -sMv -nSH -pHY -gve -gve -gve -gve -gve -gve -gve -gve -gve -pHY -nMP -xwk -wOd -wOd -wOd -wOd -wOd -wOd -npE -wDw -wDw -rIi -rIi -rIi -nsK -"} -(28,1,1) = {" -cgS -xIt -yiB -atX -axk -bLc -bXz -sZZ -upW -fCu -gum -aNR -bqw -bXz -sWh -yiB -yiB -gbt -jBU -wpv -xXi -xXi -xXi -xXi -xXi -xXi -xXi -xXi -xXi -wpv -wpv -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -cJC -wpv -tWN -otX -tWN -eue -lFj -lFj -dBM -uew -vaE -uew -uew -lkH -uew -uew -aZC -lFj -lFj -fAj -uew -uew -uew -uew -uew -aZC -wOi -uew -kJl -iCr -uew -tzc -tzc -lFC -rxw -eue -eue -eue -eue -eue -sWa -tzc -tzc -tzc -uew -uew -tzc -wKm -uew -uew -uew -uew -uew -uew -esd -uew -uew -uew -kJl -qqJ -cSE -sir -bYC -bYC -bYC -bYC -bYC -bYC -bYC -jbA -njY -jbA -jbA -jbA -bYC -bYC -bYC -bYC -bYC -bYC -uhx -uhx -bZn -bZn -bZn -bZn -nZn -bZn -hdI -hoS -vaN -vaN -vaN -kcN -fjX -fjX -nUy -fjX -nUy -kcN -rIi -rIi -kgY -kUd -mMH -tqi -dqv -nAi -pEA -qOV -tqF -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -qOV -tqF -tqi -tqi -tqi -tqi -tqF -wDw -npE -npE -lBm -pHY -pHY -pHY -dcx -xPU -wOd -lIC -wOd -wOd -sMv -nSH -mAu -pHY -aOj -qLL -gve -epc -epc -pHY -mAu -nMP -xwk -wOd -wOd -wOd -wOd -wOd -wOd -npE -npE -wDw -wOd -rIi -rIi -rIi -nsK -"} -(29,1,1) = {" -cgS -xIt -yiB -yiB -sWh -bNN -sZZ -upW -upW -eWM -sZZ -upW -upW -upW -sWh -yiB -jBU -jBU -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -cJC -tWN -tWN -xIt -xIt -eue -tzc -uew -uew -uew -vuR -uew -uew -uew -iiB -uew -uew -iiB -uew -uew -uew -xMA -iiB -uew -uew -uew -uew -lFj -fAj -kJl -iCr -uew -tzc -jNL -aJl -eue -eue -eue -tzc -tzc -sWa -uew -tzc -uew -uew -uew -tzc -wKm -uew -uew -uew -eue -tzc -tzc -czt -czt -czt -uew -uew -uew -vaE -crx -uXX -bDb -rzM -xDU -rzM -cbj -fyp -rzM -gjf -rzM -rzM -rzM -fyp -tZi -qkB -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -fda -vaN -vaN -rIi -kcN -kcN -kcN -kcN -kcN -kcN -kcN -rIi -rIi -rIi -kUd -tqi -tqi -wcb -cek -wVC -tqF -tqF -tqF -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -qOV -tqi -tqi -tqi -tqi -tqF -npE -wDw -npE -lBm -mnD -laV -aiO -dxi -xPU -wOd -wOd -wOd -wOd -wOd -wOd -sMv -nND -mAu -pHY -pHY -pHY -mAu -xOJ -xwk -wOd -wOd -lIC -wOd -wOd -wOd -wOd -wOd -npE -npE -wDw -lIC -rIi -rIi -rIi -nsK -"} -(30,1,1) = {" -cgS -xIt -xIt -yiB -sWh -cLZ -kuB -dkT -awQ -sWh -awQ -awQ -dkT -kuB -yiB -yiB -xIt -wpv -wpv -wpv -wpv -gkk -wpv -fyL -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -mPF -xjB -xjB -xjB -xjB -mPF -xjB -xjB -cJC -xIt -xIt -xIt -xIt -xIt -bPS -tzc -uew -uew -iiB -vaE -uew -uew -uew -lMz -uzc -gwA -uew -tzc -vaR -uew -rIi -rIi -iiB -uew -uew -uew -uew -hca -iiB -kJl -qqJ -iGX -iGX -sqi -woF -woF -tnJ -oHb -iGX -xRk -qqJ -qqJ -qqJ -qqJ -quG -qqJ -fVp -qqJ -qqJ -woF -iGX -woF -aFc -qqJ -qqJ -qqJ -tiJ -qqJ -qqJ -fEN -dCP -iQY -egJ -xPn -xPn -xPn -mFA -xPn -wFM -rWF -hsu -gVv -gVv -gVv -gVv -qkB -gVv -gVv -gVv -gVv -vaN -vaN -dXQ -vaN -vaN -vaN -vaN -vaN -iFR -vaN -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -kUd -tqi -tqi -qRn -oUg -pfk -tqF -qOV -tqF -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -wDw -wDw -npE -lBm -mUd -mUd -aiO -pHY -xPU -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -iUl -oTs -ydC -rll -geE -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -npE -npE -npE -npE -npE -wOd -rIi -rIi -rIi -nsK -"} -(31,1,1) = {" -cgS -xIt -xIt -xIt -yiB -dhv -yiB -yiB -yiB -yiB -yiB -yiB -yiB -yiB -yiB -xIt -xIt -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -wpv -xIt -xIt -wpv -wpv -xjB -mPF -xjB -xjB -xjB -mPF -xjB -xjB -xjB -mPF -xjB -xjB -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzc -eue -tzc -uew -uew -vaE -uew -uew -uew -uew -eZV -uew -lZZ -aAs -tzc -uew -uew -rIi -rIi -lkH -uew -rIi -rIi -uew -uew -uew -uew -uew -tzc -tzc -eue -tzc -vjb -aRh -uew -uew -uew -uew -uew -uew -vaE -tzc -wKm -tzc -uew -kIz -vjb -lFj -lFj -hca -uew -gwI -sSY -sSY -sSY -aRy -sSY -sSY -bDb -bZn -sqm -dNR -dNR -vaN -vaN -vSd -hdZ -oHp -efm -uRU -csn -sAE -csn -eUv -ftO -ftO -myA -myA -myA -myA -flJ -vaN -vaN -vaN -vaN -vaN -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -kUd -tqi -tqi -tqi -tqi -tqi -tqF -qOV -qOV -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -tqF -wDw -npE -npE -lBm -laV -ybl -aTD -pHY -qcd -wOd -wOd -wOd -wOd -npE -npE -wOd -wOd -uWz -ryq -ryq -ryq -gPQ -wOd -wOd -wOd -wOd -npE -npE -wOd -wDw -wDw -npE -wOd -npE -npE -wOd -rIi -rIi -rIi -nsK -"} -(32,1,1) = {" -cgS -xIt -xIt -jBU -wpv -njJ -jBU -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -wpv -dOs -wpv -wpv -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -wpv -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzc -tzc -tzc -eue -eue -tzc -uew -vaE -esd -uew -uew -uew -lkH -tzc -eue -udG -oWT -tzc -tzv -tzc -uew -hca -rIi -rIi -rIi -rIi -xMA -uew -uew -uew -fWz -bxF -oyO -tzc -uew -vaE -lFj -lFj -fAj -uew -uew -uew -sWa -tzc -wKm -tzc -uew -uew -uew -uew -tzc -tzc -gwI -pCd -yfp -yfp -yfp -qBP -ffD -yfp -yfp -yfp -jsc -sqm -vaN -vaN -vaN -vaN -iIp -vaN -vaN -kab -gVv -qkB -gHP -gHP -gVv -vaN -vaN -vaN -vaN -vaN -rnb -shp -vaN -vaN -vaN -vaN -vaN -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -kUd -tqi -tqi -tqi -tqi -tqF -qOV -tqF -qOV -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -wDw -wDw -npE -lBm -pHY -pHY -pHY -pHY -sMC -wOd -wOd -wOd -npE -wDw -wDw -npE -npE -npE -wOd -wOd -wOd -wOd -wOd -wOd -wOd -npE -wDw -wDw -wDw -wDw -npE -wOd -wOd -wDw -npE -wOd -rIi -rIi -rIi -nsK -"} -(33,1,1) = {" -cgS -xIt -xIt -jBU -jBU -njJ -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -wpv -wpv -wpv -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xjB -ugu -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzc -tzc -eue -tzc -eue -eue -tzc -uew -vaE -uew -uew -uew -eue -aAs -tzc -uew -uew -saG -wbM -cTL -tzc -tzc -rIi -rIi -rIi -rIi -rIi -uew -uew -uew -uew -uew -tzc -tzc -cCZ -uew -vaE -esd -uew -uew -uew -uew -vin -dsy -eue -wKm -eue -tzc -tzc -tzc -tzc -eue -tzc -vQm -yfp -fVe -nma -hAt -dcN -nId -vUe -nRP -fVe -yfp -bim -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -gVv -qkB -gVv -gVv -vaN -niz -edD -edD -iIp -acc -rnb -vaN -vaN -vaN -niz -edD -edD -kab -gVv -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -kUd -tqi -tqi -tqi -tqF -tqF -tqF -nAJ -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -npE -npE -npE -cDU -nfY -nfY -nfY -nfY -ykX -wOd -lIC -wOd -npE -wDw -npE -gXV -wDw -wDw -npE -qwh -npE -npE -wOd -wOd -npE -wDw -gXV -wDw -wDw -npE -lIC -wOd -wOd -wOd -wOd -wOd -rIi -rIi -rIi -nsK -"} -(34,1,1) = {" -cgS -xIt -xIt -wpv -arf -njJ -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -wpv -wpv -wpv -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -dao -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzc -eue -eue -eue -eue -tzc -tzc -uew -hby -uew -uew -tzc -kWr -tzc -uew -uew -uew -wQH -gwA -xEr -tzc -rIi -rIi -rIi -rIi -rIi -rIi -uew -uew -uew -tzc -pKS -pKS -pKS -ewE -uew -vaE -uew -uew -uew -gwI -sSY -kcw -jXE -pfs -wKm -scR -tzc -eue -eue -eue -tzc -tzc -vQm -yfp -abN -ylS -vIE -qjO -ylS -rum -vIE -gyo -yfp -xOl -dNR -vaN -vaN -vaN -vaN -tix -bZn -oZr -bZn -mmH -bZn -sqm -gVv -gVv -vaN -vaN -vaN -vaN -gtj -vaN -vaN -vaN -vaN -vSd -vaN -vaN -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -kUd -mMH -tqi -tqF -qOV -tqF -nAJ -nAJ -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -npE -npE -wDw -npE -wOd -wOd -wOd -wOd -wOd -npE -npE -npE -npE -wOd -npE -npE -wDw -wDw -npE -npE -npE -wDw -npE -npE -wDw -wDw -wDw -wDw -npE -npE -wOd -wOd -wOd -wOd -npE -rIi -rIi -rIi -rIi -nsK -"} -(35,1,1) = {" -cgS -xIt -xIt -wpv -wpv -fEZ -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -wpv -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzc -tzc -eue -eue -eue -eue -tzc -uew -uew -vaE -pKS -khJ -kUD -pKS -eZV -uew -uew -uew -kPH -pKS -uew -rIi -pKS -rIi -rIi -pKS -rIi -uew -pKS -uew -uew -pKS -pKS -pKS -uew -uew -uew -vaE -uew -uew -gwI -sir -yfp -yfp -rAj -yfp -yfp -sir -scR -tzc -tzc -tzc -tzc -tzc -vQm -uxt -fXy -mQd -xmr -qjO -vIE -xmr -vIE -xlV -fcp -hoS -aXd -oPt -vaN -vSd -tix -bkX -yfp -yfp -oAr -yfp -yfp -uhx -sqm -gHP -gVv -vaN -vaN -vaN -rnb -vaN -vaN -vaN -vaN -vaN -vaN -gVv -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -kUd -tqi -tqi -tqF -qOV -qOV -nAJ -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -tqF -pwy -tqi -tqi -npE -ngP -npE -wOd -wOd -wOd -wOd -wOd -wOd -wOd -npE -npE -wOd -wOd -wOd -csz -csz -lOq -lOq -syd -syd -syd -lOq -lOq -lOq -lOq -syd -syd -csz -xOE -lOW -xNN -npE -npE -npE -rIi -rIi -rIi -rIi -nsK -"} -(36,1,1) = {" -cgS -xIt -wpv -wpv -wpv -eFS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzc -eue -eue -eue -eue -tzc -uew -uew -vaE -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -pKS -uew -uew -uew -uew -vaE -uew -gwI -sir -yfp -yfp -fZv -vaA -fZv -yfp -yfp -kPU -sSY -sSY -sSY -sSY -sSY -vwB -uxt -cpg -rum -vIE -qjO -vIE -vIE -vIE -vPN -eOG -gqE -bZn -bZn -bZn -bZn -aSG -yfp -yfp -qGg -ttA -qIQ -yfp -yfp -bkX -sqm -gVv -gVv -gVv -vaN -rnb -vaN -vaN -vaN -vaN -vaN -gVv -rIi -rIi -rIi -vpI -rIi -vpI -rIi -vpI -rIi -rIi -rIi -kUd -tqi -tqi -tqF -kNj -qOV -qOV -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -nNF -tqF -tqF -tqF -tqi -rIi -ngP -ngP -ngP -oas -hdk -bdo -hdk -oas -wOd -wOd -wOd -wOd -wOd -wOd -wOd -csz -wOd -wOd -npE -wDw -npE -npE -npE -npE -wDw -npE -wOd -tFU -udK -oas -eGw -oas -all -psP -rIi -rIi -rIi -rIi -rIi -nsK -"} -(37,1,1) = {" -cgS -xIt -wpv -wpv -dOs -fEZ -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzc -eue -eue -eue -tzc -uew -uew -vaE -pKS -eue -tzc -pKS -tzc -eue -pKS -eue -eue -pKS -eue -tzc -pKS -eue -eue -pKS -tzc -tzc -pKS -uew -uew -pKS -uew -uew -uew -uew -uew -vaE -gwI -pCd -yfp -yfp -cTh -xlV -uFt -xlV -iTh -yfp -yfp -oAr -oAr -uCf -oAr -oAr -yfp -yfp -dAg -xlV -chk -vUk -jjD -lMo -bfK -pWW -yfp -yfp -oAr -oAr -oAr -oAr -yfp -yfp -xPh -tkC -gpd -gyo -gyo -yfp -yfp -uhx -sqm -gHP -gVv -gVv -xJu -gVv -vaN -vaN -vaN -gVv -gHP -tix -bkX -vpI -vpI -vpI -vpI -vpI -vpI -vpI -rIi -rIi -kUd -tqi -tqi -tqF -qOV -qOV -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -qOV -tqF -tqF -tqi -rIi -rIi -rIi -oas -oas -vxP -pHY -uaf -oas -oas -gHe -wOd -wOd -wOd -wOd -wOd -csz -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -npE -npE -wOd -udK -oas -yhg -axf -kig -oas -sNT -rIi -rIi -rIi -rIi -rIi -nsK -"} -(38,1,1) = {" -cgS -xIt -wpv -wpv -wpv -fEZ -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -dOs -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -mPF -xjB -xjB -xjB -xjB -mPF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzc -tzc -eue -eue -tzc -uew -uew -vaE -tzc -tzc -tzc -tzc -tzc -eue -eue -eue -eue -eue -tzc -eue -eue -eue -eue -eue -eue -tzc -tzc -tzc -uew -uew -uew -uew -uew -uew -yfv -vaE -vQm -yfp -yfp -wot -pEB -vIE -uhI -ylS -kQr -yfp -jRe -qGg -rgr -qIQ -gyo -gyo -vyS -yfp -yfp -yfp -yfp -pAx -dOS -yfp -yfp -yfp -yfp -dbf -xlV -qGg -ueD -iOR -pYe -yfp -atZ -wgZ -vIE -jPy -sWl -hrB -yfp -yfp -hoS -wFV -gHP -gVv -aeE -gVv -gVv -vaN -vaN -gHP -tix -uhx -vpI -vpI -skv -kJz -lXx -ouI -cNE -vpI -vpI -pZH -gdv -tqi -tqi -tqi -tqF -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -dqv -nAi -sWt -tqi -tqi -tqi -tqF -qOV -qOV -qOV -qOV -rIi -rIi -rIi -rIi -oas -mgY -uug -gve -pHY -pHY -hdk -wOd -wOd -wOd -wOd -wOd -wOd -csz -wOd -wOd -wOd -wOd -pgs -eVj -oSf -wOd -npE -wOd -wOd -sCG -nTN -pHY -qOE -aUn -uFd -oas -rIi -rIi -rIi -rIi -rIi -nsK -"} -(39,1,1) = {" -cgS -xIt -xIt -wpv -wpv -fEZ -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzc -tzc -tzc -tzc -uew -uew -vaE -tzc -tzc -eue -eue -eue -eue -eue -eue -eue -eue -eue -eue -eue -eue -eue -eue -eue -eue -tzc -tzc -tzc -iiB -uew -uew -uew -uew -kTF -vaE -skK -yfp -wot -xlV -vIE -ssD -oLA -vIE -pEB -uxt -hrB -uhI -vIE -vIE -vIE -vIE -xlV -xlV -uxt -etw -aoZ -qjO -ylS -hRI -xlV -uxt -fhm -gyo -vIE -tNZ -vIE -vIE -xlV -uxt -hkO -uhI -xmr -vIE -mQd -vIE -stq -yfp -wQe -gHP -vaN -gHP -aeE -gHP -gHP -gVv -gVv -gHP -cZq -vpI -vpI -lkF -kKK -kKK -kKK -kKK -kKK -nnb -vpI -vpI -gdv -tqi -tqi -tqi -tqi -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -wcb -cek -sJg -tqi -tqi -tqi -tqF -tqF -qOV -qOV -qOV -rIi -rIi -rIi -rIi -oas -tRY -gve -nct -gve -pHY -mqM -wOd -wOd -lIC -wOd -wOd -wOd -qlC -wOd -wOd -wOd -wOd -vEE -wOd -mKv -wOd -npE -wOd -lIC -chg -owa -lqI -qOE -aMR -etH -oas -rIi -rIi -rIi -rIi -rIi -nsK -"} -(40,1,1) = {" -cgS -xIt -xIt -wpv -wpv -fEZ -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -wpv -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzc -bPS -tzc -iiB -uew -iiB -vaE -eue -tzc -eue -eue -eue -eue -mXU -eue -inA -eue -eue -eue -mXU -eue -eue -eue -eue -tzc -tzc -tzc -iiB -uew -uew -dPu -uew -uew -jMr -vaE -vQm -qoP -duO -vIE -xNX -pzU -eYK -vqV -vqV -esw -vqV -ovH -jLi -jLi -dZI -vqV -vqV -dtq -riu -vqV -vqV -jRa -vqV -dtq -vqV -riu -vqV -vqV -vqV -cTW -jLi -oAT -vqV -mmF -vqV -kwo -xmr -xmr -vIE -ylS -xlV -pkK -hoS -gVv -nQX -vaN -sZy -gHP -gHP -vaN -vaN -vaN -cZq -uhx -lCJ -qpW -kKK -gnI -nsF -mfk -kKK -vQB -lCJ -dXl -gdv -tqi -tqi -tqi -tqi -tqF -tqF -tqi -tqi -tqi -tqi -tqi -tqi -qRn -oUg -ada -tqi -tqi -tqi -tqF -tqF -tqF -qOV -qOV -rIi -rIi -rIi -rIi -oas -blU -eEZ -gve -gve -pHY -hdk -wOd -wOd -wOd -wOd -wOd -wOd -csz -wOd -wOd -wOd -wOd -acL -imd -bJk -wOd -npE -wOd -wOd -chg -fpo -gve -gve -gve -qOE -oas -rIi -rIi -rIi -rIi -rIi -nsK -"} -(41,1,1) = {" -cgS -xIt -xIt -wpv -wpv -fEZ -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -wpv -wpv -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzc -tzc -uew -uew -uew -vaE -uew -tzc -tzc -eue -eue -eue -eue -eue -eue -eue -eue -eue -eue -eue -eue -eue -eue -inA -tzc -tzc -tzc -uew -uew -uew -uew -uew -jMr -vaE -vQm -qoP -atZ -nPP -qIU -vIE -uhI -iff -pEB -uxt -atZ -vIE -vIE -vIE -vIE -vIE -vIE -gyo -uxt -xlV -uGJ -qjO -vIE -taP -xlV -uxt -xlV -vIE -mGH -vIE -mGH -vIE -gyo -uxt -gyo -iff -vIE -vIE -vIE -iff -gyo -mfl -maw -gVv -xYQ -vaN -aeE -gHP -vaN -vaN -vaN -vaN -cZq -uhx -lCJ -poa -kKK -gnI -jTA -wqF -eoN -vQB -kRu -jph -crY -ckU -tqi -tqi -tqi -tqF -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -qOV -qOV -rIi -rIi -rIi -rIi -oas -oas -cBr -xyO -qaV -oas -oas -wOd -wOd -wOd -wOd -wOd -wOd -csz -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wOd -wDw -wOd -lIC -chg -dWk -gve -mkD -gve -aDk -oas -rIi -rIi -rIi -rIi -rIi -nsK -"} -(42,1,1) = {" -cgS -xIt -xIt -xIt -wpv -fEZ -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -wpv -wpv -wpv -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -raa -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzc -tzc -uew -uew -uew -vaE -uew -tzc -tzc -tzc -eue -tzc -tzc -tzc -tzc -tzc -tzc -tzc -tzc -tzc -tzc -eue -tzc -tzc -tzc -tzc -uew -uew -uew -uew -uew -uew -fAj -vaE -rZQ -yfp -oXD -pqb -tkC -lIG -biR -sZV -xlV -yfp -wMi -xlV -xlV -lIG -xlV -xlV -gyo -hkO -yfp -yfp -xRc -qjO -vIE -taP -yfp -yfp -fqs -pzF -oQw -gyo -kQj -uFH -eQj -yfp -wcc -sZV -bHD -lIG -xBL -sZV -wcc -yfp -bfA -gVv -uky -vaN -rnb -gHP -vaN -vaN -vaN -vaN -cZq -vpI -vpI -cwN -nsF -gnI -yaS -wqF -kKK -vQB -vpI -vpI -gdv -tqi -tqi -tqi -tqi -tqi -tqF -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -qOV -qOV -tqF -rIi -rIi -rIi -rIi -rIi -oas -oas -oas -oas -oas -ngP -wDw -ngP -wOd -wOd -wOd -wOd -csz -wOd -wOd -wOd -ngP -wOd -ngP -wOd -wDw -ngP -wOd -wOd -chg -hTf -gve -qOE -gve -dfV -oas -rIi -rIi -rIi -rIi -rIi -nsK -"} -(43,1,1) = {" -cgS -xIt -xIt -xIt -dOs -fEZ -fEZ -fEZ -gKU -xIt -xIt -xIt -xIt -xIt -xIt -xIt -wpv -wpv -wpv -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzc -tzc -uew -uew -uew -vaE -tzc -tzc -tzc -fGo -tzc -tzc -tzc -tzc -tzc -eue -tzc -tzc -eue -tzc -tzc -tzc -tzc -eue -tzc -uew -uew -uew -esd -uew -mEe -uew -uew -vaE -vQm -yfp -yfp -yfp -gOR -yfp -yfp -yfp -tuK -yfp -yfp -tuK -yfp -yfp -tuK -yfp -yfp -tuK -yfp -hwe -vku -nrJ -jLi -qUp -aNg -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -hoS -gVv -pRa -vaN -rnb -gHP -vaN -vaN -vaN -vSd -cZq -uhx -lCJ -cii -yaS -qXQ -ucE -fCL -kKK -vQB -lCJ -jph -gdv -tqi -tqi -rso -tqF -tqF -tqF -qOV -qOV -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -qOV -qOV -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -ngP -ngP -ngP -ngP -wOd -wOd -wOd -csz -wOd -wOd -ngP -ngP -ngP -ngP -ngP -ngP -ngP -wTN -wTN -bDq -dLX -pHY -qOE -lMX -cvi -oas -rIi -rIi -rIi -rIi -rIi -nsK -"} -(44,1,1) = {" -cgS -xIt -xIt -xIt -xIt -wpv -wpv -wpv -fEZ -wpv -xIt -xIt -xIt -xIt -xIt -xIt -wpv -wpv -wpv -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -eue -uew -uew -uew -uew -vuo -sSY -sSY -sSY -sSY -sSY -kcw -sSY -sSY -sSY -sSY -sSY -pfs -sSY -sSY -sSY -sSY -sSY -scR -uew -uew -uew -uew -uew -gTw -qqJ -qqJ -qqJ -sRk -vQm -yfp -atZ -jjX -tkC -kpE -yfp -kpE -qGg -yfp -ujy -qGg -yfp -pBL -wKI -yfp -pBL -wKI -yfp -hYT -vku -myO -xmr -taP -iHo -yfp -wKI -pBL -yfp -wKI -pBL -yfp -wKI -pBL -yfp -wKI -pBL -yfp -pBL -gyo -ogi -yfp -hoS -gVv -gVv -vaN -rnb -gHP -gVv -vaN -vSd -vaN -cZq -uhx -lCJ -dnY -bJb -kKK -eoN -kKK -wXv -vQB -lCJ -jph -gdv -tqi -tqi -tqF -tqF -qOV -qOV -qOV -tqF -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -wKz -xyZ -tqF -tqi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -ngP -rIi -ngP -tqi -tqi -tqi -tqi -vYQ -tqi -tqi -tqi -ngP -rIi -ngP -rIi -rIi -ngP -rIi -rIi -amW -wTN -mEP -hEt -nSm -ngP -cym -rIi -rIi -rIi -rIi -rIi -nsK -"} -(45,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -wpv -wpv -fEZ -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -dOs -wpv -dOs -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uew -uew -uew -uew -uew -pjt -vPO -vPO -vPO -vPO -vPO -vPO -pLe -pLe -pLe -pLe -pLe -vPO -vPO -vPO -vPO -vPO -vPO -pPQ -uew -uew -iiB -uew -uew -vaE -uew -uew -iiB -uew -vQm -yfp -ibt -fmz -bxz -pEB -yfp -pBL -tkC -yfp -pBL -kWO -yfp -pBL -cWY -yfp -pBL -cmy -yfp -gcX -vku -myO -xmr -taP -jpY -yfp -tkC -pBL -yfp -cGd -pBL -yfp -tkC -pBL -yfp -tkC -pBL -yfp -aLv -kTs -sWl -csw -hoS -gVv -kds -vaN -aeE -gHP -gHP -gVv -vaN -vaN -cZq -vpI -vpI -pMv -ucE -kKK -kKK -nsF -dnY -vpI -vpI -vpI -gdv -tqi -tqi -tqF -tqF -qOV -qOV -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -nNF -tqi -tqi -rIi -rIi -rIi -rIi -tqi -tqF -tqF -tqF -tqF -rIi -rIi -rIi -tqi -tqi -tqi -tqi -tqi -vYQ -tqi -tqi -tqi -rIi -rIi -rIi -rIi -tqi -rIi -rIi -rIi -uIC -amW -fuw -fuw -fuw -jue -vCo -xbV -rIi -rIi -rIi -rIi -nsK -"} -(46,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -wpv -wpv -fEZ -dOs -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -wpv -wpv -fyL -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xjB -xjB -xjB -xjB -xjB -xjB -xjB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uew -uew -esd -uew -eue -lCR -vPO -oDn -obt -asK -vPO -ulZ -qyJ -asK -egn -pdb -oDu -tze -vPO -hCr -obt -igF -vPO -sir -sSY -sSY -sSY -pfs -sSY -jXE -sSY -kcw -sSY -sSY -jTQ -yfp -gJD -xlV -tkC -xBa -yfp -lIA -tkC -yfp -lIA -tkC -yfp -lIA -tkC -yfp -lIA -tkC -yfp -yfp -yaz -qjO -vIE -raW -yfp -yfp -tkC -lIA -yfp -tkC -lIA -yfp -tkC -lIA -yfp -tkC -lIA -yfp -tkC -xlV -tIi -yfp -maw -gVv -gHP -gHP -aeE -gHP -gHP -gHP -gHP -vaN -cZq -uhx -vpI -eXu -tvB -lTM -kKK -nqO -dnY -vpI -jph -nSf -xWH -tqi -tqi -tqi -tqF -qOV -qOV -tqi -tqi -tqi -tqi -tqF -qOV -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -rIi -rIi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -vYQ -tqi -tqi -tqi -tqi -rIi -rIi -tqi -tqi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(47,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -wpv -gKU -wpv -wpv -wpv -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -kNR -ubb -ubb -ubb -ubb -ubb -ubb -tJs -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzc -uew -uew -uew -eue -lCR -vPO -oDn -vWC -asK -jDy -bpw -asK -sKa -uiI -sKa -asK -msQ -jDy -asK -sKa -joQ -vPO -stL -stL -fFL -fFL -fgJ -jQe -ggZ -jQe -fgJ -fFL -fFL -stL -yfp -yfp -yfp -gOR -yfp -yfp -yfp -sDx -yfp -yfp -gOR -yfp -yfp -gOR -yfp -yfp -gOR -yfp -neP -uGJ -dYC -vIE -taP -uFG -yfp -gOR -yfp -yfp -gOR -yfp -yfp -gOR -yfp -yfp -gOR -yfp -yfp -gOR -yfp -yfp -yfp -hoS -gVv -eVG -gHP -aeE -gHP -gHP -gHP -gVv -gVv -cZq -uhx -vpI -vpI -vpI -puF -cDV -vpI -vpI -vpI -vpI -gdv -tqi -tqi -tqi -tqi -tqi -tqF -tqi -tqi -tqi -tqi -tqF -rIi -rIi -qOV -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -rIi -qOV -pwy -tqi -tqi -jqs -vYQ -vYQ -vYQ -vYQ -vYQ -vYQ -vYQ -vYQ -jqs -vYQ -vYQ -rrl -rIi -rIi -mMH -tqi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(48,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -qzH -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uew -uew -uew -eue -kcG -vPO -oDn -vWC -cYd -vPO -jDy -bbn -ixd -rHj -jDy -xjC -jDy -vPO -hCr -sKa -sKa -asK -fgJ -wdR -wdR -wdR -fgJ -jMf -wrb -jMf -fgJ -jVJ -dMR -wdR -yfp -gyo -gyo -hrO -xJO -gyo -gyo -uhI -etw -hRI -uhI -gyo -gyo -uhI -xlV -bsq -qYj -yfp -bvZ -uGJ -myO -xmr -taP -bvZ -yfp -ybx -etw -etw -uhI -hRI -xlV -uhI -bfK -hXC -uhI -hRI -xlV -uhI -xlV -xLa -yfp -hmy -gVv -uky -gHP -aeE -gVv -gVv -gHP -gVv -tix -bkX -vpI -vpI -cMr -lQF -hws -lzZ -lzZ -lzZ -lCJ -jph -gdv -tqi -tqi -tqi -tqi -tqi -tqF -tqi -tqi -tqi -tqF -rIi -rIi -rIi -rIi -qOV -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -rTb -tqi -tqi -tqi -tqi -rIi -rIi -tqF -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -vYQ -tqi -tqi -tqi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(49,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -qzH -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uew -uew -uew -eue -pDx -xTw -asK -sKa -asK -xTw -asK -sKa -vWC -nry -vWC -sKa -asK -xTw -asK -sKa -bzf -asK -pIx -tCX -qZp -qZp -uuq -vQJ -pwF -vQJ -eeK -qZp -qZp -vQJ -mRJ -xlV -sok -lRV -uhI -lRV -oMN -vxj -veR -veR -vxj -veR -veR -pej -nri -sJb -tms -ruK -vqV -qzk -ogT -jLi -qzk -vqV -ruK -vxj -veR -veR -eOo -veR -veR -hiv -veR -veR -vxj -veR -veR -eOo -sZF -xlV -gwY -adP -gVv -uky -gHP -xJu -gVv -gVv -vaN -tix -uhx -vpI -vpI -vVd -cMr -lQF -hws -vpe -lzZ -lzZ -lCJ -jph -gdv -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -rIi -rIi -rIi -rIi -rIi -tqF -tqi -tqi -tqi -tqi -tqi -mMH -tqi -tqi -nNF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -mMH -rIi -rIi -rIi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -vYQ -tqi -tqi -tqi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(50,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -qzH -uGF -uGF -uGF -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -xIt -xIt -ubb -ubb -ubb -ubb -rvq -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uew -iiB -uew -mXU -cxN -glo -jeL -qUE -meH -ixc -meH -whI -doQ -pjF -doQ -whI -meH -ixc -meH -rDm -whI -meH -fQt -pwH -wMh -wMh -cVY -iab -ggz -aOd -ion -wMh -hSR -aOd -gSz -mur -hDD -bML -kMO -bML -cNS -iQf -aIq -aIq -iQf -aIq -jIr -vJx -gdp -hxJ -rsq -xOP -cFE -cFE -qjO -vIE -ylS -vIE -eow -jXZ -kpt -jXZ -jrU -ilZ -jXZ -jXZ -jXZ -jXZ -jXZ -jXZ -xmr -jrU -xAf -xlV -vfh -adP -gVv -kVX -gVv -xJu -vaN -vaN -tix -jBv -vpI -vpI -lzZ -wko -wko -edt -mmz -lzZ -lzZ -vpI -vpI -vpI -gdv -tqi -mMH -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -rIi -rIi -rIi -rIi -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -rIi -qOV -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -vYQ -tqi -tqi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(51,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -uGF -qzH -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xEg -uGF -uGF -xEg -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uew -uew -uew -uew -tXO -vPO -asK -oqk -asK -vPO -kdS -asK -sKa -nry -sKa -asK -tWj -vPO -oDn -ogL -gKG -asK -fgJ -wdR -wdR -wdR -fgJ -nEF -wrb -jMf -fgJ -wdR -wdR -wdR -yfp -etw -nvW -xlV -uhI -xlV -xlV -lIG -gyo -gyo -xlV -lIG -vIE -uhI -dyh -pGr -lIG -yfp -qYM -uGJ -myO -xmr -taP -rHv -yfp -gyo -hJK -xlV -uhI -vIE -xlV -xlV -lIG -hrB -xlV -xlV -vIE -uhI -mRa -aWg -yfp -sQI -gVv -kab -vaN -rnb -vaN -tix -bkX -vpI -vpI -tES -lzZ -lzZ -lzZ -hws -lzZ -uVk -vpI -vpI -vpI -jph -gdv -jqs -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -rIi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -mMH -tqi -tqi -tqi -mMH -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -mMH -tqi -tqi -vYQ -tqi -tqi -mMH -tqi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(52,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -uGF -qzH -uGF -uGF -uGF -xIt -xIt -xIt -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -tJs -ubb -ubb -ubb -ubb -tJs -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uew -uew -uew -uew -vQm -vPO -hCr -oqk -asK -jDy -igF -asK -gnv -uiI -sKa -asK -oIK -jDy -oDn -sKa -asK -vPO -nYN -nYN -mKS -mKS -fgJ -jQe -ggZ -jQe -fgJ -mKS -mKS -nYN -yfp -yfp -yfp -yfp -mYv -yfp -yfp -yfp -yfp -yfp -yfp -yfp -eow -vEz -yfp -yfp -yfp -yfp -iSG -lkM -myO -xmr -taP -avL -yfp -yfp -yfp -yfp -dYI -khq -yfp -yfp -yfp -yfp -yfp -yfp -eow -vEz -yfp -yfp -yfp -hoS -gVv -vaN -vaN -rnb -vaN -cZq -vpI -vpI -lZw -sVP -etI -lzZ -lzZ -hws -lzZ -vpI -vpI -tlE -vpI -vpI -jph -dZF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -mMH -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -vYQ -tqi -tqi -tqi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(53,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -uGF -qzH -xEg -uGF -uGF -xIt -xIt -xIt -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -vqi -oHy -oHy -oHy -oHy -qTf -qTf -qTf -vqi -vqi -vqi -vqi -vqi -vqi -xIt -xIt -xIt -xIt -uew -uew -uew -uew -vQm -vPO -aSY -aDM -asK -vPO -joQ -asK -asK -swq -asK -kYx -oIK -vPO -oDn -asK -asK -vPO -sir -sir -sir -uXX -lWQ -uXX -vUQ -uXX -wtT -cHi -uXX -sir -yfp -pBL -hRI -xlV -uhI -xlV -saB -gyo -yfp -bNr -nAe -yfp -vIE -skP -gQV -pEB -hrB -yfp -yfp -fHC -myO -xmr -ciW -yfp -yfp -lIA -xlV -jNG -uhI -vIE -pBL -pBL -pBL -yfp -gQV -gQV -vIE -uhI -pBL -pBL -yfp -hoS -gVv -vaN -vaN -rnb -vaN -cZq -uhx -lCJ -cVN -sEt -lQF -lzZ -cvm -hws -ien -vpI -wZr -lzZ -xeS -vpI -vpI -gdv -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -dqv -nAi -sWt -tqi -tqi -tqF -tqF -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -rrl -tqi -tqi -rIi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(54,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -qzH -uGF -uGF -uGF -xIt -xIt -xIt -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tJs -ubb -rvq -tJs -xIt -xIt -xIt -xIt -xIt -xIt -vqi -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -uew -uew -uew -uew -vQm -vPO -jDy -rCK -jDy -vPO -vPO -vPO -xYx -arL -jDy -vPO -vPO -vPO -vPO -vPO -vPO -vPO -vPO -vPO -pPQ -eue -tzc -uew -kJl -qqJ -qqJ -qqJ -iCr -vQm -yfp -pBL -oYe -vIE -qIU -ruF -vIE -ugP -yfp -mrI -jTH -uJO -dtq -sBH -aWz -mRH -lsJ -yfp -qYM -cvv -myO -xmr -vyH -xVo -yfp -ehe -xmr -krA -dZy -iMh -vqV -vqV -aNg -yfp -fWc -dia -vIE -jXi -saO -gVs -yfp -hoS -vaN -vaN -shp -rnb -vaN -cZq -uhx -lCJ -auR -cMr -gLa -lzZ -etI -eQB -etI -vpI -vpI -hCb -vpI -vpI -jph -gdv -qOV -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -wcb -cek -sJg -tqi -tqi -tqi -tqF -tqF -tqF -tqi -tqi -tqi -gHj -tqi -tqi -tqi -rrl -rIi -rIi -rIi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(55,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -uGF -qzH -uGF -uGF -uGF -uGF -xIt -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -vqi -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -vqi -xIt -xIt -xIt -xIt -uew -uew -uew -uew -vQm -vPO -jtO -pJB -bUA -vPO -ipC -ipC -asK -swq -asK -ipC -ipC -vPO -dVm -asK -tod -asK -amJ -vPO -scv -uew -tzc -tzc -tzc -uew -uew -uew -vaE -vQm -yfp -pBL -eKP -ihA -riY -lbJ -vIE -hJz -yfp -yfp -yfp -yfp -lZc -hUH -oIP -nPP -stq -yfp -nKA -uGJ -qjO -rum -vyH -pOA -yfp -xlV -wRA -jNG -pEB -uhI -eyF -iff -xlV -yfp -sWl -jPy -eKP -juG -xlV -lIA -yfp -hoS -vaN -vaN -vaN -rnb -vaN -cZq -vpI -vpI -vpI -vpI -iTU -ehl -kuI -xvn -kBX -mxk -lzZ -lzZ -maO -vpI -ckh -gdv -tqF -qOV -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -nNF -tqF -tqF -tqi -tqi -tqi -tqi -tqi -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -qRn -oUg -ada -tqi -tqi -tqF -qOV -qOV -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -rrl -rIi -rIi -tqi -tqi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(56,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -qzH -uGF -xEg -uGF -uGF -uGF -uGF -uGF -xEg -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -vqi -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -vqi -xIt -xIt -xIt -xIt -uew -uew -rSi -sSY -sir -vPO -bmp -mjf -asK -bUA -asK -sKa -sKa -uiI -sKa -sKa -asK -vPO -hFB -sKa -gun -sKa -bUf -vPO -sir -sSY -sSY -sSY -sSY -sSY -vFU -uew -vaE -vQm -yfp -yfp -xKI -yfp -cWY -deg -tGM -gVs -yfp -lIA -xlV -jNG -vIE -xmr -vIE -vIE -xlV -yfp -xIu -iJT -myO -xmr -vyH -xCX -yfp -yfp -yfp -yfp -hrB -qIU -icP -eKY -stq -yfp -jNG -gmV -sJD -yfp -yfp -yfp -yfp -hoS -vaN -vaN -vaN -rnb -vaN -cZq -uhx -lCJ -fpK -vpI -vpI -blx -etI -xvn -kBX -wMf -lzZ -lzZ -maO -vpI -vpI -mcL -qOV -tqF -qOV -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -mMH -tqi -tqi -tqi -tqi -tqi -tqi -tqi -mMH -tqF -tqF -qOV -tqi -tqi -tqi -tqi -tqF -qOV -qOV -tqF -tqi -tqi -tqi -tqi -tqi -tqi -gHj -tqi -tqi -tqi -tqF -qOV -xyZ -tqi -tqi -tqi -tqi -tqi -sqH -tqi -tqi -rrl -rIi -rIi -tqi -tqi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(57,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -qzH -xEg -uGF -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -vqi -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -vqi -xIt -xIt -xIt -xIt -uew -uew -vQm -vPO -vPO -vPO -lwk -mfz -sKa -sKa -sKa -sKa -sKa -iOB -sKa -sKa -xTa -vPO -fYO -sKa -vOU -sKa -asK -vPO -vPO -vPO -vPO -vPO -vPO -vPO -scv -uew -vaE -vQm -yfp -acn -amY -yfp -hrO -dtq -vqV -aNg -fFO -xlV -xmr -aOQ -ylS -vIE -vIE -ylS -xlV -yfp -yfp -uGJ -myO -xmr -lgh -yfp -yfp -acn -ijo -yfp -oIP -uhI -iXr -iXr -xlV -yfp -ehe -xmr -tkC -yfp -qZd -lrW -dyh -ccm -vaN -vaN -vaN -rnb -vaN -cZq -uhx -lCJ -iiu -bNU -lCJ -soH -etI -xvn -kBX -ttT -lzZ -lzZ -aPZ -vpI -vpI -nSf -qHr -qHr -qHr -qHr -qHr -qHr -qHr -ixM -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -qOV -qOV -qOV -qOV -tqF -tqi -tqi -tqi -sqH -tqi -tqi -tqi -tqF -qOV -qOV -tqF -tqi -tqi -tqi -rIi -rIi -tqi -tqi -tqi -vYQ -rIi -rIi -tqi -tqi -pwy -tqi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(58,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -qzH -qzH -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -vqi -xIt -ubb -ubb -ubb -ubb -rvq -ubb -ubb -ubb -ubb -ubb -xIt -vqi -xIt -xIt -xIt -xIt -uew -iiB -skK -vPO -cyK -asK -asK -aDM -oAV -oAV -oAV -oAV -hBN -aDM -sKa -sKa -xTa -vPO -fYO -sKa -ahN -sKa -sGn -vPO -ott -asK -wES -asK -ott -vPO -scv -uew -vaE -vQm -yfp -mIS -dGG -yfp -lIA -xlV -cDN -gyo -yfp -ehe -wRA -jNG -xlV -xlV -pBL -pBL -pBL -yfp -iHo -jBT -qjO -vIE -pkM -uNc -yfp -dme -hSz -uJO -tTp -juG -sWl -sWl -xlV -yfp -pBL -xlV -hMN -mty -aEI -uHR -csw -hoS -vaN -vSd -oGY -rWh -vhH -uRG -vpI -vpI -qmy -jwa -vpI -jtM -lzZ -hwl -kWv -vHE -lzZ -lzZ -hOW -lCJ -jph -nSf -jph -iuJ -hgb -hgb -hgb -iuJ -jph -crF -tqi -tqi -tqi -tqi -tqi -gHj -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -qOV -qOV -qOV -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -qOV -qOV -tqF -tqi -tqi -rIi -rIi -tqi -tqi -tqi -tqi -vYQ -tqi -rIi -tqi -tqi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(59,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -qzH -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -vqi -xIt -ubb -ubb -ubb -tJs -ubb -ubb -ubb -ubb -tJs -ubb -xIt -vqi -xIt -xIt -xIt -xIt -uew -uew -vQm -ieD -cyK -sKa -wkB -swq -mhI -xWJ -arF -xWJ -hBJ -waV -sKa -sKa -xTa -vPO -glJ -sKa -nry -sKa -sGn -vPO -asK -asK -iOB -asK -asK -vPO -scv -uew -vaE -vQm -yfp -yfp -yfp -yfp -yfp -eAh -yfp -yfp -yfp -yfp -yfp -yfp -yfp -eAh -yfp -yfp -yfp -yfp -bdq -uGJ -qjO -vIE -pkM -lJo -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -yfp -dwK -vaN -vaN -obj -rnb -vaN -cZq -jBv -pXA -kKK -kKK -pXA -gVG -lzZ -hwl -vpe -vpI -rLw -lzZ -tNv -wRY -jph -nSf -iuJ -iuJ -xLr -xLr -xLr -iuJ -iuJ -crF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -qOV -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -qOV -qOV -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -qOV -tqF -tqi -tqi -tqi -tqi -tqi -tqi -mMH -tqi -tqi -jqs -tqi -tqi -tqi -tqi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(60,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -qzH -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -tJs -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -oHy -ubb -xIt -xIt -eue -tzc -uew -vQm -ieD -cyK -sKa -wkB -swq -mhI -stE -kNm -cfj -hBJ -waV -iZn -sKa -asK -jDy -asK -sKa -axm -sKa -asK -vPO -cyK -qLW -nry -sKa -xTa -vPO -rdm -uew -vaE -vQm -yfp -cpg -bwG -ojI -wKI -gyo -kQr -nvf -yfp -nMr -gyo -gyo -yfp -gyo -gyo -xlV -xlV -yfp -jqp -uGJ -myO -xmr -pkM -aHo -yfp -hRI -xlV -xlV -yfp -xlV -xlV -hRI -yfp -hkO -jRO -jRO -hRI -hrB -wPD -wPD -yfp -wQe -vaN -vaN -vaN -kow -myA -wec -vDp -mRn -pTW -fOp -mRn -jRs -jRs -dgs -nkZ -iYC -nkZ -uyD -cbH -vpI -vpI -vBz -iuJ -vIT -oGN -cRR -oGN -vIT -iuJ -crF -tqi -tqi -dqv -nAi -sWt -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -vYQ -tqi -tqi -tqi -tqi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(61,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -uGF -qzH -uGF -uGF -uGF -xIt -xIt -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -xIt -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -ubb -ubb -ubb -kST -ubb -ubb -tJs -ubb -ubb -bJh -ubb -ubb -ubb -tzc -eue -bPS -vQm -ieD -cyK -sKa -wkB -swq -nYR -oBR -lDt -iyf -pht -waV -iZn -sKa -asK -xTw -asK -sKa -uiI -sKa -asK -xTw -asK -vWC -nry -vWC -asK -xTw -rbp -uew -vaE -vQm -yfp -cpg -jPr -qTk -uhI -vIE -jPy -dYw -yfp -xlV -uAB -vIE -cwv -uAB -uAB -vIE -xlV -yfp -yfp -uGJ -myO -xmr -taP -yfp -yfp -xlV -vIE -vIE -hjh -vIE -vIE -xlV -yfp -gyo -eYs -jPy -vIE -ylS -vIE -xlV -mfl -pxf -qxW -vaN -vaN -tjx -vaN -pKg -vpI -vpI -fQL -hZY -vpI -iIK -sEt -sEt -lhD -vpI -dOl -mzo -vpI -vpI -uhx -vBz -iuJ -hmw -hLv -svc -oGN -tPp -hgb -crF -tqi -tqi -wcb -cek -sJg -tqi -tqi -tqi -tqi -tqi -tqi -qOV -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -qOV -tqF -tqi -tqi -tqi -pwy -tqi -tqi -tqi -tqi -tqi -vYQ -tqi -rIi -tqi -tqi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(62,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -uGF -qzH -uGF -uGF -uGF -xIt -xIt -vqi -xIt -pfm -nyC -pfm -nyC -pfm -pfm -pfm -nyC -nyC -xIt -xIt -vqi -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -vqi -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -oHy -ubb -ubb -yjx -tzc -eue -tzc -vQm -ieD -uwy -sKa -sKa -swq -nYR -kNm -kNm -kNm -pht -lEj -lnk -sbf -jeL -glo -jeL -sbf -qVb -sbf -jeL -glo -jeL -jvV -saC -jvV -jeL -glo -wSK -qqJ -wGG -sCH -uxt -vPN -vIE -bOW -xqv -vIE -vIE -hVB -uxt -xlV -vIE -xmr -xmr -xmr -xmr -vIE -xlV -uxt -xlV -uGJ -myO -llK -taP -stq -yfp -xlV -vIE -vIE -vIE -vIE -vIE -xlV -yfp -mmV -vIE -xmr -vIE -vIE -vIE -gQV -mfl -kGX -iXM -vaN -vaN -mjD -kQh -rVO -vbN -vpI -vpI -vpI -vpI -vpI -lCJ -lCJ -vpI -vpI -uNC -vpI -vpI -vBz -vBz -lzV -iuJ -tPp -hLv -jlx -oGN -tPp -hgb -crF -tqi -tqi -qRn -oUg -ada -tqi -tqi -tqi -tqi -tqi -tqF -qOV -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -mMH -tqi -tqi -tqi -tqF -wKz -qOV -qOV -tqF -tqi -tqF -nNF -tqi -tqi -tqi -tqi -tqi -vYQ -rIi -rIi -rIi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(63,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -uGF -qzH -uGF -xEg -xIt -xIt -xIt -vqi -pfm -pfm -nyC -nyC -pfm -rCQ -elo -mJj -pfm -nyC -pfm -nyC -muV -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -vqi -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -oHy -ubb -ubb -yjx -eue -eue -tzc -rZQ -vPO -glJ -sKa -wkB -swq -nYR -kNm -kNm -kNm -pht -waV -iZn -sKa -asK -jDy -kiM -kiM -vPO -kiM -kiM -vPO -glJ -sKa -vWC -sKa -asK -vPO -dPl -rHw -vaE -hdJ -lwq -pEB -vIE -qKl -klt -vqV -vqV -qqj -kXf -iMh -jRd -vqV -vqV -vqV -vqV -uyZ -vqV -ruK -vqV -vqV -jRa -vqV -vqV -vqV -ruK -vqV -vqV -vqV -vqV -vqV -iMh -vqV -edn -vqV -vqV -tyI -aWz -mTP -gpd -gyo -mfl -vUo -nrX -vaN -vaN -lBN -qxW -liQ -ryG -mdj -vpI -hRU -dUC -vpI -uhx -uiF -vpI -uhx -vBz -vpI -lzV -vBz -jBv -iuJ -iuJ -rCP -hLv -mfO -oGN -rCP -hgb -crF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -qOV -qOV -tqF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -qOV -qOV -qOV -tqF -qOV -tqF -qOV -qOV -nNF -tqi -tqi -tqi -tqi -uVz -tqi -rIi -rIi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(64,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -uGF -qzH -xEg -uGF -xIt -xIt -pfm -mKk -pfm -pfm -mJj -elo -pfm -pfm -mJj -elo -pfm -elo -pfm -nyC -mKk -nyC -iqm -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -vqi -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -oHy -ubb -ubb -tzc -tzc -eue -bPS -sCH -vPO -asK -sKa -ooP -jwQ -rsY -kVR -mmL -kVR -ych -baD -iZn -sKa -xTa -vPO -vPO -vPO -vPO -vPO -vPO -vPO -oOT -asK -sKa -asK -sGn -vPO -scv -uew -vaE -hdJ -eow -haZ -esc -vIE -hxH -oYe -wbj -vIE -eow -uhI -vIE -xmr -xmr -oYe -xmr -vIE -vIE -eow -vIE -rum -ydU -vIE -ylS -vIE -eow -vIE -vIE -xmr -oYe -xmr -uhI -vIE -eow -vIE -ylS -yhX -xmr -uhI -gpd -gyo -mfl -hoS -qxW -vaN -vaN -ulW -vaN -kKi -djq -cZq -rYU -uhx -uhx -uhx -uhx -lzV -vBz -vBz -lzV -vBz -lzV -iuJ -iuJ -iuJ -pgJ -dHv -hLv -hLv -oGN -dHv -hgb -crF -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -qOV -tqF -tqF -tqi -dqv -nAi -sWt -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -tqF -tqF -qOV -qOV -qOV -qOV -tqF -tqF -tqF -qOV -qOV -tqi -tqi -tqF -rcx -tqF -tqi -rIi -tqi -tqi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(65,1,1) = {" -cgS -xIt -xIt -xIt -xEg -uGF -uGF -fZP -uGF -xIt -xIt -xIt -pfm -muV -mJj -pfm -khi -pfm -mJj -rCQ -pfm -elo -pfm -pfm -mJj -pfm -muV -kDZ -ubb -pvp -ubb -ubb -ubb -ubb -tJs -ubb -ubb -ubb -ubb -nue -vqi -vqi -qTf -oHy -nue -oHy -oHy -oHy -oHy -nue -vqi -vqi -vqi -xIt -xIt -eue -tzc -mXU -chD -pUg -hZX -jeL -sbf -gdc -obt -qZM -wEA -wFW -wEA -wEA -aDM -sKa -sKa -xTa -vPO -wkN -vlh -vPO -wkN -vlh -vPO -oOT -cuY -asK -asK -aEZ -vPO -scv -xMA -vaE -tXO -fWE -xlV -xlV -wvO -vIE -xmr -eTa -prS -uxt -mYt -rPt -rPt -bQz -rPt -rPt -vIE -xlV -uxt -xlV -akm -qjO -mjO -xAf -xlV -uxt -xlV -vIE -vIE -dYx -vIE -uhI -arM -uxt -gQV -vIE -oYe -vIE -lOf -gyo -oXh -yfp -hwu -iMq -dVx -vaN -lBN -vaN -qOH -vaN -cZq -uhx -iuJ -gtp -iuJ -iuJ -vBz -iuJ -iuJ -iuJ -iuJ -iuJ -iuJ -kqw -dNb -uAD -hLv -hLv -hLv -sMk -xLr -iuJ -crF -tqi -tqi -tqi -tqi -mMH -tqi -tqi -qOV -tqF -tqi -tqi -tqi -wcb -cek -sJg -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -tqi -tqF -tqF -qOV -tqF -tqi -tqF -tqi -tqF -tqF -tqF -tqF -qOV -vhu -qOV -tqF -tqi -tqi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(66,1,1) = {" -cgS -xIt -xIt -xIt -qzH -qzH -qzH -qzH -xIt -xIt -xIt -xIt -pfm -mKk -kDZ -pfm -mJj -pfm -mJj -kDZ -elo -pfm -mJj -elo -pfm -pfm -oya -nyC -nyC -pxr -ubb -ubb -beU -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -eue -eue -tzc -sWa -hdJ -red -asK -sKa -sKa -asK -nYR -kNm -kNm -kNm -pht -waV -sKa -sKa -xTa -vPO -xLb -tHt -vPO -xLb -vlh -vPO -vPO -jDy -unI -jDy -vPO -vPO -eFm -uew -vaE -vQm -yfp -yfp -hrB -xlV -vIE -vIE -vIE -tjE -yfp -rgr -gyo -gyo -yfp -gyo -gyo -vyS -hrB -yfp -xlV -lIG -qjO -vIE -lIG -stq -yfp -rVJ -hkO -gyo -yfp -hrB -mYt -dGC -yfp -kQr -iff -vIE -vIE -vfk -gyo -yfp -yfp -dwK -vaN -evC -vaN -rnb -vaN -xCQ -tix -uhx -iuJ -iuJ -hgb -iuJ -iuJ -oAm -iuJ -oRW -tOY -rDT -iuJ -vIT -oGN -vIT -kUF -hLv -vuB -vuB -hLv -oGN -wuC -crF -tqi -tqi -tqi -tqi -tqi -mMH -tqF -tqi -tqi -tqi -tqi -wKz -qRn -oUg -ada -tqi -tqi -wUu -qHr -qHr -qHr -qHr -qHr -qHr -ixM -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqF -tqF -tqi -tqi -tqi -tqi -wUu -qHr -qHr -qHr -aoU -qHr -qHr -qHr -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(67,1,1) = {" -cgS -xIt -xIt -uGF -qzH -uGF -uGF -xIt -xIt -xIt -xIt -xIt -nyC -muV -pfm -pfm -pfm -kio -pfm -pfm -pfm -pfm -pfm -pfm -mJj -nyC -mKk -pfm -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -tJs -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -eue -eue -tzc -sWa -tXO -vPO -pfn -sKa -sKa -asK -nYR -kNm -kNm -kNm -pht -waV -iZn -sKa -xTa -vPO -wkN -vlh -vPO -wkN -vlh -vPO -xPm -xPm -asK -asK -xPm -euw -scv -uew -vaE -wAW -fNF -yfp -yfp -lIG -xlV -gpd -eem -evv -yfp -yfp -oHY -oHY -fVe -oHY -oHY -yfp -yfp -yfp -yfp -yfp -pAx -ahO -yfp -yfp -yfp -yfp -oHY -oHY -fVe -oHY -oHY -yfp -yfp -uod -gyo -nPP -xlV -mYt -yfp -yfp -uhx -fda -vSd -vaN -cYU -rnb -vaN -vaN -uRG -iuJ -iuJ -pgJ -wIS -wIS -tjq -uAD -xLr -oGN -oGN -jxi -hgb -tPp -oGN -tPp -kUF -hLv -rhU -uDh -oGN -oEN -iuJ -jph -qHr -qHr -ixM -tqi -tqi -tqi -tqi -tqi -tqi -tqi -qOV -qOV -tqF -tqi -tqi -tqi -wUu -jph -jTv -jTv -fsy -fsy -jTv -jTv -jph -ixM -tqi -mMH -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -wUu -ckh -jTv -wTr -wTr -cLM -wTr -jTv -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(68,1,1) = {" -cgS -xIt -xIt -uGF -qzH -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -muV -hNx -pfm -kio -nyC -rCQ -nyC -pfm -nyC -pfm -nyC -pfm -nyC -mKk -pfm -pfm -xIt -xIt -pfm -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -cQd -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -eue -eue -eue -sWa -skK -vPO -asK -sKa -sKa -asK -nYR -kNm -kNm -kNm -pht -waV -iZn -sKa -asK -vPO -qIV -qIV -vPO -qIV -qIV -vPO -jvM -fKy -fKy -fKy -asK -eoG -scv -uew -vaE -uew -mEg -fNF -yfp -yfp -xlV -nGw -rbc -yfp -yfp -wdu -uXX -uXX -uXX -sir -rdf -eYt -nGK -nGK -xsN -aVM -knQ -opk -aVM -pyk -ruv -qNv -ruv -tCc -uhx -rzM -rzM -oPL -yfp -yfp -gyo -jjX -lIG -yfp -yfp -uhx -fda -gVv -vvU -vaN -vaN -rnb -vaN -tix -uhx -iuJ -feh -oGN -oGN -hKl -oGN -uAD -nmk -hLv -oGN -xLr -hgb -tPp -oGN -tPp -kUF -eyO -vuB -hLv -oGN -rZo -iuJ -jph -jph -iuJ -ckh -ixM -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -tqi -wUu -ckh -jTv -jTv -gzj -dFT -piP -wFX -jTv -jTv -jph -ixM -tqi -tqi -tqi -tqi -tqi -mMH -tqi -tqi -tqi -tqi -tqi -sDv -jph -jTv -jTv -atL -lEJ -lEJ -xzQ -jTv -jTv -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(69,1,1) = {" -cgS -xIt -xIt -uGF -qzH -uGF -xIt -xIt -xIt -xIt -xIt -xIt -iqm -igB -mKk -oBs -igB -igB -igB -mKk -muV -mKk -igB -igB -igB -oBs -oBs -iqm -iqm -iqm -xIt -pfm -pfm -xIt -xIt -xIt -xIt -xIt -xIt -tJs -ubb -ubb -tJs -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -eue -eue -sWa -vQm -ieD -asK -lxt -bAb -asK -nYR -ndA -kBZ -nZH -pht -waV -iZn -sKa -asK -jDy -sbQ -sbQ -vPO -mHc -fKy -vPO -asK -tyG -tyG -tyG -hqe -eoG -scv -uew -vaE -uew -uew -crx -fNF -yfp -yfp -mLe -yfp -yfp -sir -muE -uew -uew -uew -vQm -rdf -nGK -nGK -nGK -qFS -aVM -tCw -uJj -aVM -fOW -ruv -ruv -ruv -tCc -hoS -vaN -vaN -ndh -uhx -yfp -yfp -oHY -yfp -yfp -uhx -fda -gVv -gVv -tCF -vaN -vaN -rnb -vaN -cZq -iuJ -iuJ -xuW -hLv -nOE -het -vrJ -kUF -hLv -hLv -nmk -xLr -hgb -tPp -oGN -tPp -kUF -uDh -vuB -mLB -vQx -hRx -iuJ -iuJ -iuJ -iuJ -iuJ -jph -qHr -qHr -qHr -qHr -qHr -qHr -qHr -qHr -qHr -qHr -qHr -jph -jTv -jTv -hnW -lEJ -hNU -hNU -piP -hnW -jTv -jTv -jph -qHr -qHr -qHr -qHr -qgs -tto -tto -hYu -qHr -qHr -qHr -jph -jTv -jTv -imm -lEJ -hNU -hNU -piP -imm -jTv -jTv -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(70,1,1) = {" -cgS -xIt -xIt -uGF -qzH -uGF -xIt -xIt -xIt -xIt -xIt -xIt -iqm -rXv -pfm -nyC -pfm -nyC -nyC -nyC -pfm -nyC -pfm -nyC -nyC -nyC -nyC -pfm -icv -iqm -rXv -pfm -nyC -pfm -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -eue -tzc -sWa -vQm -ieD -cyK -bss -rKr -asK -rBz -stE -kNm -cfj -aTH -nwC -iZn -sKa -asK -hvG -kHL -qIf -kHL -qIf -qIf -hvG -asK -tyG -vKe -tyG -asK -euw -scv -tzF -vaE -uew -uew -uew -crx -dAm -mHT -uXX -lWQ -uXX -muE -uew -uew -uew -uew -vQm -rdf -nGK -nGK -nGK -qFS -aVM -tCw -uJj -aVM -fOW -ruv -ruv -jHl -tCc -hoS -vaN -vaN -vSd -ndh -rzM -usO -ker -fCe -rzM -fda -gVv -gHP -gHP -xKH -gVv -vaN -rnb -vaN -cZq -iuJ -iuJ -lVu -hLv -nOE -icL -eEH -ydl -hLv -hLv -oGN -xLr -hgb -rCP -oGN -rCP -kUF -jyV -uDh -uDh -oGN -xMf -iuJ -aLs -aLs -iuJ -iuJ -fvh -fvh -ceI -ceI -ceI -ceI -fvh -fvh -ceI -ceI -ceI -ceI -fvh -jTv -kxi -piP -tqM -jGE -jGE -hNU -piP -dlA -jTv -fvh -fvh -ceI -ceI -ceI -fsy -dLh -bsm -fsy -ceI -ceI -ceI -fvh -jTv -imm -gaa -tqM -xhE -wCg -hNU -piP -imm -jTv -jTv -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(71,1,1) = {" -cgS -xIt -xIt -uGF -qzH -uGF -uGF -xIt -xIt -fVm -xIt -nyC -iqm -nyC -iDj -jDu -jDu -jDu -jDu -lHs -jDu -jDu -jDu -jDu -jUt -omp -jDu -oRO -nyC -iqm -nyC -fXJ -elo -pfm -xIt -qaM -xIt -xIt -xIt -xIt -xIt -ubb -tJs -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzc -tzc -vaE -vQm -ieD -cyK -myR -sKa -asK -rBz -dXY -hju -dXY -jxG -waV -sKa -sKa -asK -eoG -bDR -hDu -hDu -hDu -gPU -pqa -xsO -tyG -tyG -tyG -asK -eoG -scv -eue -vaE -esd -uew -uew -uew -uew -uew -uew -uew -uew -uew -uew -uew -uew -uew -vQm -rdf -nGK -nGK -nGK -qFS -aVM -tCw -uJj -aVM -fOW -ruv -ruv -ruv -tCc -hoS -vaN -vaN -vaN -vaN -gVv -gVv -gVv -gVv -gHP -gVv -gHP -gHP -gVv -rZz -gHP -gVv -rnb -vaN -ndh -uhx -iuJ -lZe -hLv -nOE -yev -fuY -ydl -hLv -hLv -nmk -fmR -iuJ -vtt -oGN -bwC -kUF -uDh -uDh -eyO -clZ -sVy -xLr -xLr -xLr -xLr -bcO -jTv -glh -gpR -gpR -gpR -gpR -jTv -jTv -gpR -gpR -gpR -gpR -uCp -jTv -tqO -piP -rne -ner -ner -jGE -hNU -piP -oyd -jTv -glh -gpR -gpR -gpR -uKb -lMU -lMU -uKb -gpR -gpR -gpR -uCp -jTv -iPh -kLy -lHD -ybV -ybV -jGE -hNU -piP -mZr -jTv -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(72,1,1) = {" -cgS -xIt -xIt -xIt -qzH -uGF -uGF -uGF -xIt -pfm -elo -nyC -iqm -nyC -jaz -jDC -vFl -eqT -vFl -vRt -vRt -vRt -vRt -vMo -ogl -vMo -oIs -pbF -pfm -hNx -pfm -eqE -pfm -pfm -pfm -qaW -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uew -tzc -vaE -vQm -ieD -asK -fmL -sKa -asK -wqH -wqH -wqH -wqH -eGs -aDM -sKa -sKa -ipC -euw -hDu -hDu -hDu -hDu -hDu -pqa -asK -roY -ppO -ppO -xPm -eoG -scv -bPS -dTs -qqJ -qqJ -qqJ -qqJ -qqJ -qqJ -tYp -qqJ -qqJ -qqJ -qqJ -qqJ -qqJ -tYp -nju -rdf -nGK -qSH -nGK -qFS -aVM -tCw -uJj -aVM -fOW -wtI -wtI -wtI -hUc -aQq -aQq -aQq -aQq -lcI -gVv -gVv -gVv -gVv -gHP -gHP -gHP -gHP -gVv -gHP -mkL -teS -jLj -vaN -vaN -cZq -qWs -oGN -hLv -hLv -wAP -gIX -ydl -kUF -kUF -kUF -uAD -vCi -uAD -kUF -kUF -kUF -kUF -kUF -tqv -kUF -kjq -uAD -uAD -uAD -uAD -xVO -hWP -oev -rne -rne -rne -rne -cDL -cDL -rne -rne -rne -rne -oev -hWP -gIL -tqM -rne -ner -ner -jGE -hNU -hNU -gEa -uco -lMU -jGE -jGE -jGE -jGE -lMU -lMU -jGE -jGE -jGE -jGE -lMU -oMg -mTs -lEm -lHD -ybV -ybV -jGE -hNU -piP -lMU -jTv -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(73,1,1) = {" -cgS -xIt -xIt -uGF -qzH -vwm -uGF -uGF -pfm -elo -bVQ -nyC -nyC -nyC -iPn -eqT -iqm -kEl -iqm -lMM -mli -mMd -lMM -iqm -kEl -iqm -eqT -oXj -nyC -nyC -nyC -pfm -nyC -fXJ -pfm -pfm -xIt -iqm -iqm -xIt -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uew -uew -vaE -rZQ -vPO -asK -cuY -cuY -vnQ -asK -asK -asK -asK -asK -iYZ -asK -cuY -ipC -euw -hDu -hDu -hDu -hDu -hDu -pqa -qEd -asK -asK -xPm -xPm -euw -scv -tzc -vuR -uew -uew -sBI -xKz -xKz -xKz -xKz -xKz -xKz -xKz -xKz -xKz -fZe -uew -jRQ -wUK -nGK -nGK -nGK -xsN -njh -aFq -wtt -njh -pyk -ruv -ruv -ruv -tCc -hoS -vaN -vaN -vaN -vaN -vaN -gVv -gVv -gVv -gHP -gHP -gHP -gHP -gHP -vaN -gVv -gVv -xmf -myA -pZa -wec -kru -fdY -gaC -quk -iMy -nmU -quk -gaC -fdY -fdY -fdY -xIs -fdY -fdY -quk -quk -jfW -pfY -pfY -lJE -jAp -quk -quk -quk -fdY -nNt -qjr -chO -jIc -jIc -jIc -jIc -sZR -sZR -jIc -jIc -jIc -jIc -chO -qjr -ngu -xrg -wCy -ner -ner -xbH -jSb -lRb -lfG -aGf -hlt -dcl -dcl -dcl -dcl -fli -hlt -dcl -dcl -dcl -dcl -hlt -dkY -jzO -bWI -jGE -ybV -dym -jGE -hNU -piP -uFK -jTv -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(74,1,1) = {" -cgS -xIt -uGF -uGF -ewO -uGF -uGF -dmt -mJj -fXJ -eqE -hNx -pfm -nyC -iOZ -iqm -iqm -iqm -iqm -iqm -iqm -iqm -iqm -iqm -iqm -iqm -iqm -oZF -pfm -iqm -pzm -kDZ -fXJ -nyC -elo -nyC -pfm -kDZ -nyC -nyC -ubb -ubb -tJs -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uew -uew -vaE -vQm -vPO -vPO -kNF -kNF -kNF -kNF -noe -vPO -vPO -vPO -aRC -mqb -vPO -vPO -euw -hDu -hDu -hDu -hDu -hDu -pqa -noe -kNF -kNF -kNF -noe -djI -scv -tzc -vaE -uew -uew -kDS -wtN -wtN -wtN -wtN -wtN -wtN -wtN -vlZ -xaV -knI -uew -vQm -dEF -bna -nGK -skG -njh -opk -tCw -uJj -iNf -njh -xie -ruv -ruv -tCc -hoS -vaN -vaN -xWQ -shp -vaN -gVv -gVv -gVv -gVv -gVv -gVv -gVv -vaN -vaN -vaN -vaN -lST -gHP -mrb -uhx -iuJ -xLr -oGN -hLv -bPx -hLv -hLv -oGN -xLr -iuJ -iuJ -iuJ -usH -eMx -xLr -xLr -hOB -xLr -xLr -xLr -xLr -hOB -xLr -xLr -xLr -qHZ -jTv -glh -gpR -gpR -gpR -gpR -jTv -jTv -gpR -gpR -gpR -gpR -uCp -jTv -vUJ -piP -uvE -ner -ner -hnn -tqM -dpl -jbg -jTv -glh -gpR -gpR -gpR -rMh -lMU -lMU -rMh -gpR -gpR -gpR -uCp -jTv -rSG -qky -wCy -ybV -ybV -jGE -hNU -piP -lMU -jTv -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(75,1,1) = {" -cgS -xIt -uGF -uGF -qzH -uGF -uGF -pfm -elo -pfm -gAr -nyC -iqm -pfm -iPn -eqT -iqm -kUo -iqm -lRq -lMM -lMM -mli -iqm -kUo -iqm -eqT -pbF -nyC -nyC -kDZ -nyC -pfm -elo -nyC -pfm -nyC -pfm -nyC -lEI -pxr -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uew -uew -uew -vaE -wAW -uXX -wtT -uXX -uXX -uXX -uXX -cXD -ieD -hCr -asK -gnO -sKa -cMf -oIK -euw -hDu -hDu -hDu -hDu -hDu -bjt -sir -uXX -uXX -uXX -uXX -uXX -bhU -eue -vaE -uew -uew -kDS -wtN -iyN -iyN -iyN -reb -iyN -gXI -gXI -llO -knI -uew -vQm -rdf -pzR -dFu -aUe -nBD -vVY -kON -uJj -uJj -abH -gny -ruv -ruv -tCc -uhx -vaN -vaN -xYQ -vaN -vaN -sIU -wGF -wGF -wGF -wGF -wGF -wGF -wGF -eLD -vaN -vaN -vaN -gVv -hGC -iuJ -iuJ -iuJ -hgb -hgb -umE -cxq -hgb -hgb -iuJ -iuJ -bkX -iuJ -iuJ -iuJ -aLs -aLs -iuJ -aLs -aLs -aLs -aLs -iuJ -aLs -aLs -iuJ -iuJ -vJl -vJl -cYV -cYV -cYV -cYV -vJl -vJl -cYV -cYV -cYV -cYV -vJl -jTv -pMg -piP -oeh -cJX -bUL -vdY -lEJ -oiB -jTv -vJl -vJl -cYV -cYV -cYV -fsy -dLh -bsm -fsy -cYV -cYV -cYV -vJl -jTv -imm -piP -oeh -wCy -jGE -hNU -piP -imm -jTv -jTv -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(76,1,1) = {" -cgS -xIt -uGF -uGF -qzH -uGF -uGF -nyC -dqw -gaR -elo -nyC -iqm -pfm -iPn -eqT -vQe -lby -vQe -lVD -hNx -vRt -hNx -vQe -eqT -vQe -eqT -pbF -nyC -iqm -pfm -elo -nyC -nyC -pfm -iqm -iqm -pfm -nyC -xIt -xIt -pxr -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uew -uew -uew -uew -vuR -uew -uew -uew -tzc -tzc -bPS -tzc -vQm -ieD -ikH -jvV -vNA -sKa -nNT -cFS -euw -hDu -hDu -hDu -hDu -hDu -bjt -scv -tzc -uew -uew -uew -tzc -tzc -uew -vaE -uew -uew -kDS -wtN -oCk -nGK -nGK -nGK -oCk -nGK -nGK -wtN -knI -iiB -vQm -mnU -nGK -nGK -lTj -hLw -uJj -adF -ggO -uJj -hLw -gny -ruv -jHl -ycD -uhx -vaN -vaN -sAH -vaN -vaN -bbT -lAA -lAA -lAA -lAA -lAA -lAA -lAA -uSj -vaN -vaN -vaN -gVv -hGC -iuJ -iuJ -gIU -fdY -gaC -jRF -hLv -hLv -oGN -pSM -iuJ -uhx -uhx -iuJ -iuJ -iuJ -iuJ -iuJ -iuJ -mbR -iuJ -iuJ -iuJ -iuJ -iuJ -iuJ -iuJ -noN -neI -neI -neI -neI -neI -neI -neI -neI -neI -neI -neI -noN -jTv -jTv -bdC -xow -lEm -hNU -piP -bCz -jTv -jTv -noN -neI -neI -neI -neI -mpj -faA -faA -mbz -neI -neI -neI -noN -jTv -jTv -imm -piP -lEm -hNU -piP -imm -jTv -jTv -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(77,1,1) = {" -cgS -xIt -uGF -uGF -qzH -bMh -nyC -dqw -pfm -mJj -bVQ -hYa -iqm -loy -iPn -jKV -jKV -jKW -lAB -jKW -jKV -mQj -jKV -cxU -jKW -otr -jKW -pbF -icv -iqm -rXv -pfm -elo -pfm -iqm -iqm -qih -pfm -icv -iqm -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uew -uew -uew -uew -uew -vaE -uew -uew -uew -uew -tzc -eue -tzc -vQm -ieD -igF -asK -gnO -sKa -cMf -oIK -euw -igb -hDu -hDu -hDu -dzD -bjt -scv -iiB -sBI -xKz -xKz -xKz -xKz -fZe -vuR -uew -uew -kDS -dCR -tHH -iyN -iyN -iyN -tHH -iyN -iyN -wtN -knI -uew -vQm -mnU -bYr -nGK -kjd -njh -nji -tCw -uJj -nji -njh -adr -ruv -ruv -ycD -uhx -vaN -vaN -xYQ -vaN -gVv -gZo -lAA -wPI -kVA -uAZ -xcn -pYW -lAA -uSj -vaN -vaN -vaN -gHP -hGC -uhx -iuJ -mNt -oGN -oGN -fkH -oGN -oGN -cTo -pSM -iuJ -iuJ -uhx -uhx -iuJ -uhx -uhx -iuJ -uhx -uhx -uhx -uhx -iuJ -noN -noN -iuJ -cxg -pNe -dvV -dvV -dvV -vky -dvV -dvV -dvV -dvV -dvV -vky -dvV -tGe -noN -jTv -fvh -xyN -roG -fZw -tCp -tKP -uak -cxg -pNe -trn -sdU -sdU -sdU -sdU -trn -sdU -sdU -vky -vky -dvV -tGe -cxg -jTv -jTv -iby -bPq -piP -xzQ -jTv -jTv -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(78,1,1) = {" -cgS -xIt -uGF -uGF -qzH -bVM -pfm -kDZ -eoI -xIt -eqE -pfm -hNx -pfm -iOZ -jKW -jKW -jKW -jKV -lXy -jKW -ndP -jKW -jKW -jKV -jKW -jKW -oXj -nyC -iqm -pfm -pfm -pLW -pfm -pXd -qes -qkR -nyC -pfm -nyC -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uew -uew -uew -vaE -uew -uew -uew -uew -tzc -eue -eue -vQm -gut -vPO -vPO -aRC -czO -vPO -vPO -noe -aob -rNw -rNw -rNw -aob -djI -scv -uew -kDS -wtN -wtN -wtN -wtN -knI -vaE -uew -uew -kDS -wtN -wtN -wtN -wtN -wtN -dCR -wtN -wtN -wtN -knI -uew -vQm -mnU -nGK -tVK -nGK -xsN -njh -rRg -jEw -njh -pyk -ruv -ruv -ruv -ycD -uhx -vaN -vaN -kab -gVv -gVv -gZo -lAA -gvg -xST -oTy -bIi -iyQ -owm -tjU -vaN -shp -vaN -gVv -xPk -uhx -iuJ -iuJ -dNS -pEN -tUU -tUU -bRr -rmK -iuJ -iuJ -uhx -rzM -rzM -rzM -rzM -rzM -rzM -ihu -rzM -rzM -rzM -krK -neI -neI -neI -pNe -vky -vky -vky -vky -vky -vky -vky -vky -vky -vky -vky -vky -dvV -tGe -noN -oJi -jTv -fav -xnU -jTv -sPN -noN -pNe -sdU -sdU -sdU -sdU -sdU -sdU -sdU -sdU -sdU -vky -vky -dvV -dvV -tGe -noN -jTv -wTr -qQH -wTr -wTr -jTv -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(79,1,1) = {" -cgS -xIt -uGF -uGF -fZP -bVQ -pfm -nyC -xIt -xIt -bdt -kDZ -nyC -nyC -jaz -eqT -vFl -lby -vFl -mdA -vRt -mdA -vRt -vMo -ogw -vMo -ogl -pbF -kDZ -iqm -pfm -pfm -pLW -pLW -pXd -qhP -qkR -pfm -nyC -nyC -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uew -uew -uew -vaE -uew -uew -uew -uew -uew -tzc -tzc -crx -cXD -xTc -kgP -rwW -tWd -kgP -flB -sir -uXX -uXX -uXX -uXX -uXX -uXX -bhU -iiB -kDS -wtN -nsn -iyN -wtN -knI -vaE -uew -uew -eRR -irJ -irJ -irJ -irJ -irJ -irJ -irJ -irJ -irJ -pEg -uew -vQm -mnU -nGK -nGK -nGK -qFS -aVM -tCw -uJj -aVM -fOW -ruv -ruv -ruv -ycD -uhx -vaN -vaN -vaN -gVv -gHP -gZo -lAA -xQV -iyQ -niS -iyQ -mzH -lAA -uSj -vaN -vaN -vaN -gVv -aeE -ndh -bkX -iuJ -iuJ -irN -iuJ -iuJ -hgb -iuJ -iuJ -uhx -fda -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -krK -sdU -sdU -sdU -vky -vky -vky -vky -sdU -sdU -sdU -sdU -sdU -vky -vky -vky -vky -dvV -vky -nIN -eqR -gpR -ibV -som -gpR -nkO -ced -sdU -sdU -bvn -kqK -goL -kqK -pIX -sdU -sdU -sdU -bka -vky -dvV -dvV -dvV -tGe -neI -neI -miT -neI -neI -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(80,1,1) = {" -cgS -xIt -uGF -uGF -qzH -xEg -pfm -xIt -xIt -xIt -nyC -nyC -nyC -nyC -iPn -eqT -iqm -kEl -iqm -mli -lMM -mli -lMM -iqm -kEl -iqm -eqT -pbF -pfm -hNx -pfm -pfm -pfm -pfm -pXd -qih -eqT -pfm -nyC -nyC -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uew -uew -vaE -uew -uew -uew -uew -uew -tzc -eue -tzc -vQm -xTc -kgP -lWl -psl -kgP -flB -scv -uew -uew -uew -uew -uew -uew -iiB -uew -kDS -wtN -hwJ -goV -wtN -knI -vuR -uew -uew -uew -uew -uew -uew -iiB -uew -uew -uew -uew -uew -uew -iiB -vQm -mnU -nGK -qSH -nGK -qFS -aVM -tCw -uJj -aVM -fOW -ruv -ruv -ruv -ycD -ebD -bjN -aLl -vaN -vaN -gVv -gZo -lAA -oXU -bIi -oTy -bIi -iyQ -ast -uSj -vaN -vaN -vaN -gVv -aeE -gHP -ndh -uhx -iuJ -uhx -iuJ -iuJ -uhx -iuJ -uhx -fda -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -kZA -sdU -sdU -vky -vky -dvV -vky -sdU -sdU -sdU -sdU -sdU -sdU -sdU -vky -vky -vky -dvV -dvV -nIN -eqR -gpR -uvE -jGE -gpR -nkO -ced -sdU -sdU -bvn -sdU -gxa -sdU -sdU -sdU -sdU -sdU -vky -dvV -dvV -dvV -dvV -dvV -vky -hRN -wyf -sdU -sdU -sdU -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(81,1,1) = {" -cgS -uGF -uGF -uGF -qzH -uGF -pfm -pfm -xIt -rCQ -pfm -pfm -iqm -nyC -jaz -iqm -iqm -iqm -iqm -iqm -iqm -iqm -iqm -iqm -iqm -iqm -iqm -pbF -kDZ -hNx -kDZ -pfm -pfm -pfm -bVQ -pfm -eqT -kDZ -nyC -iqm -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -bcB -tzc -vaE -uew -uew -uew -uew -uew -tzc -tzc -eue -vQm -pmX -oKw -gku -fUc -oKw -smj -scv -uew -uew -esd -uew -uew -uew -uew -uew -kDS -wtN -eLH -aGI -wtN -knI -vaE -uew -uew -uew -gwI -sSY -sSY -sSY -sSY -sSY -sSY -scR -uew -uew -uew -vQm -mnU -nGK -nGK -nGK -qFS -piD -tCw -uJj -aVM -fOW -ruv -ruv -ruv -ycD -hoS -vaN -vaN -vaN -vaN -vaN -gZo -jwX -mSq -iyQ -psp -iyQ -bIi -ast -uSj -vaN -vaN -vaN -gVv -aeE -gVv -gVv -ndh -fqQ -ker -rzM -rzM -rzM -rzM -fda -vaN -vaN -vaN -vSd -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -qnR -sdU -sdU -vky -dvV -dvV -vky -trn -sdU -sdU -sdU -sdU -sdU -sdU -trn -vky -vky -vky -dvV -aAO -eqR -gpR -uvE -jGE -gpR -nkO -ced -sdU -sdU -sdU -pIX -sdU -sdU -sdU -sdU -sdU -vky -vky -dvV -wOW -lfd -lfd -wsz -vky -kJT -sdU -sdU -sdU -rIi -rIi -rIi -dvV -dvV -dvV -rIi -rIi -rIi -rIi -nsK -"} -(82,1,1) = {" -cgS -uGF -uGF -uGF -qzH -qzH -xIt -xIt -xIt -xIt -xIt -kDZ -iqm -nyC -jaU -eqT -iqm -kUo -iqm -mli -lMM -lMM -mMd -iqm -kUo -iqm -eqT -pbF -pfm -iqm -pfm -pfm -pfm -pfm -pfm -pfm -pfm -pfm -icv -iqm -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -bcB -eZJ -nwP -pnI -nwP -nwP -nwP -jSq -nwP -ujh -dpw -xTc -kgP -lWl -psl -kgP -flB -sYg -nwP -nwP -nwP -nwP -nwP -jqL -nwP -nwP -vdC -xpN -awU -awU -xpN -cuS -wGX -nwP -nwP -aKo -mBa -haP -uFu -haP -haP -haP -haP -sir -scR -uew -uew -vQm -mnU -nGK -cAE -ajP -qFS -aVM -tCw -uJj -aVM -fOW -ruv -ruv -ruv -ycD -hoS -vaN -vaN -vSd -vaN -vaN -gZo -lAA -oTW -bIi -tQO -bIi -iyQ -ast -uSj -vaN -vaN -vaN -gVv -aeE -gHP -gHP -gHP -wbH -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -shp -vaN -vaN -vaN -vaN -vaN -kZA -vky -dvV -dvV -dvV -dvV -vky -sdU -sdU -sdU -sdU -sdU -sdU -sdU -sdU -sdU -bka -vky -dvV -nIN -eqR -gpR -uvE -jGE -gpR -nkO -ced -sdU -sdU -trn -sdU -sdU -sdU -sdU -trn -vky -vky -dvV -dRe -vky -vky -vky -vky -vky -cqV -sdU -trn -sdU -rIi -rIi -vky -dvV -rIi -dvV -rIi -rIi -rIi -rIi -nsK -"} -(83,1,1) = {" -cgS -xIt -xIt -uGF -uGF -qzH -uGF -xIt -xIt -xIt -xIt -xIt -iqm -pfm -jaz -eqT -vQe -eqT -vQe -hNx -hNx -vRt -hNx -oXa -eqT -vQe -eqT -pbF -nyC -iqm -pHo -pfm -pfm -pfm -pXd -qhP -pfm -nyC -nyC -iqm -xIt -xIt -xIt -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tJs -ubb -bcB -cOZ -cRF -cVg -nwP -nwP -nwP -nwP -nwP -ujh -dpw -xTc -kgP -mUW -iYg -kgP -flB -wtG -iBv -nwP -nwP -nwP -nwP -nwP -nwP -nwP -vdC -xpN -awU -oab -xpN -cuS -wGX -nwP -nwP -dpw -haP -haP -asR -gnM -sUi -gHg -haP -haP -sir -sSY -sSY -sir -mnU -mET -ajP -ajP -xsN -aVM -lVd -nji -aVM -pyk -nCJ -ruv -jHl -ycD -uhx -bZn -bZn -sqm -vSd -vaN -gZo -lAA -iyb -guC -bIi -rNr -rhS -lAA -tjU -vaN -vaN -gVv -xmk -aeE -gVv -gHP -kds -sKr -gVv -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -vaN -krK -vky -dvV -dvV -dvV -dvV -vky -bka -sdU -sdU -sdU -sdU -gxa -sdU -sdU -sdU -vky -vky -dvV -nIN -oJi -gpR -bNZ -lMU -jTv -sPN -ced -sdU -sdU -sdU -sdU -bYC -bYC -bYC -bYC -vky -dvV -vky -dvV -dvV -vky -vky -sdU -sdU -gXM -sdU -sdU -sdU -sdU -vky -vky -dvV -rIi -dvV -dvV -rIi -rIi -rIi -nsK -"} -(84,1,1) = {" -cgS -xIt -xIt -uGF -uGF -qzH -uGF -uGF -xIt -xIt -xIt -icv -iqm -rXv -jcs -jMk -jMk -jMk -jMk -jMk -jMk -ngh -jMk -jMk -jMk -jMk -jMk -pdD -hYa -iqm -gDd -pfm -pfm -pfm -iqm -iqm -nyC -pfm -iqm -iqm -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -bcB -bBz -bBz -eZJ -ujh -nwP -aKo -mXF -mXF -mXF -xmh -lkU -txH -jly -rYO -txH -txH -txH -mBa -mXF -mXF -iBv -nwP -nwP -nwP -nwP -vdC -xtM -awU -aoE -xpN -cuS -wGX -nwP -aKo -wtG -haP -nwc -xwy -owG -cRH -ndi -kkG -haP -haP -haP -bpg -twk -haP -haP -haP -haP -iVD -iVD -mzM -fEb -iVD -iVD -tcn -tcn -qnk -nFy -qna -tcn -bJC -sdZ -sqm -vaN -gZo -lAA -ast -lAA -ast -lAA -ast -lAA -uSj -gVv -gVv -gHP -tix -ouq -ebS -kcY -ebS -sKj -ebS -ebS -ebS -ebS -ebS -ebS -ebS -ebS -fmm -bZn -bZn -bZn -bZn -bZn -bZn -bZn -bZn -bZn -iuu -tBB -tBB -tBB -tBB -tBB -xUp -vky -vky -sdU -sdU -sdU -sdU -sdU -sdU -sdU -vky -vky -dvV -nIN -oJi -jTv -obp -uFK -jTv -sPN -ced -sdU -sdU -sdU -bYC -bYC -cyw -utz -bYC -bYC -dvV -vky -dvV -lqf -tBB -tBB -tBB -tBB -cKJ -tBB -tBB -tBB -tBB -vky -vky -dvV -rIi -rIi -dvV -rIi -rIi -rIi -nsK -"} -(85,1,1) = {" -cgS -xIt -xIt -uGF -vwm -ewO -uGF -uGF -xIt -xIt -xIt -nyC -iqm -pfm -nyC -nyC -pfm -rCQ -nyC -nyC -pfm -pNV -peR -muV -muV -muV -muV -peR -muV -igB -igB -igB -igB -igB -igB -iqm -nyC -pfm -iqm -ubb -tJs -ubb -ubb -ubb -ubb -tJs -ubb -ubb -ubb -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -bcB -bBz -eZJ -ujh -ujh -dpw -txH -txH -txH -txH -txH -hBX -oaG -eGO -qSJ -txH -txH -txH -txH -txH -sYg -nwP -nwP -trM -nwP -vdC -hDO -awU -awU -xpN -cuS -wGX -nwP -dpw -haP -haP -xfT -njW -qWU -qWU -qWU -nwc -haP -haP -dbp -oWl -kOP -vzc -jjj -jjj -haP -uvW -rsL -iAV -tpQ -rsL -bNL -iVD -iVD -tWB -nST -nST -dVy -iVD -bJC -hoS -gVv -hUy -sAO -sAO -sAO -sAO -sAO -sAO -sAO -eHT -gVv -gHP -tix -uhx -sOb -sOb -uhx -uhx -sOb -sOb -noN -noN -sOb -sOb -noN -noN -sOb -lPQ -lTQ -lTQ -sOb -uhx -uhx -sOb -sOb -uhx -uhx -sOb -sOb -noN -noN -sOb -sOb -noN -xUp -vky -vky -sdU -sdU -sdU -sdU -sdU -sdU -vky -vky -dvV -nIN -eqR -gpR -uvE -jGE -gpR -nkO -ced -sdU -sdU -sdU -bYC -oYd -wjf -wjf -utz -bYC -dvV -vky -lqf -noN -pPX -pPX -pPX -nNn -xTA -nNn -pPX -pPX -pPX -pPX -rIi -dvV -dvV -dvV -dvV -dvV -rIi -rIi -nsK -"} -(86,1,1) = {" -cgS -xIt -xIt -uGF -uGF -qzH -uGF -uGF -uGF -xIt -nyC -gZd -iqm -pfm -kDZ -uIz -nyC -pfm -eqE -rCQ -whv -nyC -nBG -qlT -qlT -pNV -pNV -qlT -lEp -pNV -pNV -lEp -pNV -pNV -nEw -pfm -kDZ -nyC -qoT -nyC -ubb -ubb -tPt -tPt -tPt -tPt -tPt -tPt -tPt -ubb -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -bcB -ujh -rsm -ujh -nwP -dpw -txH -uSU -mlZ -ezx -wcg -sCQ -wSg -wJx -mlZ -txH -dzN -pFs -ntd -txH -sYg -nwP -nwP -nwP -nwP -vdC -hMy -xpN -xpN -xpN -cuS -wGX -aKo -wtG -haP -haP -haP -fMY -haP -qWi -qWi -haP -haP -oRP -khd -mGX -lhA -aet -atY -pgO -haP -qzW -tpQ -nwh -tpQ -tpQ -oYC -iVD -jNe -fRn -kjs -dgI -rsL -rsL -fLi -hoS -gHP -gVv -vaN -vaN -vaN -vaN -vaN -vaN -gVv -gVv -gHP -tix -uhx -sOb -sOb -sOb -kra -kfd -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -qbN -nIU -nIU -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -noN -xUp -dvV -vky -vky -sdU -sdU -sdU -sdU -sdU -vky -vky -nIN -eqR -gpR -uvE -jGE -gpR -nkO -ced -sdU -sdU -sdU -ixx -wjf -wjf -wjf -uWj -bYC -dvV -bLJ -nIN -pPX -pPX -phP -pPX -kci -jSP -kci -pPX -ikZ -iiQ -pPX -pPX -dvV -rIi -rIi -rNG -dvV -vky -rIi -nsK -"} -(87,1,1) = {" -cgS -xIt -xIt -uGF -uGF -ewO -uGF -uGF -eqE -pfm -nyC -nyC -iqm -iqm -iqm -iqm -iqm -hNx -hNx -iqm -iqm -iqm -nEw -iqm -vRt -hNx -iqm -iqm -iqm -iqm -pfm -pfm -nyC -nyC -nEw -pNV -qlT -qmz -qvJ -tPt -gpF -tPt -tPt -xIt -xIt -tJs -ubb -ubb -tPt -pds -tPt -tPt -tPt -tPt -tPt -tPt -tPt -tPt -eRN -eVp -fpP -fIl -nwP -dpw -txH -saH -mlZ -suP -aOl -oqy -pPq -pEl -mlZ -tNH -eMq -kOf -hkD -uoP -sYg -nwP -nwP -nwP -nwP -rMl -wmO -wmO -wmO -wmO -tej -wGX -dpw -haP -haP -aQN -bLh -mGt -nwc -nwc -qWU -flF -haP -haP -dbp -dbp -nyZ -tRD -bTj -bTj -haP -bCa -tpQ -evg -hwh -tpQ -spk -iVD -jNe -tpQ -tpQ -tpQ -uhW -wXG -hlu -hoS -gHP -gVv -vaN -vaN -oEw -vaN -vaN -vaN -vaN -gVv -tix -uhx -sOb -sOb -bIF -ntc -nIU -nIU -nIU -cBP -oVG -tUr -xFH -iDF -pJR -var -sOb -qbN -nIU -nIU -sOb -qLx -oFE -qQP -nIU -qLx -qLx -nIU -oVG -qLx -sDk -nIU -nIU -sOb -sOb -noN -xUp -dvV -vky -vky -sdU -trn -sdU -sdU -sdU -vky -aAO -eqR -gpR -uvE -jGE -gpR -nkO -ced -sdU -eLd -sdU -qMo -wjf -wjf -wjf -lHB -bYC -dvV -vky -nIN -pPX -onR -xEZ -tXa -kci -mqw -kci -tXa -hil -xEZ -gPp -pPX -pPX -pPX -pPX -pPX -dvV -dvV -rIi -nsK -"} -(88,1,1) = {" -cgS -xIt -xIt -uGF -uGF -qzH -uGF -nyC -pfm -nyC -pfm -nyC -iqm -ihZ -nyC -vih -pfm -lcg -pfm -pfm -mgH -nyC -nEw -iqm -pNV -pfm -pfm -nyC -nyC -pfm -pfm -pfm -pfm -pfm -mKk -nyC -pfm -hNx -qxq -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -ubb -ubb -ubb -tJs -ubb -ubb -ubb -ubb -tJs -ubb -ubb -ubb -ujh -izf -eVp -aKo -wtG -txH -orM -iSB -wJx -wJx -jwG -pPq -jwG -mlZ -txH -pPz -mYH -ojo -txH -wtG -iBv -nwP -pnI -nwP -nwP -nwP -nwP -nwP -nwP -nwP -iJc -dpw -haP -yid -nwc -qWU -kEQ -qWU -qWU -qWU -nwc -haP -haP -fhI -haP -ghM -haP -fhI -haP -haP -iTi -tpQ -evg -hwh -tpQ -rbU -iVD -fRn -tpQ -tpQ -cgn -tpQ -tAH -jVI -hoS -gVv -vaN -vaN -vaN -vaN -vaN -vaN -qwT -vaN -gVv -cZq -sOb -sOb -gxL -nIU -qbN -iFn -nIU -kfd -nIU -rdU -bYp -dIL -dJt -eoh -haY -sOb -qbN -nIU -nIU -sOb -qLx -gPD -qbN -nIU -oFE -sDk -nIU -rdU -qLx -qLx -nIU -nIU -nIU -sOb -sOb -ced -dvV -vky -sdU -sdU -sdU -sdU -sdU -sdU -vky -nIN -eqR -gpR -uvE -jGE -gpR -nkO -ced -sdU -sdU -ptV -bYC -bSY -wjf -wjf -jvz -bYC -pwn -vky -nIN -pPX -uuO -xEZ -tXa -kci -mqw -kci -tXa -bGB -xEZ -xNQ -pPX -dzB -aZw -dzB -pPX -vky -vky -rIi -nsK -"} -(89,1,1) = {" -cgS -xIt -xIt -xEg -uGF -qzH -nyC -nyC -eqT -eqT -pfm -gZy -iqm -ijG -elo -nyC -nyC -pfm -elo -rCQ -pfm -elo -nEw -iqm -dUn -pfm -pfm -pfm -elo -pfm -nyC -pfm -pfm -pfm -muV -pfm -nyC -lEI -qxq -nyC -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -bcB -ujh -rsm -fIl -dpw -txH -oER -llH -mlZ -uke -uke -wkX -vJT -dbM -mlZ -txH -txH -txH -bBU -txH -txH -sYg -nwP -nwP -nwP -nwP -nwP -trM -nwP -nwP -nwP -wGX -dpw -haP -eNH -nnZ -ydo -mGX -vXW -cGW -qWU -nwc -haP -eNH -nwc -gQE -uZl -nwc -qWU -une -haP -fuv -tpQ -evg -hwh -tpQ -rsL -iVD -fuv -uhW -msa -rGr -kgE -bRK -nWs -hoS -gHP -vaN -vaN -vaN -acc -gVv -gVv -xIC -vaN -lST -cZq -sOb -gxL -nIU -nIU -tQT -mlK -mlK -mlK -hdo -pIp -qRH -kTi -nIU -nIU -haY -sOb -taZ -nIU -qOv -sOb -qLx -qLx -qbN -nIU -gPD -qLx -nIU -nIU -qLx -qLx -pKR -nIU -nIU -nIU -sOb -ced -vky -bka -sdU -sdU -sdU -sdU -sdU -sdU -vky -nIN -eqR -gpR -uvE -jGE -gpR -nkO -ced -sdU -sdU -sdU -bYC -bYC -qUH -cyw -bYC -bYC -jOU -tMM -nIN -pPX -vJY -xEZ -pPX -kci -mqw -kci -pPX -qGP -xEZ -mLE -ggk -dzB -dzB -dzB -ggk -vky -dvV -rIi -nsK -"} -(90,1,1) = {" -cgS -xIt -uGF -uGF -uGF -qzH -pfm -pfm -kDZ -eqT -nyC -pfm -pfm -kDZ -jqF -jNs -pNV -jkr -lEp -pNV -mAk -pNV -nFV -iqm -rXv -elo -pfm -elo -kDZ -bVQ -pfm -kDZ -nyC -pfm -muV -nyC -nyC -hNx -qoT -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -ubb -ubb -bcB -bBz -eZJ -fIl -omJ -txH -lMj -mlZ -wUJ -suP -aOl -oqy -pPq -wJx -mlZ -lMj -txH -gss -qeL -fAV -txH -nSX -nwP -nwP -hhP -fOF -fOF -wbG -xrA -wbG -mxZ -wGX -dpw -haP -eNH -qWU -qWU -aiH -qWU -dVu -vXW -owG -stU -owG -vXW -fzB -wbP -qWU -qWU -nwc -vqd -eBZ -oWn -uQL -tpQ -tpQ -ndG -iVD -itl -fCJ -eXm -tpQ -tpQ -wXG -nWs -hHY -gVv -vaN -vSd -gVv -gHP -gVv -vaN -wkK -vaN -vfw -cZq -sOb -lBy -nIU -nIU -pKR -wWA -nIU -noF -nIU -qbN -nIU -nIU -nIU -nIU -nIU -sOb -eMH -jFW -jFW -lpr -nIU -nIU -qbN -nIU -nIU -nIU -nIU -nIU -nIU -nIU -nIU -nIU -nIU -nIU -sOb -ced -vky -vky -sdU -sdU -sdU -sdU -sdU -sdU -vky -nIN -eqR -gpR -uvE -jGE -gpR -nkO -ced -sdU -sdU -sdU -sdU -bYC -bYC -bYC -bYC -szf -dvV -vky -nIN -pPX -itG -kda -rQS -kky -eJp -vWS -xUK -kpl -pQC -aXn -tku -ucg -rNA -dzB -pPX -vky -vky -rIi -nsK -"} -(91,1,1) = {" -cgS -xIt -uGF -uGF -uGF -qzH -csL -dEZ -pfm -eqT -pfm -pfm -hOM -nyC -siX -jQd -jQd -lnz -jQd -jQd -jQd -nkH -mKk -iqm -pfm -pfm -elo -pfm -pfm -nyC -pfm -nyC -nyC -nyC -muV -pfm -nyC -nyC -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -ubb -bcB -bBz -eZJ -eVp -oUq -jzP -cuz -wJx -wJx -jwG -mHV -bvX -tfZ -jwG -wfm -mlZ -jzP -eMq -pRv -ugQ -oKr -lqV -gMe -gMe -xgS -neF -oqV -ffK -qcg -qcg -jYs -gkW -dpw -haP -eNH -pjk -lhF -haP -wiG -wcB -qWU -fzg -haP -une -une -mfj -une -une -ryK -vzc -haP -bVu -tpQ -kJy -tpQ -tpQ -qjM -tmm -czE -nHW -cgn -hcR -tpQ -dVZ -fLi -hoS -gVv -vaN -vaN -gVv -gVv -vaN -vaN -xIC -vaN -gVv -cZq -sOb -sOb -var -nIU -qUD -eGo -jqP -nIU -nIU -xFZ -nIU -nIU -nIU -nIU -nIU -hqY -ovu -qac -iXP -wKr -nIU -nIU -qbN -nIU -nIU -jqP -nIU -nIU -nIU -nIU -nIU -nIU -nIU -sOb -sOb -ced -vky -cHP -tNS -thu -sdU -sdU -sdU -sdU -vky -nIN -oJi -jTv -bNZ -uFK -jTv -sPN -ced -sdU -sdU -sdU -sdU -sdU -kFU -kdO -vky -dvV -vky -vky -nIN -pPX -itG -jSP -pPX -kci -iLM -kci -pPX -pPX -pPX -iwn -pPX -dzB -iDX -dzB -pPX -rIi -rIi -rIi -nsK -"} -(92,1,1) = {" -cgS -xIt -xIt -uGF -uGF -qzH -cwT -pNV -pNV -ogl -ogl -ogl -ogl -pNV -tqh -rCQ -krB -rCQ -nyC -mmD -rCQ -nnL -nJe -hNx -pfm -elo -pfm -pfm -pfm -iqm -iqm -iqm -iqm -pVA -igB -iqm -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tJs -ubb -ubb -ubb -ubb -tJs -ubb -xIt -xIt -xIt -xIt -xIt -xIt -ubb -bcB -ujh -izf -vJy -uGn -ocn -qHD -ldv -duV -anL -kVQ -jcZ -neY -pjv -sIt -oQz -bDW -gcl -xEw -fAV -iVU -qwd -nwP -pnI -vdC -xEe -yhr -awU -awU -xpN -cuS -nwP -dpw -haP -haP -haP -haP -haP -jmQ -ruV -qWU -adN -haP -haP -haP -haP -haP -haP -haP -haP -haP -iVD -eLc -ajc -tpQ -hcR -qjM -gfh -rMS -tpQ -nHW -uhW -nVU -rsL -fLi -hoS -gVv -cIx -yjV -mSD -yjV -mSD -yjV -ycN -vaN -gVv -ndh -uhx -sOb -sOb -nIU -sYC -wRq -nIU -rkr -jhw -xQU -oyM -mlK -mlK -mlK -mlK -lkC -fur -ikA -vxO -tVl -mlK -mlK -wsw -mlK -oyM -mlK -mlK -mlK -mlK -oyM -mlK -vxs -sOb -sOb -noN -pNe -vky -pgX -tWP -tSO -sdU -sdU -sdU -vky -vky -nIN -oJi -jTv -obp -lMU -jTv -sPN -ced -sdU -sdU -trn -sdU -sdU -sdU -vky -vky -dvV -dvV -vky -aAO -ggk -sxS -rlU -tXa -kci -mqw -kci -tXa -lXT -xEZ -xEZ -pPX -aZw -iDX -dzB -pPX -rIi -rIi -rIi -nsK -"} -(93,1,1) = {" -cgS -xIt -uGF -uGF -uGF -uGF -uGF -dHk -pfm -eqT -pfm -pfm -nyC -dHk -jaz -nyC -nyC -rCQ -lEZ -rCQ -rCQ -ntU -oya -nyC -pfm -pfm -pfm -pfm -kDZ -pfm -nyC -iqm -pfm -nyC -igB -iqm -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ujh -rsm -ujh -bUe -txH -tqo -eiQ -moW -rZS -mlZ -hhg -oQz -oQz -dlB -bjT -txH -sow -cOj -ntd -txH -tmg -nwP -ujh -vdC -gzM -awU -rip -awU -boI -cuS -nwP -dpw -haP -haP -haP -haP -haP -jmQ -eUn -qWU -adN -haP -oeR -nwc -nwc -rio -qvC -eol -ihz -haP -rsL -tpQ -iAV -tpQ -tpQ -qjM -tmm -czE -rGr -sQv -uDa -tpQ -uwf -fLi -hoS -gVv -fxu -kcN -tJf -kcN -tJf -kcN -sXy -vaN -gVv -gHP -ndh -uhx -sOb -bJl -hZr -uFM -nIU -hZr -nIU -qbN -nIU -lnr -pdT -lCf -nIU -sOb -voF -ohZ -ohZ -lpr -nEZ -eKQ -eKQ -eKQ -eKQ -eKQ -kYj -nIU -nIU -qLx -qLx -qLx -sOb -noN -pNe -dvV -vky -rMZ -oGt -unu -sdU -sdU -vky -vky -vky -nIN -eqR -gpR -uvE -jGE -gpR -nkO -ced -sdU -sdU -sdU -sdU -sdU -sdU -vky -vky -dvV -vky -dvV -lHK -pPX -ovj -fgn -tXa -kci -mqw -kci -tXa -mTy -xEZ -rAJ -pPX -dzB -iDX -dzB -pPX -rIi -rIi -rIi -nsK -"} -(94,1,1) = {" -cgS -xIt -uGF -uGF -uGF -xEg -uGF -uGF -kDZ -eqT -pfm -bVQ -pfm -ipx -jrq -jUt -kwJ -lnC -jUt -jUt -jUt -ntU -mKk -hNx -pfm -bVQ -elo -nyC -pfm -pfm -pfm -iqm -pfm -pfm -igB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ujh -rsm -ujh -dpw -txH -txH -txH -txH -txH -txH -txH -txH -iVU -lgi -txH -ugJ -ugJ -ugJ -ugJ -txH -sYg -nwP -bBz -vdC -pSd -wPQ -rip -gFi -xpN -cuS -nwP -dpw -haP -djy -kzQ -kEc -haP -jmQ -kEQ -qWU -nTd -haP -sru -qOg -qWU -qWU -hTl -uIh -nwc -qOq -rsL -tpQ -iAV -tpQ -tpQ -kqQ -iVD -fRn -tpQ -sQv -uDa -rGr -wXG -nWs -hoS -gVv -eFf -wNa -gvt -kcN -gvt -kcN -rIE -gVv -gVv -gVv -gHP -cZq -sOb -bcH -qLx -xNl -nIU -qLx -qLx -qbN -nIU -nIU -nIU -nIU -ugN -bKO -qbN -nIU -nIU -lpr -sJs -nEZ -eKQ -eKQ -eKQ -kYj -fpt -nIU -nIU -qLx -qLx -qLx -sOb -ced -dvV -vky -vky -sdU -sdU -sdU -sdU -vky -bka -vky -dvV -nIN -eqR -gpR -uvE -jGE -gpR -nkO -ced -sdU -sdU -sdU -sdU -okI -sdU -bka -vky -dvV -dvV -lqf -oEt -pPX -iSy -gtc -pPX -kci -jSP -kci -pPX -muT -kci -lqs -pPX -aZw -iDX -dzB -pPX -rIi -rIi -rIi -nsK -"} -(95,1,1) = {" -cgS -xIt -xIt -uGF -xEg -uGF -uGF -xIt -pfm -pfm -pfm -nyC -iqm -pfm -pfm -pfm -nyC -pfm -elo -nyC -pfm -mJj -mKk -iqm -pfm -pfm -pfm -nyC -pfm -elo -pfm -iqm -iqm -pVA -igB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -nwP -eZJ -nwP -drE -wtG -mBa -txH -txH -cuL -xCL -xCL -txH -eMq -eQH -bbI -ugJ -rNs -jLe -ugJ -wtG -vrL -nwP -pnI -vdC -xpN -awU -nTK -awU -xpN -cuS -pnI -dpw -haP -oVv -hTl -ydo -qWU -nnZ -aeS -qWU -nwc -haP -faI -kKy -qWU -ydo -qWU -qWU -nwc -qOq -rsL -tpQ -evg -hwh -tpQ -rsL -iVD -fuv -tpQ -sQv -uDa -tpQ -wXG -nWs -hoS -gHP -eFf -kcN -kcN -kcN -kcN -kcN -rIE -gHP -gVv -gHP -vaN -cZq -sOb -eVd -qLx -lhR -atx -qLx -pYJ -qbN -nIU -oVG -nIU -jhw -nIU -bKO -qbN -nIU -nIU -lpr -sJs -sJs -sOb -sOb -sOb -iuN -iuN -sOb -ohZ -ohZ -ohZ -sOb -sOb -ced -dvV -vky -sdU -sdU -sdU -sdU -vky -vky -vky -dvV -dvV -nIN -eqR -gpR -uvE -jGE -gpR -nkO -ced -sdU -sdU -sdU -sdU -sdU -sdU -vky -dvV -dvV -lqf -noN -pPX -pPX -pPX -pPX -pPX -nNn -xTA -nNn -pPX -pPX -pPX -pPX -pPX -pPX -qzL -rFv -pPX -rIi -rIi -rIi -nsK -"} -(96,1,1) = {" -cgS -xIt -xIt -xIt -uGF -uGF -xIt -xIt -xIt -eqT -pfm -nyC -iqm -eqE -elo -mJj -kDZ -nyC -eqE -pfm -elo -pfm -mKk -iqm -avl -pfm -nyC -hNx -pfm -nyC -nyC -iqm -iqm -pfm -igB -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -nwP -wGX -nwP -ujh -dpw -txH -txH -lQD -ksC -wJx -mlZ -uoP -eMq -tNN -eMq -aQm -kJL -kJL -ugJ -sYg -bBz -nwP -nwP -vdC -xQR -awU -vIq -awU -xQR -oEb -nwP -dpw -haP -eNH -aiH -qWU -oUN -wIs -uXi -vXW -owG -uEy -owG -owG -fzB -cGW -ydo -fSi -fzg -haP -iVD -jZN -miL -gns -dFb -iVD -iVD -cLn -rGr -sQv -uDa -tpQ -wXG -nWs -hoS -gVv -cYN -wBl -qQf -wBl -qQf -bjS -vfK -gHP -vaN -vaN -vaN -cZq -sOb -gcp -qLx -lPd -vCy -qLx -gPD -fWd -nIU -rdU -rME -war -uFM -sOb -dbq -mec -mec -lpr -sJs -sJs -sOb -sOb -sOb -fpt -fpt -nIU -nIU -qLx -qLx -qLx -sOb -ced -dvV -vky -vky -vky -vky -vky -dRe -dvV -dvV -dvV -vky -aAO -eqR -gpR -obp -lMU -gpR -nkO -ced -sdU -sdU -sdU -sdU -sdU -sdU -vky -vky -lqf -noN -pPX -pPX -itG -pZc -bed -kci -kci -jSP -kci -kci -uWr -aXD -aXD -pPX -qIK -ctT -pxY -pPX -pPX -rIi -rIi -nsK -"} -(97,1,1) = {" -cgS -xIt -xIt -xIt -uGF -uGF -uGF -xIt -xIt -xIt -nyC -pfm -iqm -pfm -nyC -hNx -hNx -pfm -pfm -pfm -mCj -mMd -nRL -iqm -nyC -pfm -nyC -nyC -hNx -nyC -nyC -iqm -iqm -pVA -igB -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -nwP -wGX -nwP -nwP -dpw -txH -yjU -cgL -nXE -gmM -mlZ -txH -iZq -eQH -mGn -ugJ -sxr -dOO -ugJ -sYg -ujh -nwP -nwP -vdC -kyf -awU -rip -awU -xpN -cuS -nwP -dpw -haP -eNH -qWU -qWU -xqy -wyP -kEQ -qWU -nwc -haP -yid -qWU -lzU -kEQ -qWU -qWU -nwc -qOq -rsL -mSE -oMx -jxf -jxf -rsL -iVD -aYh -tpQ -tpQ -tpQ -eXm -wXG -nWs -hHY -gVv -gVv -gHP -lST -gHP -gVv -gVv -vfw -tix -bZn -lLK -bZn -uhx -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -qCr -sOb -sOb -sOb -sTK -pJy -tQi -sOb -oao -oao -sOb -sOb -sOb -nIU -nIU -nIU -nIU -qLx -qLx -qLx -sOb -noN -tBB -tBB -tBB -xUp -dvV -dvV -dvV -dvV -vky -vky -lqf -noN -oJi -jTv -qQH -nbC -jTv -sPN -noN -xUp -sdU -sdU -sdU -sdU -vky -vky -vky -nIN -pPX -pPX -dDp -xEZ -nws -xEZ -xEZ -xEZ -kvJ -xEZ -xEZ -oAe -eaR -aXD -tXa -szX -vus -pxY -yly -pPX -rIi -rIi -nsK -"} -(98,1,1) = {" -cgS -xIt -xIt -xIt -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -nyC -iqm -xIt -xIt -xIt -xIt -vqi -vqi -igB -igB -muV -igB -muV -nMT -igB -igB -vqi -vqi -vqi -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -nwP -wGX -nwP -nwP -ujh -txH -tfn -oav -xtt -mlZ -mlZ -txH -iVU -lgi -txH -ugJ -ugJ -ugJ -ugJ -sYg -ujh -nwP -bBz -vdC -xpN -oab -rip -awU -hDe -cuS -nwP -dpw -haP -haP -kzB -azU -rCt -qWU -njW -qWU -kBE -haP -dNT -dBw -qWU -njW -qWU -dBw -pgn -qOq -jxf -jxf -vCl -jxf -tpQ -jxf -iVD -vsp -rsL -mLl -tpQ -cLn -qoN -fLi -hoS -gHP -gVv -gHP -gVv -gHP -gVv -gHP -tix -uhx -sOb -lTQ -suW -sOb -sOb -sOb -mwx -yeY -sOb -jno -pcy -iWI -sOb -jno -pcy -wfV -qyv -pJy -qKt -myJ -sXp -vGk -efo -efo -fCp -sOb -sOb -jqP -nIU -nIU -nIU -jqP -nIU -nIU -sOb -sOb -lTQ -suW -sOb -noN -xUp -vky -dvV -vky -dvV -lqf -noN -jTv -vJl -dqk -sdy -chr -blP -vJl -jTv -cxg -xUp -sdU -sdU -vky -vky -vky -sdU -nIN -pPX -itG -xEZ -xEZ -nws -tZa -tNT -aaJ -mzI -xEZ -xEZ -xEZ -eaR -aXD -tXa -lve -ctT -kmg -apR -pPX -rIi -rIi -nsK -"} -(99,1,1) = {" -cgS -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -nyC -nyC -ubb -nyC -nyC -ubb -nyC -iqm -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -tJs -ubb -ubb -tJs -ubb -ubb -ubb -tJs -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -nwP -iJc -nwP -ujh -bBz -puL -gsf -kJL -nOF -txH -txH -txH -eMq -eQH -awA -eMq -dzN -szK -wtG -vrL -ujh -nwP -ujh -vdC -xpN -aoE -aKP -awU -xLD -cuS -nwP -drE -mBa -haP -haP -guK -pVu -qWU -njW -bfU -eVy -haP -oeR -bUO -maQ -vwY -oeR -bUO -qaq -haP -jxf -kxO -mbK -fGY -jxf -xnc -iVD -iVD -vBD -aoC -imb -rXg -iVD -fLi -sdZ -bZn -bZn -bZn -bZn -bZn -bZn -bZn -uhx -sOb -sOb -kel -kel -xvD -sOb -mmP -lVs -smR -sOb -sRh -dWr -iWI -sOb -fzc -bHe -tDZ -uJf -pJy -qwH -rDu -qIJ -sXp -sGf -sGf -rFU -qfM -sOb -sOb -nIU -nIU -nIU -nIU -nIU -nIU -sOb -pae -sGf -sGf -sOb -sOb -noN -tBB -tBB -tBB -tBB -noN -jTv -jTv -soJ -xMw -lEm -tYH -piP -gKN -jTv -jTv -noN -xUp -vky -vky -dvV -vky -sdU -nIN -pPX -aqM -xEZ -xEZ -kMe -xEZ -mqw -hGc -ssT -aWU -xEZ -xEZ -sOx -iBO -pPX -wAn -tMb -xEZ -lve -pPX -rIi -rIi -nsK -"} -(100,1,1) = {" -cgS -xIt -xIt -xIt -xEg -uGF -uGF -uGF -xEg -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -ubb -pvp -ubb -ubb -tJs -iqm -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -rvq -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -nwP -wGX -jSq -ujh -bBz -puL -eMq -lcx -rzk -iBV -kxc -vJR -eMq -xVZ -jwG -wJx -kCQ -szK -sYg -nwP -nwP -nwP -nwP -vdC -xpN -awU -raz -awU -fBw -cuS -nwP -nwP -dpw -haP -haP -haP -haP -qZr -ePA -haP -haP -haP -haP -qWi -qWi -haP -qWi -qWi -haP -haP -iVD -jxf -nOJ -tZs -hWI -iVD -iVD -iVD -iVD -rgH -uQh -iVD -iVD -iVD -lqX -lqX -lqX -tcn -gme -ccO -bEG -ccO -gme -sOb -qNe -tfz -sGf -wfV -sOb -sly -qKt -lbu -sOb -jno -qKt -iWI -sOb -mKJ -qKt -ixu -sOb -sOb -qKt -rDu -sGf -rFU -sGf -qzY -rFU -sGf -wBH -sOb -sOb -pJy -pJy -pJy -pJy -sOb -sOb -uIl -sGf -sGf -jvl -sOb -jTv -dLh -dLh -dLh -jTv -jTv -jTv -eBt -piP -yke -fDi -jGE -hNU -piP -edu -jTv -jTv -ced -dvV -dvV -dvV -vky -sdU -nIN -pPX -vjI -cHg -hGT -mKd -wqK -xJa -aWU -aWU -aWU -xEZ -xEZ -oKM -mju -pPX -bwm -wTw -xEZ -fQJ -pPX -rIi -rIi -nsK -"} -(101,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -tJs -ubb -ubb -ubb -ubb -ubb -tJs -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -nwP -wGX -ujh -bBz -oEE -txH -upp -rpG -eHD -gOD -qeL -bUi -eMq -eyV -bpm -eMq -mWQ -szK -sYg -nwP -nwP -ujh -nwP -vdC -boI -xpN -xpN -wTB -wTB -cuS -nwP -nwP -qeb -haP -ixw -mym -nwc -qWU -njW -nwc -nwc -mym -nwc -nwc -nwc -mym -sgL -ajV -qPG -haP -vwV -tpQ -iAV -tpQ -tpQ -ndG -iVD -tpQ -rsL -haB -rsL -uwf -iVD -dOq -dOq -dOq -dOq -iVD -sOb -buS -gBj -nsX -nsX -sOb -ocZ -qKt -sGf -wfV -sOb -sOb -lrY -sOb -sOb -sOb -lTK -sOb -sOb -pJy -qQz -pJy -sOb -mtx -eRM -sGf -sGf -rFU -uVp -sGf -sXp -sGf -wfV -sOb -mIM -nsX -nsX -nsX -nsX -giu -sOb -tfz -sGf -sGf -sGf -sOb -glh -hNU -hNU -lMU -uCp -jTv -lMU -piP -hNU -uvE -ner -ner -jGE -hNU -piP -iYA -fsy -ced -dvV -dvV -vky -sdU -sdU -nIN -pPX -qWo -xEZ -xEZ -xEZ -mqw -fWx -vxL -vxL -vxL -oxS -xEZ -xEZ -dtc -tXa -pWu -ctT -xEZ -pxY -pPX -rIi -rIi -nsK -"} -(102,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -vwm -uGF -qTf -qTf -oHy -oHy -oHy -oHy -oHy -oHy -oHy -oHy -oHy -oHy -ubb -ubb -ubb -ubb -ubb -xIt -ubb -ubb -ubb -ubb -ubb -tJs -ubb -ubb -ubb -ubb -ubb -ubb -tJs -ubb -xIt -xIt -nwP -wGX -ujh -ujh -dpw -txH -txH -aDu -dRs -tLw -cas -gUs -bll -lyz -gid -vGp -txH -wSD -sYg -nwP -nwP -bBz -ujh -rMl -wmO -wmO -wmO -wmO -wmO -tej -nwP -nwP -oOO -bNM -nwc -nnZ -qWU -qWU -uXi -vAZ -vAZ -tnB -hBP -hBP -hBP -hBP -vAZ -vAZ -tnB -dBq -quw -dTl -hxF -sNQ -uSd -qhT -syO -ppy -rib -jac -rib -ppy -syO -ppy -rib -rib -rib -ppy -pcM -frg -frg -frg -pWq -gqU -kvz -nZO -oaK -oaK -gqU -oaK -vst -oaK -cbT -nvP -vst -oaK -cbT -oaK -vst -oaK -oaK -kzY -nZO -oaK -oaK -oaK -dPy -oaK -jSf -oaK -oaK -gqU -kxZ -frg -frg -frg -frg -kxZ -gqU -vst -oaK -oaK -oaK -gqU -uEh -dcl -dcl -dcl -hlt -whj -uYN -lRb -uEh -hxT -ner -ner -jGE -hNU -piP -gIP -fsy -ced -dvV -vky -sdU -sdU -lqf -noN -pPX -gma -xEZ -xEZ -xEZ -wCN -evL -vxL -vxL -shA -shA -wVF -aWU -aXD -tXa -hSO -wTw -xEZ -pxY -pPX -rIi -rIi -nsK -"} -(103,1,1) = {" -cgS -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -owj -uGF -uGF -kST -ubb -ubb -ubb -ubb -ubb -ubb -ubb -oHy -ubb -ubb -ubb -ubb -xIt -xIt -xIt -ubb -ubb -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -nwP -eZJ -bBz -ujh -drE -rnh -txH -txH -uoS -hqS -xsf -vJR -eMq -xCF -eMq -txH -wSD -bCC -vrL -nwP -ujh -pYO -pJX -rMe -rMe -jan -jan -kZs -nwP -nwP -pnI -nwP -kMG -bNM -nwc -qWU -ydo -ydo -kEQ -lAh -qWU -qWU -ydo -qWU -qrj -qWU -fSi -qfU -qWU -sPO -oAR -tpQ -sjj -hwh -tpQ -qjM -tNA -mAo -hwh -hBf -sRx -rsL -tNA -rsL -hwh -hwh -hwh -rdk -wfV -rDu -rDu -rDu -wfV -lTQ -jtq -oHl -sGf -sGf -lTQ -hto -uWL -rDu -wNA -qKt -uWL -sGf -sXp -sGf -bHO -qHf -sGf -sGf -oHl -sGf -uPa -sGf -uWL -sGf -sGf -sXp -sGf -lTQ -euE -rDu -rDu -bHO -rDu -euE -lTQ -sGf -sGf -sGf -sGf -lTQ -hNU -jGE -iNC -jGE -lMU -dLh -piP -ecf -tYH -eAQ -ner -ner -jGE -ybM -piP -gdN -fsy -gaA -vky -vky -sdU -sdU -nIN -pPX -pPX -wtB -xEZ -xEZ -kHD -tJa -nZo -qmp -qmp -jQO -nNn -uMu -vhT -qmp -qmp -tbe -ctT -cyB -pxY -pPX -rIi -rIi -nsK -"} -(104,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xEg -uGF -uGF -uGF -xEg -uGF -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -qTf -uGF -uGF -ubb -ubb -cQd -ubb -ubb -ubb -ubb -ubb -oHy -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -xIt -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ujh -eZJ -bBz -ujh -ujh -drE -wtG -txH -xBF -vQP -xBF -txH -eMq -vJT -iZq -tgK -bCC -vrL -nwP -nwP -bBz -eKz -ebZ -ebZ -ebZ -ebZ -ebZ -sVQ -nwP -nwP -nwP -nwP -kMG -bNM -nwc -qWU -qWU -aiH -kEQ -ffR -qWU -nwc -nwc -nwc -tkq -nwc -nwc -ajV -qPG -haP -rsL -dwh -xqU -nHW -tpQ -kqQ -iVD -aAA -rsL -haB -rsL -uwf -iVD -dOq -dOq -dOq -dOq -iVD -sOb -nsX -nsX -nsX -wpE -sOb -ibY -qKt -sGf -wfV -sOb -ify -sGf -sGf -sGf -uPi -sGf -sGf -fMd -sGf -sGf -sGf -sGf -sGf -eYE -sOb -jjc -rFU -sGf -sGf -sGf -rFU -wfV -sOb -mIM -nsX -nsX -nsX -nsX -giu -sOb -sGf -sGf -sGf -sGf -sOb -glh -hNU -hNU -lMU -uCp -jTv -lMU -dpl -hNU -hnn -ner -ner -jGE -hNU -piP -bXX -fsy -ced -dRe -sdU -sdU -sdU -nIN -nNn -xEZ -xEZ -xKK -xEZ -lgV -nZo -nZo -qmp -qmp -qmp -qmp -qmp -qmp -qmp -qmp -pxY -awM -xEZ -nIu -pPX -rIi -rIi -nsK -"} -(105,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xEg -uGF -uGF -oFs -uGF -uGF -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -oHy -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -bcB -ujh -rsm -bBz -ujh -nwP -nwP -drE -lvE -srx -srx -krZ -lkU -wAt -pPq -fZF -tgK -sYg -nwP -nwP -nwP -nwP -eKz -ebZ -xmG -ebZ -xmG -ebZ -sVQ -nwP -jqL -trM -nwP -aXx -haP -xTJ -nwc -qWU -nnZ -kEQ -ffR -nwc -vol -haP -mvy -mvy -haP -mvy -mvy -haP -haP -iVD -tAs -xqU -tpQ -hzH -iVD -aEa -aEa -aEa -rgH -vaM -aEa -aEa -sIb -kPS -kPS -kPS -sIb -eIA -mPv -mPv -mPv -eIA -sOb -xDG -qKt -sGf -wfV -sOb -wfV -ygI -sGf -aRF -uPi -sGf -sGf -sGf -sXp -sGf -sGf -sGf -sGf -qKt -rDu -hto -rFU -sGf -sGf -sGf -sKM -sbx -sOb -eIA -mPv -mPv -mPv -mPv -eIA -sOb -uIl -sGf -sGf -jvl -sOb -jTv -dLh -dLh -dLh -jTv -jTv -jTv -uhV -piP -ecf -iNC -jGE -hNU -piP -rAf -jTv -jTv -ced -vky -sdU -sdU -sdU -nIN -nNn -xEZ -xEZ -xEZ -xEZ -pgu -tqq -aWU -iGe -qmp -ezl -cWH -ezl -ezl -qmp -qmp -pxY -sks -fwk -tqc -pPX -rIi -rIi -nsK -"} -(106,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -uGF -qTf -xEg -uGF -ubb -ubb -ubb -tJs -ubb -ubb -ubb -tJs -oHy -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -tJs -ubb -bcB -bcB -bBz -izf -ujh -nwP -nwP -nwP -nwP -nwP -nwP -nwP -dpw -gBs -eMq -vJT -eMq -szK -sYg -nwP -nwP -nwP -nwP -utM -ebZ -viU -ebZ -viU -ebZ -sVQ -nwP -nwP -nwP -nwP -dpw -haP -haP -ooA -qWU -qWU -kEQ -ffR -nwc -haP -haP -wXW -cxy -haP -bvF -mTK -qSW -haP -rsL -tpQ -xqU -xQD -tpQ -rsL -aEa -gPK -cmw -lgj -nDe -qBt -aEa -heL -heL -heL -heL -kpb -kpb -kpb -kpb -kpb -heL -sOb -sOb -gPx -rfP -wfV -sOb -wfV -sGf -sGf -sGf -sGG -sGf -sGf -sGf -hXh -sGf -gJz -sGf -sXp -qKt -rDu -hto -sXp -sGf -sGf -sKM -sbx -sOb -sOb -nIU -nIU -nIU -nIU -nIU -nIU -sOb -qmh -sGf -sGf -sOb -sOb -mqu -snC -snC -snC -snC -mqu -jTv -jTv -lTT -tCE -xrg -bfw -riX -bWQ -jTv -jTv -mqu -kxd -uGS -mDs -mDs -mDs -ujT -nNn -xEZ -xEZ -xEZ -aWU -pgu -xJv -aWU -xJv -kNO -tmG -aai -ezl -buA -qmp -qmp -pPX -qOW -ntI -tXa -pPX -rIi -rIi -nsK -"} -(107,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -xEg -uGF -uGF -uGF -xEg -uGF -uGF -xEg -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vqi -uGF -uGF -ubb -ubb -ubb -ubb -ubb -ubb -ubb -ubb -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -xIt -bcB -bcB -bBz -bBz -rsm -ujh -nwP -nwP -nwP -nwP -nwP -nwP -nwP -dpw -gBs -eMq -pPq -eMq -szK -sYg -nwP -nwP -nwP -nwP -qEi -xxQ -vbU -iKc -iIu -iKc -vNf -nwP -nwP -nwP -nwP -dpw -wtG -haP -gsk -qWU -qWU -wng -ffR -nwc -mvy -kSs -efT -nDg -haP -csk -gJQ -mTK -xwV -rsL -uRd -xqU -tpQ -tpQ -jry -aEa -gPK -nDe -nDe -nDe -qjq -aEa -aEa -aEa -heL -tzW -jZM -eux -eux -eux -eux -vMO -heL -sOb -lPQ -suW -sOb -sOb -sOb -fRA -fRA -tYd -sOb -lzh -lzh -sYm -sbx -eWL -sGf -boN -sGf -qKt -fLo -jJS -sGf -sXp -jRg -jRg -sOb -sOb -qLx -nIU -nIU -qQP -nIU -nIU -nIU -sOb -sOb -lTQ -suW -sOb -mqu -kxd -mDs -mDs -mDs -mDs -htY -mqu -jTv -jTv -cHn -piP -tHI -rOf -jTv -jTv -rQU -kxd -wTO -dFD -dFD -dFD -dFD -gxN -dVJ -siO -wrz -vWS -vWS -bsn -xJv -fKv -xJv -kNO -kxK -kxK -kxK -ezl -qmp -qmp -jcT -ctT -xEZ -fZN -pPX -rIi -rIi -nsK -"} -(108,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -vwm -uGF -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -vqi -xIt -uGF -ubb -ubb -ubb -ubb -ubb -ubb -ubb -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -bBz -ujh -ujh -eZJ -ujh -nwP -qxh -dds -mXF -mXF -mXF -mXF -tnD -lkU -eMq -dKQ -eMq -tgK -aDi -mXF -mXF -mXF -mXF -mXF -mXF -mXF -mXF -mXF -mXF -mXF -mXF -mXF -mXF -mXF -wtG -wtG -haP -jJX -lzU -qWU -kEQ -xQy -nwc -mvy -kSs -cgQ -nBP -haP -jBn -mTK -omq -xwV -rsL -tpQ -xqU -tpQ -tpQ -rsL -bZP -xaf -nDe -nDe -nDe -nDe -oeB -dCW -aEa -aEa -heL -kHJ -eux -jIb -jIb -eux -jZM -vMO -kpb -jxz -kpb -hsx -xvC -xvC -xvC -dhe -dhe -xvC -cGY -dhe -xvC -xvC -sbx -sKM -sGf -sGf -qKt -sQp -wuL -sGf -qfM -sOb -sOb -sOb -qLx -nIU -nIU -nIU -qbN -nIU -nIU -nIU -sOb -mqu -mqu -snC -snC -kxd -mDs -mDs -mDs -mDs -mDs -mDs -htY -mqu -jTv -jTv -nRl -lMv -jTv -jTv -mqu -kxd -mDs -doO -mDs -mDs -mDs -mDs -ujT -nNn -kZW -xEZ -xEZ -uBs -crJ -xJv -aWU -qkJ -kNO -ezl -ezl -ezl -ezl -qmp -qmp -pxY -ctT -fwk -tqc -pPX -pPX -rIi -nsK -"} -(109,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -vqi -xIt -uGF -rvq -ubb -ubb -ubb -ubb -ubb -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vby -cZN -vby -vby -iHf -lTA -qbo -ioS -ioS -ioS -ioS -lTA -lJJ -jbr -lJJ -lTA -ioS -ioS -ioS -ioS -qbo -qbo -ioS -ioS -ioS -ioS -qbo -qbo -ioS -ioS -ioS -ioS -qbo -qbo -haP -krP -qWU -qWU -kEQ -uAI -nwc -mvy -kSs -qIG -phX -haP -dcm -abn -gNq -haP -iVD -tpQ -hBf -hwh -tpQ -rsL -bZP -qjq -nDe -ijF -bfn -nDe -nDe -gqR -dDo -aEa -heL -tzW -eux -eux -jIb -jZM -eux -eux -jIb -ohU -jIb -gKW -xvC -xvC -tAB -tTH -bgH -xvC -nqZ -bkU -xVy -xvC -xvC -sbx -sGf -sGf -iRm -jnP -pKF -sGf -sGf -tYd -bKO -qLx -nIU -nIU -nIU -nIU -qbN -nIU -nIU -nIU -lTQ -mqu -uet -uGS -uGS -mDs -mDs -mDs -tBa -mDs -mDs -mDs -mDs -htY -snC -snC -qPo -wjc -xiF -xiF -fwL -ivg -ivg -rUv -mDs -mDs -mDs -mDs -ujT -nNn -xEZ -xEZ -xEZ -tyY -jSP -xJv -aWU -xJv -kNO -aai -ezl -ezl -aai -qmp -qmp -nIc -pwP -xEZ -tqc -xEF -pPX -rIi -nsK -"} -(110,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -vqi -xIt -uGF -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vby -vby -nSG -vby -vby -taG -lTA -lTA -iUm -iUm -iUm -iUm -lTA -qWM -pcO -osB -lTA -iUm -iUm -iUm -iUm -lTA -lTA -gio -iUm -iUm -iUm -lTA -lTA -iUm -iUm -iUm -iUm -iUm -kcP -haP -kzB -qtR -ltF -kEQ -ffR -fzg -haP -haP -nfT -haP -haP -haP -xZp -haP -haP -sEJ -tpQ -hBf -sRx -tpQ -rsL -bZP -nDe -nDe -gqR -tAY -nDe -nDe -xyo -bsh -aEa -aEa -tzW -jIb -eux -jIb -jIb -jZM -eux -aeX -frc -eux -gKW -xvC -uSc -mQy -mQy -mQy -pLT -mQy -sEM -mQy -gwF -dhe -jno -sGf -sGf -oHl -sGf -hto -qzY -uWL -obF -eUq -nIU -nIU -nIU -nIU -nIU -qbN -jqP -nIU -nIU -lTQ -mqu -rNB -uGS -oMs -uGS -mDs -mDs -udO -mDs -mDs -mDs -mDs -mDs -mDs -udO -mDs -doO -mDs -mDs -mDs -mDs -mDs -qVM -mDs -mDs -mDs -mDs -ujT -nNn -xEZ -xEZ -tZa -ufl -jSP -udk -fKv -jVO -qmp -ezl -wDv -ezl -ezl -qmp -qmp -mku -ctT -ebr -mku -xEF -pPX -rIi -nsK -"} -(111,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -qKf -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -ubb -ubb -ubb -ubb -ubb -ubb -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vby -vby -vby -oFw -wzw -wzw -qMB -iKo -vNz -wId -wId -wId -wId -ghH -rkQ -wSr -rkQ -ghH -mnw -wId -wId -wId -kHM -oeM -uNK -wId -wId -wId -kHM -iBu -wId -wId -wId -wId -eWP -kHM -qaR -owG -owG -owG -jSQ -vAZ -vAZ -wGo -vAZ -nxC -owG -cGr -owG -dxI -qWU -qOq -rsL -tpQ -hBf -hwh -tpQ -rsL -bZP -nDe -xyo -nDe -sfR -gSP -nDe -nDe -nDe -xff -aEa -cex -jIb -eux -jIb -jIb -suB -nnn -eux -frc -eux -gKW -xvC -uSc -mQy -mQy -qYl -mQy -qYl -mQy -mQy -gwF -dhe -jno -sXp -uyY -qKt -sGf -hto -gJz -gJz -obF -eUq -nIU -nIU -nIU -nIU -nIU -qbN -nIU -nIU -nIU -lTQ -mqu -uet -oMs -uGS -uGS -uGS -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -doO -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -oMo -mDs -ujT -pPX -pPX -hik -dUt -xEZ -teC -qmp -nZo -qmp -qmp -qmp -qmp -qmp -qmp -qmp -qmp -mku -qVz -xEZ -mku -xEF -pPX -rIi -nsK -"} -(112,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -vqi -vqi -vqi -vqi -oHy -oHy -oHy -oHy -oHy -vqi -vqi -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vby -vby -vby -vby -vby -juQ -vby -vby -sGo -meg -eUU -jGW -jGW -jGW -vLt -meg -fIn -cdu -dsf -aZn -oSg -qKi -qKi -qKi -oSg -uTl -qKi -vLt -jGW -jGW -hQt -inS -jGW -jGW -jGW -abl -guN -kIA -sPO -qWU -qWU -eoS -kEQ -ffR -qWU -qZr -qWU -aiH -ydo -fnb -fnb -aiH -qWU -qOq -rvL -tpQ -xqU -tpQ -tpQ -nwb -aEa -vCg -nDe -nDe -nDe -buY -nDe -nDe -nDe -qje -nWs -tzW -jIb -eux -jZM -jIb -jIb -upa -eux -frc -hKm -heL -xvC -uSc -hOe -xLY -ejP -ejP -jgO -mQy -mQy -gwF -dhe -jno -sGf -gJz -qKt -gJz -sGN -sGf -sGf -tmz -sOb -xef -nIU -nIU -nIU -nIU -dhx -nIU -nIU -nIU -sOb -mqu -uet -oMs -oMs -uGS -uGS -bYC -bYC -bYC -bYC -bYC -bYC -mDs -mDs -mDs -mDs -hZL -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -htY -mqu -pPX -cdP -gLM -xEZ -mqw -xEZ -nZo -qmp -qmp -aXK -nNn -opi -nNn -tXa -pxY -rrm -oSj -eaR -mku -pPX -pPX -rIi -nsK -"} -(113,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -xEg -uGF -xEg -uGF -uGF -uGF -uGF -xEg -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vby -vby -vby -vby -vby -vby -vby -vby -vLI -vby -ycW -lTA -lTA -iUm -iUm -iUm -iUm -lTA -fIn -gKF -dQl -lTA -iUm -iUm -iUm -iUm -lTA -lTA -iUm -iUm -iUm -iUm -lTA -lTA -iUm -iUm -iUm -iUm -kcP -iUm -haP -vah -twk -twk -njW -cgQ -nwc -haP -ixw -nwc -asR -vzc -aVO -gHg -ixw -haP -bcR -imb -xqU -tpQ -imb -wlw -aEa -nkE -pRN -gqR -nDe -nDe -nDe -uce -nDe -bsh -aEa -mWb -jIb -eux -eux -jIb -jIb -ntj -bZj -dSJ -heL -xvC -xvC -loB -jgG -jgG -wNj -bbB -wMz -jgG -mQy -xvC -xvC -xvC -dKG -sGf -ssZ -ndn -hto -sGf -sGf -sGf -qOn -ecS -nIU -nIU -nIU -nIU -qbN -nIU -nIU -nIU -sOb -sOb -mqu -jRk -oMs -uGS -bYC -bYC -kYP -mjz -aPl -qUH -bYC -bYC -ayK -mDs -pOG -doO -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -ebK -pPX -iBO -cqo -xEZ -ezR -eZd -siO -kpl -kpl -kpl -kpl -kpl -kpl -eXT -kpl -taY -xZs -pxY -pPX -pPX -rIi -rIi -nsK -"} -(114,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -tJs -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vby -vby -juQ -vby -vby -vby -vby -vby -juQ -bEA -uge -iHf -lTA -rhx -mPL -mPL -mPL -mPL -lTA -lJJ -cYD -lJJ -lTA -mPL -mPL -mPL -mPL -rhx -rhx -mPL -mPL -mPL -mPL -rhx -rhx -mPL -mPL -mPL -mPL -rhx -rhx -haP -nwc -nwc -uNy -xqB -lir -cgQ -haP -kCS -csP -csP -csP -csP -csP -kCS -kCS -iVD -iVD -itI -lsj -iVD -iVD -aEa -aEa -aEa -pkH -nDe -xyo -nDe -nDe -nDe -aEa -aEa -tzW -jIb -jIb -jZM -jIb -jIb -jZM -eux -dnT -xvC -xvC -wha -hOe -mQy -vwt -mQy -mxT -mxT -nPU -moT -xvC -xvC -xvC -jQc -sGf -sGf -boA -oaK -kVY -kVY -kVY -boM -hAi -mlK -oyM -bwU -bwU -hNa -jqP -nIU -nIU -qLx -sOb -sOb -uet -uGS -oMs -bYC -sJr -wjf -wjf -wjf -wjf -kDT -bYC -qJo -mDs -pOG -doO -mDs -mDs -mDs -oMo -mDs -mDs -mDs -ayK -mDs -mDs -mDs -ujT -pPX -mju -jGH -xEZ -mqw -xKK -aWU -kci -kci -kci -kci -tKr -kci -tXa -mku -xEZ -xEZ -pPX -pPX -rIi -rIi -rIi -nsK -"} -(115,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -uGF -uGF -vwm -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tyz -vby -vby -vby -vby -tyz -tyz -vby -vby -ueJ -cfr -avQ -cfr -wYJ -kNv -wYJ -wYJ -wYJ -wYJ -wYJ -nFQ -oMc -nFA -oMc -nFQ -wYJ -wYJ -wYJ -wYJ -wYJ -wYJ -wYJ -wYJ -wYJ -wYJ -wYJ -wYJ -wYJ -wYJ -wYJ -foy -wYJ -tZb -haP -haP -haP -ptl -rez -haP -vhC -tCL -uoU -iBw -iBw -iBw -iBw -iBw -iBw -qOh -rRJ -cYs -xNL -kfK -cYs -nOQ -lTL -loO -aEa -aEa -jxv -knX -nsC -bxh -aEa -aEa -heL -dVL -jIb -eux -eux -jIb -jIb -jZM -eux -dnT -rYJ -vmh -uTf -mQy -mQy -mQy -rtW -mQy -mQy -jgG -mQy -gwF -dhe -hvo -bqb -aRF -uWL -cFQ -hto -sGf -sGf -qfM -sOb -dsJ -nIU -nIU -qLx -qLx -qbN -nIU -nIU -nIU -qLx -qLx -sOb -uet -uGS -oMs -itZ -wjf -wjf -wdk -wdk -wjf -utz -bYC -mDs -mDs -pOG -doO -mDs -mDs -mDs -mDs -mDs -mDs -mDs -qJo -mDs -rFx -pJW -mqu -pPX -tmV -xEZ -xEZ -jSP -xEZ -fZd -kci -pPX -pPX -pPX -pPX -pPX -pPX -pPX -nNn -rFv -pPX -pPX -rIi -rIi -rIi -nsK -"} -(116,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tyz -tyz -vby -vby -vby -tyz -jIg -jIg -jIg -ueJ -wYJ -ihl -ihl -cbQ -cbQ -ihl -ihl -ihl -ihl -ihl -ihl -ihl -vsY -hth -gip -ihl -wYJ -wYJ -wsa -wsa -wsa -wsa -wsa -wsa -wsa -wsa -wsa -wsa -dtN -wYJ -wYJ -wYJ -wYJ -tZb -nnV -sHZ -cYs -ecp -xjz -cYs -eCc -sMO -iBw -iBw -uJT -sOL -ikW -iBw -qtm -iBw -mtN -cYs -vYg -kxB -cYs -fwd -lTL -loO -hsx -aEa -aEa -mOp -xQz -aEa -aEa -hsx -dVL -jIb -jIb -jZM -jZM -jIb -jZM -eux -jIb -yaF -qKA -cEe -avE -avE -avE -avE -avE -fnM -avE -roA -mQy -nqZ -uVf -hOb -sXp -sGf -sGf -qKt -hto -sGf -sGf -wfV -eUq -nIU -nIU -nIU -qLx -qLx -qbN -nIU -nIU -nIU -qLx -qLx -sOb -uet -oMs -hnw -bYC -kyO -wjf -wjf -wjf -wjf -utz -bYC -mDs -mDs -mDs -vFu -pJW -jTc -otG -otG -jTc -jTc -wsJ -jTc -jTc -jTc -mqu -pPX -pPX -bor -kci -xEZ -jSP -hCt -kci -pPX -pPX -xeN -xeN -pPX -eVl -mcU -pPX -dzB -dzB -dzB -pPX -rIi -rIi -rIi -nsK -"} -(117,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -xEg -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tyz -tyz -tyz -vby -vby -tyz -vby -tyz -ueJ -wYJ -ihl -ihl -xUH -fYA -evW -kMz -ihl -uJV -vNb -bsT -eEq -ihl -xUH -mRL -xUH -ihl -lZt -wsa -wsa -ntN -pHd -wsa -dPm -lYK -ukA -hzn -nsv -wsa -wsa -wYJ -krt -krt -wYJ -tZb -nnV -sHZ -cYs -xOM -xjz -cYs -eCc -iBw -iBw -qtm -obS -hQm -bGC -gHM -kKo -iBw -mtN -cYs -vYg -kxB -cYs -fwd -lTL -loO -rdG -kpb -hXa -kpb -vcW -hVw -kpb -goK -jIb -jIb -jIb -eux -eux -jaT -jZM -eux -jaT -gKW -xvC -xvC -oca -mQy -wmi -mQy -mQy -mQy -tRg -iLp -ejP -lgr -uVf -hOb -sGf -sGf -sGf -qKt -hto -sGf -aRF -uyq -eUq -nIU -nIU -nIU -nIU -nIU -qbN -nIU -nIU -nIU -qLx -sOb -sOb -uet -uGS -oMs -bYC -bYC -kYP -cOy -sJr -kDT -bYC -bYC -mDs -mDs -mDs -nQL -mqu -pPX -pPX -pPX -pPX -pPX -pPX -pPX -pPX -pPX -pPX -pPX -pPX -pPX -fpe -fgn -svr -vUI -jsB -pPX -dgS -mcU -mcU -pPX -wLx -mcU -pPX -dzB -dzB -dzB -pPX -rIi -rIi -rIi -nsK -"} -(118,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -jIg -tyz -tyz -vby -vby -vby -vby -vby -xTh -ihl -ihl -dTt -bsT -uDz -gij -icj -lqR -uJV -uDz -uDz -uJV -ihl -xUH -mRL -xUH -ihl -wYJ -wsa -cMk -rDK -qrA -wsa -cjN -voT -rkP -xDF -dtZ -nTQ -wsa -nRJ -vby -vby -iHf -tZb -nnV -sHZ -cYs -kxB -uQP -cYs -eCc -iBw -qtm -cWj -oef -cSm -vLL -qtm -tdN -iBw -mtN -cYs -vYg -xOM -cYs -fwd -lTL -loO -tzW -eux -eux -eux -eux -eux -eux -jIb -jIb -jIb -jIb -jIb -jZM -jZM -eux -jIb -jIb -vMO -heL -xvC -xvC -lgr -tAB -tAB -aiY -xGa -wai -mbS -mTc -tjX -xvC -tYd -eTs -wfV -kwz -qKt -hto -sGf -wfV -vqz -bKO -nIU -nIU -nIU -nIU -nIU -tQT -mlK -mlK -vxs -sOb -sOb -mqu -kxd -oMs -oMs -oMs -bYC -bYC -bYC -bYC -bYC -bYC -mDs -mDs -mDs -mDs -nKe -pPX -pPX -aXD -wfe -wJs -mCI -mCI -iBO -tXT -aXD -aQt -kci -sFK -nNn -fgn -sXb -gRH -dot -jsB -tXa -jOE -mcU -mcU -pPX -pPX -aLN -pPX -dzB -dzB -dzB -pPX -rIi -rIi -rIi -nsK -"} -(119,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -xEg -uGF -uGF -uGF -uGF -xEg -xIt -xIt -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -qHh -qHh -lyG -uYy -uYy -vby -vby -vby -kFi -ihl -vsY -phJ -gqb -uDz -uDz -xUH -lqR -ihl -oqb -oqb -ihl -ihl -xUH -mRL -xUH -ihl -wYJ -wsa -wsa -wsa -lia -wsa -drZ -qPj -fhC -jOD -bqS -wWB -jfN -cec -vby -vby -iHf -tZb -nnV -sHZ -cYs -kxB -uQP -cYs -eCc -fMz -iBw -iBw -iBw -iBw -iBw -iBw -iBw -xic -mtN -lMI -vYg -kxB -cYs -fwd -lTL -loO -tzW -eux -eux -aUc -jZM -eux -jIb -jIb -jIb -jIb -jIb -eux -eux -eux -eux -jIb -jIb -jIb -gKW -xvC -xvC -pwK -pwK -xvC -xvC -xvC -xvC -mkv -pli -xvC -xvC -xvC -xvC -dCy -nij -vPi -rLY -mec -xzp -sOb -sOb -sOb -lTQ -lTQ -sOb -sOb -lTQ -lTQ -sOb -sOb -sOb -rQU -kxd -oMs -oMs -oMs -uGS -uGS -uGS -uGS -mDs -mDs -mDs -mDs -mDs -mDs -mDs -nKe -pPX -vDU -xEZ -xEZ -xEZ -xEZ -eaR -cqo -hzu -xEZ -gCO -dbK -dbK -rgs -uEr -oFt -szN -bJY -pQC -oDW -rsK -iou -mcU -mcU -mcU -bNT -pPX -dzB -dzB -xbQ -pPX -rIi -rIi -rIi -nsK -"} -(120,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -ubb -ubb -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -qHh -qHh -lyG -uYy -uYy -juQ -vby -vby -iHf -trS -cVR -qyL -nKH -rvo -uDz -xUH -ihl -ugj -uDz -uDz -hUm -ihl -oNl -mRL -xUH -ihl -wYJ -wsa -omj -xhe -rvx -wsa -ffr -vid -rgA -wiL -gFM -uDM -jfN -cec -vby -juQ -iHf -tZb -nnV -rRJ -snA -fWs -sQj -snA -snA -pii -dGP -dGP -dGP -pii -dGP -dGP -dGP -pii -snA -snA -xNL -keT -snA -nOQ -lTL -loO -tzW -eux -jZM -jZM -jZM -eux -jIb -jIb -jIb -jIb -jIb -jIb -eux -jIb -jIb -jIb -jIb -hKm -xvC -xvC -oCo -sMK -txz -oCo -xvC -ugE -ugE -iLp -mQy -xvC -auH -feS -kLw -xvC -xcj -qMn -sPq -xcj -ncG -rQU -sOb -sOb -mqu -mqu -sOb -sOb -mqu -jHe -sOb -sOb -mqu -kxd -uGS -oMs -ilV -oMs -uGS -uGS -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -nKe -nNn -xEZ -xEZ -xEZ -xEZ -xEZ -xEZ -xEZ -fgn -fgn -jSP -rlA -fgn -njN -fgn -xEZ -wPx -xEZ -kci -tXa -mcU -cmE -pIJ -mcU -mcU -egQ -ggk -dzB -dzB -dzB -pPX -rIi -rIi -rIi -nsK -"} -(121,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -xIt -xIt -ubb -tJs -ubb -ubb -tJs -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -lyG -uYy -uYy -uYy -uYy -juQ -vby -iHf -trS -fZR -iqY -vws -eax -kDa -mQe -mUy -wui -cNP -sxh -xUH -rln -xUH -hth -gip -ihl -wYJ -wsa -kzf -ylG -mUC -wsa -lzP -eBR -lLP -rFJ -uDM -lYK -jfN -cec -vby -vby -iHf -tZb -xVV -snA -kfK -kxB -pZF -seW -snA -fXm -fgb -fXm -fgb -ete -fgb -fXm -fXm -fgb -snA -oYR -qgh -kxB -uaR -snA -fRP -loO -cFC -eux -jZM -jZM -eux -jIb -jaT -jIb -jIb -bvM -jIb -qLy -mpa -diw -jIb -jIb -jIb -gKW -xvC -yks -tFo -sOJ -sIV -hqp -xvC -hXm -avE -slZ -mQy -xvC -tAB -mQy -aAW -kLw -xcj -fwv -roX -xcj -ncG -mqu -snC -snC -snC -snC -snC -snC -snC -kDV -snC -snC -rdg -gjM -mDs -hUC -cxK -cxK -cxK -wxi -wxi -wxi -wxi -wxi -rIi -rIi -mDs -udO -mDs -osY -dVJ -kpl -bHd -bid -sHi -kpl -kpl -vWS -kky -bHd -xZs -xEZ -kci -nNn -tKr -kci -oSj -kci -jgN -pPX -dWS -xlo -uUl -qtB -iJk -pPX -pPX -cEW -dzB -dzB -pPX -rIi -rIi -rIi -nsK -"} -(122,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -xIt -uGF -uGF -uGF -uGF -uGF -uGF -uGF -uGF -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uYy -uYy -uYy -uYy -vby -vby -iHf -trS -xUH -pla -roh -cfh -uDz -xUH -ihl -esx -sLZ -uDz -hUm -ihl -xUH -mRL -xUH -ihl -wYJ -wsa -sNv -wiL -mUC -wsa -cGI -sno -lWb -wiL -eEm -vci -wsa -oyj -vby -juQ -iHf -tZb -eas -niE -kxB -xOM -uQP -kxB -niE -jsm -nYa -nYa -nYa -bbm -nYa -kNT -miQ -ixv -niE -kxB -vYg -kxB -nja -niE -dKU -loO -tzW -jZM -jZM -jZM -eux -jIb -jIb -jaT -jIb -jIb -jIb -mpV -xMV -eii -jZM -jIb -jaT -gKW -pwK -sOJ -etn -etn -vJV -sOJ -xvC -mQy -mQy -dgW -eOV -xvC -auH -sWy -dgW -kLw -xcj -jJn -sSk -xcj -xcj -ksh -uGS -uGS -uGS -oMs -uGS -uGS -uGS -idc -lvH -lCW -mDs -mDs -mDs -mDs -mDs -mDs -uGS -uGS -mDs -mDs -peg -mDs -rIi -rIi -mDs -mDs -mDs -ujT -nNn -xEZ -xEZ -qJs -xEZ -xEZ -xEZ -xEZ -eHa -xEZ -xEZ -kci -pPX -pPX -pPX -tXa -hAP -tXa -pPX -pPX -pPX -pPX -pPX -pPX -pPX -pPX -aZw -dzB -dzB -dzB -pPX -rIi -rIi -rIi -nsK -"} -(123,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -xIt -xIt -uGF -uGF -uGF -uGF -uGF -uGF -uGF -ubb -ubb -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uYy -uYy -uYy -vby -vby -cKK -ihl -jWM -xUH -uDz -uDz -sxh -xUH -lqR -ihl -oqb -oqb -ihl -ihl -orc -mRL -xUH -ihl -wYJ -wsa -wsa -jLF -faa -bPQ -hDG -uDM -dvJ -cBm -dgQ -wsa -wsa -maC -vby -vby -iHf -bgZ -eas -fWb -kxB -qus -pZF -xBG -klZ -qaD -hQI -sym -sym -eve -sym -sym -vsk -qEb -klZ -xBG -iiC -xOM -kxB -fWb -dKU -mjh -cFC -eux -bLf -jZM -jZM -eux -jIb -jIb -jIb -jIb -jIb -pSH -kpf -aaz -jZM -jIb -jIb -gKW -pwK -sOJ -swV -qNE -cCx -jNn -xvC -plu -mQy -jxI -vFF -uEs -suZ -jgG -iLp -epN -uEs -wtk -wEk -ltL -cVG -rHL -uGS -oMs -uGS -oMs -oMs -uGS -uGS -ppv -mDs -mls -bmB -lRN -mDs -uGS -uGS -mDs -pyY -wxi -wxi -aSI -mDs -mDs -mDs -rIi -mDs -mDs -mDs -ujT -pPX -kci -kci -vfP -kci -xEZ -xEZ -xEZ -fgn -xEZ -aXD -pPX -pPX -vVO -wPr -dbK -xZs -tZa -xEZ -fVL -dzB -dzB -dzB -lSR -dzB -dzB -dzB -lSR -dzB -xbQ -pPX -rIi -rIi -rIi -nsK -"} -(124,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uGF -uGF -uGF -xIt -xIt -xIt -xEg -uGF -uGF -uGF -uGF -uGF -xEg -ubb -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uYy -uYy -uYy -uYy -vby -iHf -ihl -ihl -qxs -xUH -sxh -uDz -xUH -lqR -uJV -uDz -uDz -uJV -ihl -orc -mRL -xUH -ihl -wYJ -wYJ -wsa -wsa -wsa -wsa -aLX -hpl -wsa -wsa -wsa -wsa -wYJ -tbN -vby -vby -iHf -bgZ -uPN -snA -pup -kxB -uQP -pup -snA -fXm -fGv -fXm -fXm -ete -ppR -fXm -mup -fXm -snA -jgj -uQP -kxB -dxk -snA -eFj -mjh -tzW -jZM -jZM -jZM -jZM -jZM -eux -jIb -vfo -jIb -jIb -jIb -eux -eux -jIb -vfo -jIb -gKW -pwK -sOJ -fkv -qUZ -cCx -sIV -xvC -mQy -mQy -piq -jmO -qKA -iLX -ejN -oZy -iLX -qKA -pkE -wEk -ltL -azA -rHL -uGS -oMs -oMs -uGS -uGS -uGS -bfa -ppv -mDs -idc -ydx -tLO -mDs -tgz -uGS -mDs -idc -mDs -ydx -pOG -mDs -mDs -mDs -pOG -mDs -mDs -mDs -htY -pPX -pPX -pPX -pPX -pPX -hjf -xEZ -xEZ -fgn -xEZ -lrT -pPX -vVO -tZa -xEZ -xEZ -tZa -xEZ -xEZ -nNn -dzB -aZw -dzB -dzB -dzB -dzB -dzB -dzB -aZw -cEW -pPX -rIi -rIi -rIi -nsK -"} -(125,1,1) = {" -cgS -xIt -xIt -xIt -xIt -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -qTf -qTf -qTf -vqi -vqi -xIt -xIt -xIt -xIt -uGF -uGF -uGF -uGF -uGF -uGF -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uYy -uYy -uYy -uYy -jIg -xxR -wYJ -ihl -ihl -kLO -xUH -xUH -cLQ -ihl -eJR -gSK -bsT -uJV -ihl -xUH -mRL -xUH -ihl -wYJ -wYJ -wYJ -wYJ -wYJ -wsa -ajE -kfv -wsa -wYJ -wYJ -wYJ -maC -vby -vby -vby -iHf -bgZ -nnV -rRJ -snA -gMN -iMa -snA -snA -bkG -olh -olh -olh -bkG -olh -olh -olh -bkG -snA -snA -lBi -jRz -snA -nOQ -lTL -mjh -tzW -eux -jZM -jZM -jZM -jZM -eux -nUn -jIb -jIb -jIb -eux -eux -eux -jIb -jIb -jIb -gKW -pwK -sOJ -tww -qju -cCx -hqp -xvC -prC -mQy -dgW -fGC -xvC -xvC -xvC -xvC -xvC -xcj -ubE -nIx -xcj -xcj -err -oMs -uGS -uGS -mDs -mDs -mDs -xYl -ppv -mDs -oUd -sQJ -byY -sOv -mDs -mDs -mDs -pQi -sQJ -sQJ -byY -mDs -tgz -mDs -pOG -mDs -mDs -mDs -mDs -rIi -rIi -rIi -rIi -pPX -pPX -xtD -xEZ -fgn -aYf -aXD -pPX -gpx -xEZ -gpx -xEZ -gpx -xEZ -gpx -pPX -pPX -pPX -pPX -pPX -pPX -pPX -pPX -pPX -pPX -pPX -pPX -rIi -rIi -rIi -nsK -"} -(126,1,1) = {" -cgS -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -uLt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uYy -uYy -uYy -tyz -tyz -iHf -wYJ -ihl -ihl -upj -djd -ihl -ihl -ihl -ihl -pma -ihl -ihl -xUH -mRL -gip -ihl -ihl -ihl -ihl -ihl -ihl -ihl -nFA -oMc -ihl -ihl -ihl -ihl -wYJ -uNW -vby -vby -iHf -bgZ -nnV -sHZ -cYs -kxB -uQP -cYs -eCc -sMO -iBw -iBw -iBw -iBw -iBw -iBw -iBw -qOh -mtN -qlD -uQP -kxB -xkN -fwd -lTL -mjh -tzW -eux -eux -eux -jZM -jZM -eux -eux -jIb -jIb -jIb -jIb -jIb -jZM -jIb -jZM -jIb -gKW -xvC -gxF -nvz -nvz -uVj -sOJ -pwK -mQy -qYl -mLG -tAB -xvC -xvC -lXm -kLw -xvC -xcj -jJn -sSk -xcj -ncG -uet -oMs -wXZ -kZt -kZt -kZt -dzY -dzY -jDB -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -bfa -dcJ -rXK -mDs -mDs -mDs -mDs -pOG -mDs -mDs -mDs -mDs -rIi -rIi -rIi -rIi -rIi -pPX -mCI -xEZ -fgn -xEZ -aXD -pPX -gpx -xEZ -gpx -nLw -gpx -xEZ -gpx -pPX -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(127,1,1) = {" -cgS -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -kjD -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uYy -uYy -uYy -tyz -jIg -iHf -taG -lqR -vNb -ugj -xUH -vNb -xUH -xUH -xUH -xUH -xUH -lqR -xUH -hOj -xUH -lqR -xUH -vNb -xUH -xUH -vNb -xUH -sIZ -xUH -xUH -vNb -xUH -lqR -wBW -maC -vby -vby -iHf -bgZ -nnV -sHZ -cYs -kxB -uQP -cYs -eCc -iBw -qtm -lcj -uJT -sOL -ikW -qhc -kKo -iBw -mtN -pGA -wrM -kxB -jXM -fwd -lTL -mjh -tzW -eux -eux -eux -eux -eux -eux -jIb -jIb -jIb -jIb -jIb -jIb -eux -eux -jIb -jIb -vZi -xvC -hlS -lhk -lhk -lhk -lhk -pCU -sKS -dWH -nsJ -kMF -ilh -iLX -pnn -fnx -xvC -ltL -lZD -wEk -ltL -ubR -uet -oMs -dzJ -bYC -bYC -bYC -bYC -bYC -wLT -xYl -peg -xYl -mDs -mDs -sek -wxi -aSI -gCM -oMs -uGS -mDs -mDs -mDs -mDs -pOG -mDs -udO -mDs -mDs -rIi -rIi -rIi -rIi -rIi -pPX -pPX -nNn -bpY -nNn -pPX -pPX -pPX -pPX -pPX -pPX -pPX -pPX -pPX -pPX -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(128,1,1) = {" -cgS -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -vBx -uLt -vBx -vBx -vBx -vBx -vBx -vBx -uLt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -uLt -vBx -kjD -nWw -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uYy -uYy -uYy -can -jIg -jIg -iHf -sGo -vVm -oMc -iAM -uRo -wol -wol -wol -wol -wol -wol -bNC -wol -had -axl -mOg -cZn -cZn -cZn -cZn -kqS -kqS -bJS -uDz -uDz -uDz -oMc -vVm -eOc -maC -vby -juQ -iHf -bgZ -nnV -sHZ -cYs -xOM -uQP -cYs -eCc -gHM -kKo -iBw -obS -hQm -maT -lcj -iBw -iBw -mtN -cYs -uQP -aKv -cYs -fwd -lTL -mjh -rdG -rXe -rXe -rXe -rXe -rXe -vxz -kHJ -jIb -jIb -jIb -jIb -eux -eux -jZM -jIb -jIb -gKW -xvC -gxF -uVj -uVj -vJV -sOJ -pwK -wah -rQq -mQy -tAB -xvC -cyd -cfF -mWv -xvC -ltL -lZD -wEk -ltL -ubR -uet -oMs -dzJ -bYC -mgP -mgP -mgP -bYC -oNN -xYl -oMs -kIS -mDs -mDs -idc -ydx -fkl -uGS -gpo -uGS -mDs -mDs -mDs -mDs -pOG -mDs -mDs -mDs -mDs -rIi -rIi -rIi -rIi -rIi -rIi -dYh -yae -sxL -yae -jpS -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(129,1,1) = {" -cgS -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -ihG -kjD -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uYy -uYy -uYy -uYy -lyG -jIg -tyz -iHf -ycW -lqR -gSK -xUH -dmP -gSK -xUH -xUH -gSK -xUH -xUH -gxV -xUH -fmS -xUH -lqR -xUH -gSK -xUH -xUH -gSK -cRb -dmP -xUH -xUH -gSK -xUH -lqR -eok -maC -vby -vby -iHf -bgZ -nnV -sHZ -cYs -pup -fOz -cYs -eCc -fMz -iBw -lcj -oef -cSm -vLL -iBw -qtm -iBw -mtN -cYs -mmh -kxB -cYs -fwd -lTL -mjh -hsx -mhj -mhj -mhj -mhj -mhj -mhj -rdG -kHJ -jIb -jIb -jIb -jZM -jaT -eux -jIb -jaT -gKW -pwK -sOJ -gbW -vJV -gTM -hqp -xvC -prC -plu -mQy -sQm -xvC -oJb -mQy -tAB -xvC -xcj -lnx -nIx -xcj -ncG -uet -uGS -how -bYC -mgP -qjA -mgP -bYC -vBq -xYl -oMs -mDs -mDs -mDs -oUd -sQJ -pAC -oMs -uGS -mls -eHy -dfq -mDs -mDs -pOG -mDs -mDs -mDs -mDs -mDs -mDs -rIi -rIi -rIi -rIi -txG -txG -hcL -txG -txG -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(130,1,1) = {" -cgS -xIt -xIt -xIt -xIt -vqi -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -kjD -kjD -kjD -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uYy -uYy -uYy -haI -uYy -uYy -tyz -jIg -iHf -wYJ -ihl -ihl -upj -ebM -ihl -ihl -ihl -ihl -ihl -ihl -ihl -rNc -tQN -xUH -ihl -ihl -ihl -ihl -ihl -ihl -ihl -iri -oMc -ihl -ihl -ihl -ihl -wYJ -tbN -vby -vby -iHf -bgZ -snA -snA -snA -gyb -dmn -snA -snA -iux -fMz -iBw -iBw -iBw -cWj -iBw -iBw -xic -rRJ -cYs -sDt -pup -cYs -nOQ -kOy -mjh -mhj -mhj -mhj -mhj -mhj -mhj -mhj -mhj -hsx -kHJ -jIb -jIb -jIb -jIb -eux -jIb -eux -gKW -pwK -gce -sWW -gTM -dAQ -vMn -xvC -pBj -mQy -mQy -oBq -xvC -eGa -ijC -xQT -xvC -xcj -jJn -sSk -xcj -ncG -uet -uGS -dzJ -gnV -dAn -wdk -rpT -bYC -vBq -mDs -rxg -wxi -jaJ -mDs -xYl -uGS -uGS -oMs -oMs -idc -ydx -pOG -uGS -mDs -pOG -mDs -mDs -mDs -mDs -mDs -mDs -rIi -rIi -txG -txG -txG -txG -hcL -txG -txG -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(131,1,1) = {" -cgS -xIt -xIt -xIt -xIt -vqi -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -kjD -kjD -kjD -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uYy -uYy -uYy -uYy -uYy -uYy -uYy -tyz -ueJ -wYJ -ihl -ihl -fxz -xUH -dmP -ifh -ihl -uJV -vNb -xUH -uJV -ihl -gyH -tQN -xUH -ihl -wYJ -wYJ -wYJ -wYJ -wYJ -wsa -iNZ -kfv -wsa -wYJ -wYJ -wYJ -maC -vby -qpm -vby -iHf -poj -poj -xnH -oXV -twr -rQe -bYF -wyl -poj -xBf -xBf -sYN -sYN -xBf -xBf -sYN -wQo -orh -orh -vsD -twI -orh -orh -evs -evs -mhj -mhj -mhj -mhj -mhj -mhj -mhj -mhj -mhj -tzW -jIb -jIb -jIb -jIb -eux -eux -jZM -gKW -pwK -vyd -uVj -uVj -gTM -sOJ -xvC -lmc -mQy -mQy -tAB -xvC -oJb -xHf -xQT -xvC -ltL -lZD -wEk -ltL -ubR -uet -oMs -dzJ -bYC -rpT -vNw -rpT -bYC -soL -xYl -idc -ydx -pOG -sOv -uGS -uGS -oMs -jJK -oMs -lrX -sQJ -sQU -oMs -mDs -pOG -mDs -mDs -mDs -mDs -mDs -mDs -rIi -rIi -txG -txG -xmm -txG -nKB -xmm -xmm -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(132,1,1) = {" -cgS -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -kjD -kjD -kjD -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xKP -uYy -uYy -uYy -uYy -uYy -xKP -vby -iHf -ihl -ihl -icj -uDz -pWU -cYv -dkl -lqR -uJV -sxh -uDz -uJV -ihl -vsY -tQN -gip -ihl -wYJ -wYJ -wsa -wsa -wsa -wsa -nXy -hpl -wsa -wsa -wsa -wsa -wYJ -uNW -vby -vby -kFi -poj -xGD -wex -tQR -tyq -ykH -ezN -oXV -rkW -idz -idz -poj -eXW -nYg -nYg -wyl -orh -hul -jYP -fqR -taz -jYP -jrs -mhj -iDC -sKE -lzk -mhj -mhj -jMY -nAh -gTU -mhj -mhj -tzW -jIb -jIb -jIb -eux -jZM -jZM -eux -gKW -pwK -bOU -uVj -gbW -uVj -sOJ -xvC -lMZ -mQy -mQy -hAH -cEu -tAB -mQy -tAB -xvC -ltL -lZD -wEk -ltL -ubR -uet -oMs -dzJ -bYC -bYC -aeh -bYC -bYC -soL -mDs -pTe -iYi -rQo -xYl -uGS -uGS -oMs -oMs -uGS -oMs -uGS -uGS -oMs -mDs -pOG -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -txG -xmm -nKB -nRW -xmm -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -txG -txG -ngv -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(133,1,1) = {" -cgS -xIt -xIt -xIt -xIt -vqi -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -qIR -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -kjD -kjD -kjD -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uYy -uYy -pKS -pKS -pKS -vby -vby -vby -kFi -ihl -omo -icj -fBT -pWU -ped -xUH -lqR -ihl -oqb -oqb -ihl -ihl -xUH -tQN -wxt -ihl -wYJ -wsa -wsa -nNN -wet -wsa -tie -uDM -bRH -ndU -nkv -wsa -wsa -maC -vby -vby -iHf -jJI -nYg -lnc -hEP -oTO -cgy -wHY -wjs -rnH -sgI -idz -poj -aYv -soc -tJZ -nYg -orh -orh -saI -lHx -gCw -kHR -orh -mhj -iDC -jkK -vLr -mhj -iKI -svV -izZ -qDl -xVE -mhj -tzW -jIb -jIb -jIb -eux -eux -eux -eux -gKW -xvC -uUx -sOJ -sOJ -sOJ -hqp -xvC -pBj -plu -mQy -tAB -cEu -tAB -plu -tAB -xvC -xcj -fwv -roX -xcj -ncG -uet -uGS -lKM -rou -ffH -rou -yco -rou -rzO -mDs -mDs -mDs -mDs -tvG -oMs -oMs -oMs -oMs -uGS -uGS -oMs -oMs -uGS -mDs -pOG -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -npE -apC -xmm -nKB -xmm -xmm -xmm -nvl -rIi -txG -rIi -rIi -rIi -txG -rIi -txG -rIi -txG -txG -xmm -xmm -txG -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(134,1,1) = {" -cgS -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -vBx -uLt -oCF -uLt -vBx -vBx -vBx -vBx -uLt -vBx -qIR -vBx -xIt -xIt -xIt -xIt -xIt -vqi -vqi -vqi -vqi -qIR -tOc -tOc -tOc -tOc -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -xIt -xIt -xIt -xIt -xIt -uYy -uYy -uYy -uYy -pKS -vby -vby -vby -vby -iHf -trS -sEZ -fBT -pWU -pWU -hxv -cRL -ihl -ugj -uDz -uDz -hUm -ihl -xUH -tQN -wxt -ihl -wYJ -wsa -yan -rDK -qID -wsa -eGU -mvT -uDM -lIX -uDM -vci -wsa -maC -vby -vby -jLO -cmM -haX -kNu -oTO -qWp -qLo -mVh -mVh -lEy -ovz -nYg -poj -lrb -vNY -tad -nYg -jfk -rtR -btp -bif -wvV -rIo -tPN -mhj -eYD -mJP -vLr -mhj -ewR -wLX -nby -caM -qDl -dtw -tzW -jIb -jIb -eux -jIb -jIb -eux -jIb -gKW -xvC -xvC -glm -gon -gon -qVZ -xvC -dga -tAB -tAB -wev -xvC -uVa -mQy -oBq -xvC -ltL -lZD -wEk -ltL -ubR -uet -uGS -oMs -uGS -mDs -mDs -mDs -mDs -idc -mDs -mDs -mDs -uGS -dcJ -oMs -oMs -uGS -oMs -uGS -uGS -uGS -uGS -uGS -mDs -pOG -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -txG -txG -xmm -xmm -hcL -txG -txG -txG -xmm -txG -txG -txG -txG -xmm -txG -txG -txG -xmm -xmm -xmm -xmm -xmm -txG -txG -txG -rIi -rIi -rIi -rIi -rIi -nsK -"} -(135,1,1) = {" -cgS -xIt -xIt -xIt -xIt -vqi -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -qIR -vBx -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -kjD -kjD -kjD -kjD -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -uYy -uYy -uYy -uYy -pKS -vby -vby -vby -vby -iHf -trS -qZL -vib -nhb -jKM -vJD -wol -mUy -wui -sxh -uDz -xUH -rln -xUH -uye -xUH -ihl -wYJ -wsa -wsa -wsa -jOx -wsa -uzH -fxl -rkP -rkP -rkP -nTQ -wsa -maC -vby -vby -iHf -cmM -haX -jHA -mtF -xtF -ykH -mVh -lJV -lEy -nDy -eOi -oPI -vvf -mQV -ovz -nYg -npG -ucw -oLd -gBc -bfd -rIo -xts -mhj -nEL -myk -kKh -mhj -mhj -mhj -nrk -mhj -mhj -mhj -cex -jIb -eux -eux -jZM -eux -jZM -eux -gKW -hsx -xvC -xvC -pwK -pwK -xvC -xvC -xvC -xvC -xvC -xvC -xvC -cyd -obs -eFo -xvC -ltL -lZD -wEk -ltL -ubR -uet -uGS -uGS -uGS -mDs -mDs -mDs -mDs -idc -mDs -mDs -uGS -aTr -oMs -oMs -uGS -qEZ -uGS -mDs -uGS -uGS -uGS -mDs -mDs -pOG -mDs -mDs -mDs -mDs -mDs -mDs -mDs -txG -txG -xmm -xmm -txG -hcL -txG -ngv -txG -txG -txG -txG -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -txG -rIi -rIi -rIi -rIi -rIi -nsK -"} -(136,1,1) = {" -cgS -xIt -xIt -xIt -xIt -vqi -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -nYF -vBx -vBx -vBx -qIR -vBx -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -nWw -kjD -kjD -kjD -nWw -xIt -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -uYy -uYy -uYy -pKS -pKS -pKS -vby -juQ -vby -iHf -trS -qVp -nRK -pWU -pWU -pWU -xUH -ihl -xUH -uDz -uDz -hUm -ihl -xUH -tQN -xUH -ihl -wYJ -wsa -dLu -ddh -tie -wsa -pPt -ssE -dJW -wiL -wiL -iKQ -wsa -maC -vby -vby -iHf -pFW -eHX -jHA -qWp -akT -iII -qWp -tEW -uyO -txw -uZK -gyb -kVc -jHA -ovz -nYg -qKj -txq -btp -amo -wvV -rIo -tPN -mhj -kEf -sjp -xHX -eyU -vBF -vLr -nby -vLr -lXh -slv -tzW -jZM -nUn -jIb -eux -jZM -eux -eux -gKW -heL -hLj -mBK -phw -heL -heL -vlq -upA -heL -heL -xvC -xvC -eDG -eDG -xvC -xvC -ltL -lZD -wEk -ltL -ubR -uet -uGS -uGS -mDs -mDs -mDs -mDs -mDs -idc -mDs -mDs -uGS -uGS -uGS -uGS -uGS -uGS -mDs -mDs -uGS -uGS -mDs -mDs -mDs -pOG -mDs -mDs -mDs -mDs -mDs -mDs -mDs -txG -txG -txG -txG -txG -wGi -ngv -ngv -ngv -txG -txG -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -txG -rIi -rIi -rIi -rIi -rIi -nsK -"} -(137,1,1) = {" -cgS -xIt -xIt -xIt -xIt -vqi -vqi -vqi -vqi -qIR -qIR -qIR -qIR -qIR -qIR -qIR -qIR -qIR -qIR -qIR -vBx -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -kjD -kjD -kjD -kjD -kjD -xIt -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -uYy -uYy -uYy -uYy -pKS -vby -vby -vby -vby -cKK -ihl -sDc -xUH -pWU -olc -fBT -xUH -lqR -ihl -oqb -oqb -ihl -ihl -uzg -eLB -eCC -ihl -wYJ -wsa -tvS -wiL -oFi -wsa -jKg -xLo -iJa -wiL -wiL -cBm -wsa -maC -pyF -vby -iHf -cmM -haX -aoT -qWp -mVh -cgy -wHY -rLA -cHA -cHA -pLU -kaD -wiC -fie -eew -nYg -orh -orh -nda -deV -wsk -oZB -orh -mhj -nnE -sjp -mnv -hwL -kzD -kzD -jdX -jQx -xHK -slv -tzW -jaT -eux -jIb -hGp -eux -jZM -jIb -gKW -heL -hLj -heL -heL -heL -heL -heL -heL -eEP -heL -heL -xvC -xvC -xvC -xvC -xvC -xcj -etu -roX -xcj -ncG -uet -mDs -oMs -mDs -mDs -mDs -mDs -mDs -umo -sQJ -sQJ -iYi -iYi -rDZ -rDZ -sQJ -sQJ -sQJ -sQJ -sQJ -sQJ -sQJ -sQJ -sQJ -lie -mDs -mDs -mDs -mDs -mDs -mDs -mDs -txG -txG -txG -ngv -ngv -wGi -ngv -ngv -ngv -ngv -txG -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -rIi -rIi -rIi -rIi -rIi -nsK -"} -(138,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -oCF -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -kjD -kjD -kjD -kjD -kjD -kjD -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -uYy -uYy -uYy -uYy -pKS -vby -vby -vby -vby -xTh -ihl -ihl -xDW -xUH -fPj -pWU -uPb -lqR -eEq -uDz -uDz -uJV -ihl -vsY -kiD -moC -ihl -neg -wsa -xvh -wiL -oFi -wsa -fnH -eeZ -wiL -xHE -kat -dgQ -wsa -maC -vby -vby -iHf -jJI -xle -jHA -wjU -pbD -dqF -mVh -mVh -gkr -mVh -eOi -yjB -kYJ -jgu -hJp -tLr -ryj -gCw -gCw -ixn -vBg -qgR -qgR -uDB -dVG -eTj -bqh -nfh -euu -urM -hTb -xHX -cVa -slv -tzW -jZM -eux -jZM -wZK -jcI -jZM -jIb -vMO -heL -hLj -heL -heL -rdG -sBt -heL -heL -heL -heL -heL -heL -heL -upA -upA -lDZ -ltL -lZD -wEk -ltL -ubR -uet -mDs -aTr -uGS -mDs -uGS -mDs -mDs -mDs -mDs -mDs -mDs -uGS -oMs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -rIi -rIi -rIi -ngv -ngv -ngv -bGu -ngv -ngv -xNK -ngv -txG -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -txG -rIi -rIi -rIi -rIi -rIi -nsK -"} -(139,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -kjD -kjD -kjD -kjD -kjD -kjD -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -uYy -uYy -uYy -pKS -pKS -pKS -vby -vby -vby -xxR -wYJ -ihl -ihl -xUH -xUH -xUH -hKp -ihl -uJV -hcy -xUH -uJV -ihl -xUH -uye -fJx -ihl -neg -wsa -wsa -jLF -eGU -lAY -xtc -lSo -lIX -uDM -wbD -wsa -wsa -maC -vby -vby -jLO -mLW -nDQ -ksQ -kji -paM -riW -riW -riW -iOj -iUt -eOi -poj -gJM -jHA -tlH -nYg -eMm -tPN -btp -oBh -wvV -rIo -qxD -aol -vLr -jRE -tKn -vtc -tKn -ojR -uUN -xHX -mhj -mhj -mWb -eux -eux -jZM -jZM -jZM -eux -jIb -jIb -gKW -hLj -eEP -jfU -heL -laK -lwY -lwY -vtl -heL -heL -heL -heL -rdG -pmD -lDZ -ltL -lZD -wEk -ltL -ubR -uet -mDs -uGS -oMs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -wvP -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -rIi -rIi -ngv -ngv -ngv -tVR -jpU -jpU -ngv -ngv -txG -txG -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -xmm -txG -xmm -xmm -xmm -xmm -rIi -rIi -rIi -rIi -rIi -nsK -"} -(140,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -kjD -kjD -kjD -kjD -kjD -kjD -kjD -xIt -xIt -xIt -vqi -kjD -tzY -tzY -tzY -tzY -uYy -uYy -uYy -uYy -pKS -vby -vby -vby -vby -vby -xxR -wYJ -ihl -ihl -odT -fFz -ihl -ihl -ihl -ihl -ihl -ihl -ihl -nXT -hQc -gyd -ihl -neg -neg -wsa -wsa -wsa -wsa -wsa -jfN -jfN -jfN -wsa -wsa -dtN -tbN -vby -vby -cKK -poj -gBK -yjN -tzz -xGD -lii -rPS -nYg -eOi -nYg -nYg -poj -pNa -ksQ -iUt -rEa -kWP -nLm -tKl -eKW -vpS -taz -mWB -pIB -vLr -jRE -sqV -iYs -jrY -nhI -vOM -cDO -roD -mhj -tzW -eux -jZM -eux -eux -jZM -jZM -jIb -vJb -ohb -iBo -jMm -jMm -jMm -hjw -eDl -rYS -hjw -jMm -jMm -mQg -euX -eEP -rdG -dxJ -xcj -ubE -nIx -xcj -ncG -uet -mDs -mDs -uGS -uGS -uGS -udO -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -udO -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -udO -mDs -mDs -mDs -mDs -rIi -rIi -ngv -ngv -pcI -ngv -wGi -ngv -ngv -ngv -pcI -txG -txG -xmm -xmm -xmm -xmm -xmm -xmm -xmm -txG -txG -txG -txG -txG -txG -txG -rIi -rIi -rIi -rIi -rIi -nsK -"} -(141,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -kjD -kjD -kjD -kjD -ihG -kjD -kjD -xIt -xIt -tOc -kjD -kjD -tzY -tzY -tzY -tzY -uYy -uYy -uYy -pKS -vby -vby -vby -vby -vby -tyz -iHf -unA -pnQ -sMi -sMi -sMi -hsP -wYJ -krt -krt -dtN -ihl -oCU -iAC -oCU -ihl -wYJ -krt -krt -krt -krt -krt -gaP -sMi -sMi -sMi -pzJ -krt -tbN -vby -vby -vby -iHf -poj -oBG -gyb -dmn -oBG -poj -poj -oBG -oBG -oBG -poj -poj -oBw -tjd -nYg -htf -orh -orh -kTN -sgw -dxX -rIo -orh -mhj -tud -jRE -gXH -mhj -mhj -mhj -iaK -aXw -viL -mhj -tzW -jIb -eux -eux -eux -jIb -eux -jIb -gKW -iBo -hjw -xmb -xmb -hjw -tgL -lhY -tgL -ouZ -prk -ouZ -hjw -mQg -heL -gcv -xcj -xcj -jJn -sSk -xcj -xcj -ksh -mDs -mDs -mDs -oMs -uGS -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -rIi -rIi -rIi -ngv -txG -txG -txG -wGi -ngv -ngv -ngv -txG -txG -xmm -xmm -xmm -xmm -xmm -xmm -txG -txG -txG -txG -txG -txG -txG -txG -txG -rIi -rIi -rIi -rIi -rkG -nsK -"} -(142,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -kjD -kjD -kjD -kjD -kjD -kjD -kjD -xIt -kjD -tOc -kjD -kjD -tzY -cIQ -cIQ -tzY -uYy -uYy -pKS -pKS -pKS -vby -vby -vby -tyz -tyz -iHf -unA -vsV -krt -krt -qNT -unA -maC -vby -vby -iHf -ihl -cLe -vGR -nUK -iUo -maC -juQ -vby -vby -vby -vby -vby -vby -juQ -vby -vby -vby -vby -vby -vby -juQ -iHf -poj -rvV -gyM -qfJ -bFH -poj -pyr -bYF -bYF -bYF -gDG -poj -poj -yjB -jnF -poj -orh -tPN -btp -oBh -wvV -rIo -qxD -tko -lmI -lfM -xHX -mhj -mhj -mhj -oCz -aXw -hlZ -mhj -tzW -jIb -jIb -eux -jZM -jZM -eux -jIb -gKW -xad -xmb -iLA -pED -iEh -hXl -boo -ijt -ijt -ijt -ijt -aJe -iwh -heL -xJz -cVG -qsS -lZD -wEk -ltL -cVG -rHL -mDs -mDs -mDs -oMs -uGS -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -rIi -rIi -rIi -txG -txG -xmm -txG -hcL -ngv -ngv -txG -txG -xmm -bGr -bGr -bGr -txG -txG -txG -txG -txG -ngv -ngv -ngv -ngv -ngv -rIi -rIi -rIi -rIi -rIi -rIi -rsR -nsK -"} -(143,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -uLt -vBx -vBx -vBx -vBx -uLt -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -kjD -kjD -nWw -kjD -kjD -kjD -kjD -kjD -kjD -tOc -nWw -kjD -tzY -aZY -cIQ -tzY -nbt -uYy -tyz -tyz -tyz -tyz -baa -tyz -tyz -tyz -aSf -krt -mdh -vby -vby -xxR -krt -tbN -vby -vby -iHf -ihl -vsV -fuL -qNT -ihl -maC -vby -vby -vby -vby -vby -vby -juQ -vby -vby -vrt -kZQ -piS -vby -vby -vby -iHf -poj -aLd -vCZ -ieY -rsg -sMS -sbZ -cFg -nZi -xlK -nYg -dKd -vXh -nYg -idz -idz -orh -tPN -btp -iiH -bfd -rIo -qxD -tko -hTM -jRE -mnv -hwL -vsB -gjL -qXf -lOA -roD -mhj -tzW -jIb -jIb -eux -eux -jZM -jZM -jIb -gKW -bAg -xmb -jqY -ijt -hjw -xNI -jqY -viH -ijt -ykZ -ijt -dtS -liP -heL -sQf -azA -qsS -mXX -wEk -ltL -azA -rHL -udO -mDs -mDs -mDs -uGS -udO -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -uGS -uGS -uGS -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -rIi -rIi -rIi -txG -txG -xmm -txG -wGi -ngv -ngv -txG -txG -xmm -xmm -cKR -xmm -txG -ngv -ngv -ngv -ngv -ngv -ngv -ngv -ngv -ngv -rIi -rIi -rIi -rIi -rIi -rIi -rDx -nsK -"} -(144,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -vBx -kjD -kjD -kjD -kjD -kjD -kjD -kjD -kjD -kjD -tOc -kjD -kjD -tzY -cIQ -cIQ -cIQ -tzY -tyz -tyz -tyz -jIg -jIg -tyz -tyz -tyz -jIg -jIg -tyz -vby -juQ -vby -vby -vby -vby -vby -vby -xxR -krt -tbN -raK -xxR -krt -tbN -vby -vby -vby -vby -vby -tyz -tyz -vby -vby -tZb -kCY -daV -vby -vby -vby -iHf -poj -ilj -anJ -rRm -yjN -gyb -ksQ -mPg -qLo -rtX -nwf -nwf -pSX -nwf -xlK -rkW -eMm -gEm -btp -oBh -wvV -rIo -qxD -tko -vLr -vbB -ojR -sRi -hwd -ojR -vCT -xHX -mhj -mhj -cex -jIb -jIb -eux -jZM -jIb -eux -jIb -gKW -bAg -iev -jqY -bcQ -hjw -epb -jqY -ijt -eHf -ijt -ijt -dtS -wrm -heL -rmB -xcj -xcj -uph -nIx -xcj -xcj -err -mDs -mDs -mDs -mDs -uGS -mDs -mDs -mDs -mDs -mDs -mDs -tBa -mDs -mDs -mDs -mDs -mDs -uGS -uGS -uGS -uGS -uGS -mDs -mDs -mDs -mDs -mDs -mDs -mDs -rIi -rIi -xmm -xmm -nDB -txG -ngv -wGi -wGi -wGi -hcL -nKB -nKB -nKB -nKB -txG -txG -ngv -ngv -ngv -ngv -ngv -ngv -ngv -ngv -ngv -ngv -rIi -rIi -rIi -rIi -rIi -rDW -nsK -"} -(145,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -uLt -vBx -vBx -kjD -kjD -nWw -xIt -xIt -kjD -kjD -kjD -kjD -tOc -kjD -kjD -tzY -tzY -cIQ -cIQ -cIQ -jIg -jIg -jIg -jIg -jIg -jIg -jIg -jIg -jIg -pLq -tyz -vby -vby -juQ -vby -vby -vby -vby -vby -vby -vby -vby -jTP -vby -vby -vby -juQ -vby -era -vby -vby -vby -tyz -jkP -vby -phj -jQr -tmH -vby -vby -vby -iHf -poj -rvV -jtE -pIT -pIT -poj -hsf -uch -qLo -cug -qWp -qWp -kom -xJp -ovz -auC -orh -orh -kGz -oBh -wvV -rIo -orh -mhj -aOL -oYG -gYz -xAO -urM -urM -cyU -xHX -xpf -slv -tzW -jIb -jIb -eux -jIb -jIb -wZK -jIb -gKW -bAg -nNP -jVa -ijt -hjw -ouZ -jqY -ijt -ijt -ijt -ykZ -dtS -wrm -heL -heL -dxJ -xcj -jJn -sSk -xcj -ncG -uet -mDs -mDs -mDs -mDs -uGS -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -uGS -aTr -uGS -uGS -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -rIi -rIi -txG -txG -txG -ngv -ngv -ngv -ngv -ngv -ngv -txG -xmm -txG -hcL -txG -ngv -ngv -ngv -ngv -ngv -ngv -pcI -ngv -ngv -ngv -ngv -ngv -ngv -rIi -rIi -rIi -rMD -nsK -"} -(146,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -vBx -vBx -vBx -vBx -kjD -xIt -xIt -xIt -xIt -xIt -kjD -kjD -kjD -vqi -xIt -xIt -xIt -tzY -tzY -cIQ -cIQ -jIg -jIg -tyz -jkP -jIg -jIg -jIg -jIg -jIg -tyz -tyz -vby -vby -vby -vby -vby -vby -vby -vby -vby -vby -vby -raK -vby -vby -vby -vby -vby -vby -vby -vby -vby -tyz -tyz -vby -vby -vby -vby -vby -vby -vby -kFi -poj -poj -oBG -oBG -poj -poj -hsf -uch -ykH -oIO -tmh -mVh -mVh -uyO -ovz -nYg -eMm -gEm -btp -sgw -wsk -rIo -tPN -mhj -kiW -jRE -sqV -rAb -xIg -xSR -cpO -mUJ -xpf -slv -tzW -bvM -jIb -eux -jIb -jIb -eux -eux -gKW -xad -pKc -xFw -ijt -hjw -ouZ -lnv -ijt -ipN -ijt -dtS -oKe -iwh -heL -heL -lDZ -ngw -lZD -wEk -xtY -ubR -uet -jio -kZt -kZt -kZt -gqI -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -uGS -oMs -oMs -uGS -mDs -mDs -uGS -mDs -mDs -mDs -mDs -mDs -mDs -rIi -rIi -rIi -txG -ngv -ngv -ngv -ngv -ngv -ngv -txG -txG -txG -xmm -txG -wGi -pcI -ngv -ngv -ngv -txG -txG -txG -txG -pcI -ngv -ngv -ngv -ngv -pcI -rIi -rIi -rIi -rNG -nsK -"} -(147,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vqi -vqi -qIR -qIR -qIR -qIR -qIR -tOc -vqi -vqi -vqi -vqi -vqi -vqi -tOc -vqi -vqi -xIt -xIt -xIt -xIt -tzY -cIQ -cIQ -jIg -pKS -pKS -pKS -jIg -jIg -jIg -jIg -tyz -tyz -vby -vby -vby -vby -vby -vby -vby -vby -vby -vby -vby -vby -raK -raK -raK -vby -vby -vby -vby -qpm -vby -vby -jIg -vby -vby -vby -vby -vby -vby -vby -vby -iHf -pFW -vSV -meS -meS -wyl -gPO -hgC -gAT -tct -mVh -riW -riW -rVB -riW -iUt -wHJ -orh -tPN -btp -sgw -wsk -rIo -tPN -mhj -xpA -iJX -xHX -ecV -vLr -vLr -nby -vLr -rSo -slv -tzW -jIb -jIb -eux -jIb -jZM -jZM -eux -gKW -nDI -hjw -xmb -dRV -hjw -ouZ -sxT -ijt -dtS -gGA -bHg -hjw -lUa -heL -heL -htI -ltL -lZD -wEk -ltL -waf -uet -eSA -kRn -kRn -kRn -qhj -mDs -mDs -mDs -mDs -rIi -mDs -mDs -mDs -mDs -mDs -oMs -oMs -uGS -uGS -uGS -mDs -uGS -mDs -mDs -mDs -mDs -mDs -mDs -rIi -rIi -rIi -ngv -ngv -ngv -pcI -txG -txG -txG -txG -txG -nvl -iHW -rmn -eTu -rmn -vsX -ngv -nLz -txG -txG -cuW -cuW -txG -ngv -ngv -ngv -ngv -ngv -xNK -ngv -rIi -mXM -nsK -"} -(148,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzY -cIQ -cIQ -jIg -jIg -pKS -jIg -tyz -jIg -jIg -tyz -tyz -vby -vby -vby -vby -vby -vby -vby -vby -vby -vby -vby -tXk -vmp -tBM -lKp -eon -raK -raK -vby -vby -vby -vby -vby -jIg -tyz -tyz -tyz -tyz -vby -vby -pyF -vby -iHf -mLW -hsf -oSL -nwf -cgV -odD -nwf -mVh -qBz -ovz -nYg -aRp -pSk -jKd -jKd -jKd -igJ -tPN -btp -oBh -bfd -rIo -tPN -mhj -nEL -nHg -gvO -mhj -mhj -mhj -nrk -mhj -mhj -mhj -mWb -jIb -jIb -eux -jZM -jZM -eux -eux -wGR -eWZ -nDI -qfy -qfy -qfy -hjw -hTH -lAq -xFA -hjw -qfy -lUa -nsE -heL -heL -dxJ -trd -mtO -cbZ -jdk -rMI -uet -eSA -kRn -jaB -kuq -tLt -uGS -mDs -mDs -mDs -rIi -rIi -mDs -mDs -mDs -mDs -uGS -oMs -uGS -oMs -mDs -uGS -oMs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -rIi -rIi -ngv -ngv -txG -txG -xmm -xmm -nDB -ngv -ngv -ngv -wnq -gCK -dtV -gCK -oVE -ngv -ngv -ngv -txG -txG -txG -ngv -ngv -jwF -ktM -oEA -mDb -ngv -rIi -rIi -rIi -nsK -"} -(149,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -cIQ -cIQ -cIQ -jIg -jIg -pKS -tyz -tyz -jIg -tyz -tyz -vby -vby -vrt -kZQ -piS -vby -vby -vby -vby -vby -tXk -vgZ -tBM -qMR -vEM -qMR -tBM -jRM -eon -raK -raK -vby -vby -vby -vby -vby -tyz -jIg -tyz -tyz -vby -vby -vby -iHf -cmM -vVg -jHA -qWp -qWp -qWp -mVh -mVh -beW -ovz -oYI -rlx -dEW -uUm -yjN -yjN -orh -orh -leZ -hAL -wvV -oZB -orh -mhj -vLr -jRE -xHX -mhj -ewR -caM -nby -caM -fzJ -mhj -tzW -jaT -jIb -eux -jcI -eux -jIb -jIb -jIb -gKW -heL -heL -heL -eWZ -bAg -sxT -ijt -dtS -xdj -nsE -heL -heL -heL -rdG -dxJ -xcj -qMn -sPq -xcj -ncG -uet -eSA -kRn -kRn -kRn -qhj -uGS -mDs -mDs -mDs -rIi -rIi -rIi -mDs -mDs -mDs -bfa -uGS -uGS -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -ngv -ngv -ngv -txG -txG -txG -xmm -txG -ngv -ngv -fwH -jOp -gCK -gCK -xyj -jhS -jhS -hey -xBY -rJo -ngv -ngv -ngv -ngv -ngv -eFU -ngv -bQY -mDb -ngv -ngv -rIi -rIi -nsK -"} -(150,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -uLt -vBx -vBx -uLt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzY -tzY -cIQ -jIg -pKS -pKS -pKS -jIg -tyz -tyz -tyz -vby -vby -tZb -kCY -daV -vby -vby -vby -tXk -vgZ -tBM -qMR -awx -pYo -vEM -pYo -asG -qMR -tBM -jRM -eon -raK -vby -vby -juQ -vby -tyz -tyz -jIg -tyz -vby -vby -juQ -iHf -cmM -hsf -owU -wAS -mVh -mPg -mVh -mVh -jIV -gSY -vQI -ukV -sbZ -kFE -tmL -eLe -orh -tPN -btp -sgw -wsk -rIo -tPN -mhj -eXA -vfg -mUJ -mhj -nNS -oVt -iXO -caM -caM -jUS -tzW -jIb -jIb -jZM -jIb -jIb -hKm -rXe -rXe -heL -heL -heL -heL -ohb -bAg -sxT -ijt -dtS -xdj -euX -heL -heL -heL -ohb -dxJ -xcj -lAW -uaZ -xcj -ncG -uet -eSA -kRn -clc -kuq -iZH -uGS -mDs -mDs -rIi -rIi -rIi -rIi -mDs -mDs -mDs -mDs -mDs -uGS -mDs -mDs -uGS -oMs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -ngv -ngv -ngv -txG -xmm -xmm -ngv -ngv -fwH -xRE -thk -jhS -mWd -mWd -xyj -mWd -nIG -jhS -thk -dci -oAK -ngv -ngv -ngv -ngv -bRU -aZi -vge -mDb -ngv -ngv -rIi -rIi -nsK -"} -(151,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -vBx -uLt -vBx -vBx -uLt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzY -cIQ -jIg -jIg -pKS -jIg -tyz -tyz -tyz -tyz -vby -vby -phj -jQr -tmH -vby -vby -tXk -vgZ -qMR -vEM -vEM -vEM -vEM -vEM -vEM -vEM -vEM -vEM -qMR -jRM -eon -raK -raK -vby -vby -vby -tyz -jIg -pLq -vby -vby -vby -iHf -cmM -vVg -pXp -qNz -mVh -lRX -xtF -mVh -mVh -cYy -lkt -yjN -jHA -qWp -jfY -qDN -orh -iZp -btp -sgw -dxX -bdV -qXu -mhj -mhj -pKb -ldA -mhj -mhj -pgt -uus -gTU -xVE -mhj -tzW -jIb -eux -nUn -jIb -hKm -ohb -iBo -jMm -jMm -jMm -jMm -jMm -jMm -hjw -hTH -lAq -xFA -hjw -jMm -jMm -jMm -jMm -jMm -hjw -hjw -jqY -rcp -hjw -iwh -uet -eSA -kRn -kRn -kRn -qhj -uGS -mDs -mDs -rIi -rIi -rIi -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -oMs -uGS -mDs -mDs -mDs -mDs -mDs -mDs -mDs -ngv -ngv -txG -xmm -xmm -pcI -ngv -fwH -orn -qOf -kfN -syu -bHK -bHK -xyj -bHK -sgj -nkm -eXl -xAe -xTr -kym -ngv -pcI -ngv -ngv -ngv -ngv -pcI -sgt -ngv -rIi -rIi -nsK -"} -(152,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzY -cIQ -jIg -vby -pKS -jIg -jIg -jIg -tyz -tyz -vby -vby -vby -vby -vby -tXk -vgZ -tBM -qMR -aFa -vEM -fJX -fJX -pYo -vEM -fJX -osq -osq -vEM -jMX -qMR -tBM -jRM -eon -raK -raK -vby -tyz -tyz -jIg -vby -vby -vby -iHf -pFW -luE -ten -xtF -tbE -shk -bSO -eYA -ovz -nYg -lev -uma -jHA -qWp -oIO -jVX -orh -uZz -jsz -oBh -wvV -uPv -tPN -mhj -qdj -oWc -urM -ouX -mhj -mhj -mhj -mhj -mhj -mhj -tzW -jIb -jIb -jZM -jIb -gKW -iBo -hjw -ldz -nwR -uEi -abi -cWO -xmb -xmb -jqY -ijt -dtS -hjw -cRs -ckG -uYJ -jyo -cdT -hYS -tpW -jqY -rcp -hYC -hjw -sCi -rxC -rou -rou -tKz -ezz -oMs -mDs -mDs -mDs -rIi -mDs -mDs -mDs -mDs -mDs -mDs -udO -mDs -mDs -mDs -uGS -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -ngv -ngv -xmm -ngv -ngv -fwH -orn -fpy -gCK -ioI -kPa -xRX -jCt -mWd -xyj -mWd -eTU -mWd -bHK -mWd -gCK -fpy -dci -kym -ngv -ngv -ngv -ngv -ngv -ngv -ngv -rIi -rIi -nsK -"} -(153,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -xIt -xIt -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzY -tzY -cIQ -jIg -pKS -pKS -pKS -jIg -jIg -tyz -tyz -vby -vby -vby -tXk -lDR -aKK -qMR -awx -pYo -aFa -vEM -osq -osq -pYo -qLU -pYo -pYo -pYo -vEM -fhi -iLP -iLP -qMR -tBM -jRM -eon -raK -vby -tyz -jIg -vby -vby -vby -iHf -mLW -dTL -jHA -dxx -dZf -vuv -eCd -aAk -jTb -oYI -rlx -dvX -uch -qWp -jfY -qDN -orh -orh -btp -oBh -wvV -rIo -orh -mhj -tJg -vCT -ojR -ojR -nEL -vLr -vLr -mVb -vLr -mhj -tzW -jaT -jIb -eux -jIb -gKW -xad -eWt -iiP -pED -pED -pED -pED -pED -pED -oYq -pED -rga -byj -pED -pED -pED -pED -rga -pED -pED -hWC -vzI -ojm -hjw -uet -mDs -mDs -mDs -uGS -oMs -uGS -udO -mDs -mDs -mDs -mDs -udO -mDs -mDs -mDs -udO -mDs -mDs -mDs -mDs -uGS -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -ngv -ngv -ngv -fwH -orn -fpy -gCK -mWd -mWd -nwd -aPA -mWd -mWd -mWd -xyj -mWd -mWd -mWd -bHK -mWd -mWd -mWd -gCK -fpy -dci -kym -ngv -ngv -ngv -ngv -ngv -rIi -rIi -nsK -"} -(154,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -uLt -vBx -vBx -vBx -vBx -vBx -vBx -uLt -vBx -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzY -tzY -qDM -jIg -jIg -jIg -jIg -jIg -wNh -jIg -tyz -vby -juQ -tXk -vnB -aeG -ozG -bcV -bcV -bcV -bcV -bcV -bcV -bcV -pEK -bcV -bcV -bcV -bcV -bcV -bcV -bcV -bcV -bcV -bcV -lAi -omk -eon -raK -tyz -jIg -vby -vby -vby -iHf -cmM -haX -kNu -jfY -uzm -fhF -gRj -fNo -ovz -pAt -cCj -cAR -jHA -mVh -mVh -vXh -eYC -tPN -btp -oBh -bfd -rIo -tPN -mhj -wji -ojR -ojR -ojR -sRi -ojR -wrR -ojR -alh -mhj -tzW -jIb -eux -eux -eux -gKW -xad -cIp -ijt -rQa -dgz -dgz -dtS -dgz -dgz -dtS -ijt -ijt -vAB -ijt -ijt -ijt -asD -asD -ijt -viH -jqY -rcp -gDB -hjw -uet -udO -mDs -mDs -mDs -uGS -udO -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -ngv -ngv -fwH -fbs -uXB -lZJ -lZJ -lZJ -lZJ -lZJ -lZJ -lZJ -lZJ -lZJ -hmF -oLu -oLu -oLu -oLu -oLu -oLu -oLu -oLu -oLu -qxM -dci -kym -ngv -ngv -ngv -ngv -rIi -rIi -nsK -"} -(155,1,1) = {" -cgS -xIt -xIt -xIt -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -qIR -qIR -qIR -qIR -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzY -cIQ -jIg -jIg -jIg -jIg -jIg -jIg -tyz -tyz -vby -vby -vmp -wug -avJ -avJ -avJ -avJ -avJ -avJ -avJ -avJ -vBm -hps -fIj -xnx -vKl -mXb -avJ -avJ -avJ -avJ -avJ -avJ -avJ -uYM -lKp -raK -tyz -jIg -tyz -vby -vby -iHf -mLW -haX -nNU -vCZ -oHR -iLK -mVh -oIO -aHR -lev -mDU -ktT -mVh -mVh -jfY -qDN -orh -tPN -kGR -cct -int -ncl -tPN -mhj -vLr -ojR -ojR -ojR -sRi -ojR -ojR -ojR -hMq -mhj -tzW -jIb -jIb -eux -jIb -gKW -xad -jnm -ijt -wIa -oFT -iBR -gSx -oFT -hfL -oGJ -ijt -xmb -hjw -quL -rcp -vke -gzE -mEU -umG -rcp -nXq -rcp -pIF -hjw -rNB -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -uGS -uGS -uGS -mDs -mDs -mDs -mDs -mDs -mDs -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nzX -ngv -xRE -nDu -kqs -vXc -kqs -kqs -kqs -ecy -ecy -ecy -kqs -kqs -vXc -kqs -kqs -ecy -ecy -ecy -ecy -ecy -kqs -vXc -kqs -aUl -hey -ngv -ngv -ngv -txG -rIi -rIi -nsK -"} -(156,1,1) = {" -cgS -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -oCF -vBx -qIR -vBx -vBx -vBx -vBx -vBx -vBx -oCF -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -kjD -kjD -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tzY -tzY -cIQ -jIg -jIg -jIg -jIg -jIg -tyz -tyz -vby -vby -ePO -qMR -eFR -avJ -avJ -avJ -avJ -qEN -rOU -fXD -mXb -avJ -osS -cbw -hkE -umk -kdz -fIj -xnx -vKl -bhE -mXb -avJ -avJ -gSb -qMR -epF -tyz -jIg -jIg -vby -pyF -sRQ -mLW -hsf -bcy -mPm -doc -mPg -mVh -qWp -ovz -lev -mDU -jHA -mVh -qWp -mVh -npN -orh -tPN -piE -sgw -wsk -piE -tPN -mhj -eVR -tFg -tFg -tFg -mhj -xXU -mBM -mVb -nVj -mhj -tzW -jIb -jZM -jZM -jIb -gKW -xad -obT -xIR -mKL -mrh -mrh -mJc -mrh -dqK -oGJ -ijt -xmb -hjw -xmb -ijt -ijt -nJZ -tGa -oGD -tXg -jqY -cMK -gzO -hjw -uet -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -uGS -uGS -uGS -uGS -uGS -mDs -mDs -mDs -mDs -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nzX -ngv -uPm -gys -kqs -kqs -kqs -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -kqs -kqs -ecy -pUt -gCK -uUq -ngv -txG -txG -rIi -rIi -nsK -"} -(157,1,1) = {" -cgS -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -qIR -vBx -vBx -vBx -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -xIt -xIt -xIt -kjD -kjD -kjD -kjD -kjD -xIt -xIt -xIt -xIt -tzY -tzY -cIQ -cIQ -tyz -tyz -tyz -tyz -tyz -tyz -vby -vby -vby -tib -qMR -eFR -avJ -avJ -avJ -oaT -wpx -mrN -qin -otc -otc -oZE -uXb -uHs -qUG -fQl -cbw -hkE -umk -uhs -mXb -avJ -avJ -vwv -qMR -hsk -tyz -jIg -tyz -vby -juQ -iHf -pFW -vVg -rYv -qHs -uAt -xtF -kom -qWp -ovz -lev -ebg -jHA -mVh -vCZ -mVh -xpF -orh -orh -soj -cVm -fVE -soj -orh -mhj -mhj -mhj -mhj -mhj -mhj -mhj -uMZ -mhj -mhj -mhj -oRm -jIb -eux -nUn -jZM -dYO -hjw -oQi -mrh -mrh -mrh -cpl -mrh -mrh -dKD -dxy -eRT -qYn -xad -xmb -ijt -ijt -myC -myC -ijt -ijt -jqY -fgL -xoV -hjw -uet -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -uGS -hUC -uGS -uGS -oMs -uGS -hUC -uGS -rIi -mDs -rIi -rIi -rIi -wwL -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nzX -ngv -uPm -gys -kqs -kqs -kqs -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -kqs -ecy -pUt -gCK -kDw -ngv -ngv -txG -rIi -rIi -nsK -"} -(158,1,1) = {" -cgS -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -qIR -vBx -vBx -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -vqi -vqi -vqi -tOc -tOc -tOc -tOc -tOc -vqi -vqi -kjD -kjD -cIQ -nIM -cIQ -tzY -tyz -pKS -pKS -pKS -tyz -vby -vby -vby -vby -tib -qMR -eFR -avJ -avJ -iya -weK -wMa -wMa -wMa -vCE -vCE -wMa -wMa -wMa -ujV -oZE -uXb -uHs -aSN -kFS -mXb -avJ -avJ -whO -dRq -hsk -tyz -jIg -tyz -tyz -vby -iHf -jlX -iKi -jHA -mVh -peB -mVh -rCj -tTe -uVl -lev -mDU -jHA -qWp -qWp -mVh -lwT -orh -heM -wTv -kEn -sVZ -igD -dli -orh -woj -uNo -uNo -uNo -uNo -ffw -uNo -uNo -sFv -dQX -vWf -jaT -jIb -jZM -eux -gKW -hjw -bKB -mrh -mrh -mrh -mrh -mrh -mrh -oQi -mrh -mrh -mrh -xad -lLD -ijt -ipN -ijt -dtS -dtS -sxm -lnv -ovD -aZq -hjw -uet -mDs -mDs -mDs -mDs -mDs -mDs -mDs -oMs -uGS -uGS -oMs -oMs -oMs -uGS -oMs -uGS -rIi -rIi -rIi -rIi -wwL -rIi -rkR -rkR -rkR -rkR -rkR -rkR -rkR -rkR -ngv -uPm -gys -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -pUt -gCK -kDw -ngv -ngv -ngv -rIi -rIi -nsK -"} -(159,1,1) = {" -cgS -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -vBx -uLt -vBx -vBx -vBx -uLt -vBx -vBx -qIR -vBx -uLt -xIt -xIt -xIt -xIt -xIt -xIt -uLt -vBx -vBx -vBx -uLt -xIt -xIt -vqi -xIt -xIt -nWw -kjD -kjD -kjD -kjD -kjD -cpa -kjD -kjD -kjD -cIQ -tzY -nbt -vby -vby -pKS -wyE -jIg -vby -vby -vby -vby -tib -qMR -eFR -ixy -jdh -gUR -cwc -tIE -wtu -wtu -wtu -kMm -wtu -kMm -aVe -wMa -wMa -wMa -wMa -uLr -quz -avJ -avJ -avJ -whO -qMR -afm -tyz -jIg -tyz -tyz -vby -iHf -vFk -eIX -qcQ -uWx -tBn -bva -lVy -riW -jSe -lev -mDU -jHA -mMy -czN -acH -xIN -orh -tPN -wsk -hwQ -oJa -oDf -oDf -eCx -kJs -vyw -cHh -kbC -gay -iBY -sNd -uFD -ncl -cAf -vWf -jIb -jIb -eux -jcI -gKW -hjw -mrh -mrh -dtu -gIY -mrh -ilc -mrh -mrh -mrh -mrh -mrh -xad -miP -asD -ijt -dtS -mHE -hjw -hjw -hTH -hjw -hjw -hjw -uet -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -uGS -oMs -oMs -oMs -oMs -oMs -oMs -uGS -uGS -rIi -rIi -rIi -rIi -rkR -rkR -azo -gCK -qNH -wok -gPL -apw -rkR -rkR -gCK -gys -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -kqs -kqs -pUt -gCK -kDw -ngv -ngv -ngv -rIi -rIi -nsK -"} -(160,1,1) = {" -cgS -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -uLt -vBx -vBx -vBx -qIR -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -xIt -vqi -xIt -kjD -kjD -kjD -kjD -kjD -kjD -kjD -tOc -kjD -kjD -kjD -kjD -tzY -cIQ -vby -vby -pKS -jIg -jIg -vby -vby -vby -vby -tib -qMR -eFR -kcF -iMn -eDM -khy -bMA -wxV -bCu -qyj -qyj -oFn -tRN -lHZ -qUU -wtu -wtu -wtu -uLr -mXb -avJ -avJ -avJ -tTr -qMR -afm -vby -vby -jIg -jIg -tyz -syt -wYJ -obW -iKi -iKi -toZ -hNA -hNA -wMj -lcm -lev -rlb -nYg -icZ -kEG -icZ -rkW -orh -heM -dVX -wvV -wvV -wsk -tPN -orh -orh -orh -luX -orh -orh -luX -orh -orh -orh -orh -gIp -jIb -jIb -jZM -jIb -gKW -hjw -iDI -mrh -mrh -hWR -mrh -vHC -mrh -dNw -mrh -mrh -mrh -xad -gzO -ijt -ijt -dtS -hjw -hjw -fai -uUh -sQW -hjw -mqu -uet -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -uGS -aTr -oMs -oMs -oMs -oMs -oMs -uGS -rIi -rIi -rIi -rIi -rkR -oXo -tiC -mOj -mOj -mOj -pWw -gCK -gCK -dyf -gCK -gys -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -xxb -ecy -ecy -paR -ecy -ecy -ecy -ecy -ecy -xrD -kqs -pUt -gCK -kDw -pcI -ngv -ngv -rIi -rIi -nsK -"} -(161,1,1) = {" -cgS -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -kjD -vqi -kjD -kjD -kjD -kjD -kjD -kjD -kjD -kjD -tOc -kjD -kjD -kjD -kjD -kjD -tzY -vby -pKS -pKS -pKS -jIg -vby -vby -vby -vby -tib -qMR -eFR -iyi -xTR -jrp -weK -fHM -wtu -wtu -wtu -kMm -wtu -kMm -hqB -eRE -eRE -eRE -eRE -xvL -aHQ -avJ -avJ -avJ -whO -qMR -afm -vby -jIg -tyz -jIg -vby -xxR -roC -vFk -eUC -bcK -pkP -xCv -xCv -xCv -poj -sYN -poj -xCv -xCv -xCv -xCv -poj -orh -cNO -wsk -wvV -wvV -wsk -cNO -orh -azI -xqs -vxg -wsk -orh -aQf -vZd -wsk -cGD -orh -tzW -jIb -jIb -eux -jIb -gKW -hjw -gIY -mrh -mrh -mrh -mrh -mrh -mrh -mrh -eDl -cpl -dqK -xad -tdJ -cMK -ijt -dtS -qQc -bdf -ekG -cJz -ekG -fng -mqu -uHE -nzi -knc -mDs -tBa -mDs -mDs -mDs -mDs -mDs -mDs -oMs -oMs -oMs -uGS -oMs -uGS -rIi -rIi -rIi -rIi -rIi -rkR -vbK -cot -rem -rtC -weV -rem -rem -dtV -wON -dtV -mqR -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -kqs -kqs -pUt -gCK -kDw -ngv -ngv -ngv -rIi -rIi -nsK -"} -(162,1,1) = {" -cgS -xIt -xIt -xIt -vqi -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -kjD -tOc -kjD -kjD -kjD -kjD -ihG -kjD -kjD -kjD -tOc -kjD -kjD -kjD -kjD -kjD -nbt -jIg -vby -pKS -vby -jIg -juQ -vby -vby -vby -dbd -qMR -ojG -avJ -avJ -kAU -cwc -eRE -eRE -sgp -vCE -vCE -eRE -eRE -eRE -iuA -bNm -hrr -acD -fQG -ilz -mXb -avJ -avJ -whO -qMR -afm -vby -jIg -jIg -tyz -vby -vby -xxR -iDL -krt -oSV -dDD -krt -krt -krt -pir -iPj -sUO -krt -krt -krt -krt -vsV -orh -sML -wsk -wvV -wvV -wsk -cNO -orh -nPI -tcF -wvV -wsk -orh -hPB -rRB -shZ -orh -orh -tzW -jIb -jZM -jZM -jIb -gKW -hjw -mrh -dVf -oQi -mrh -mrh -uZC -mrh -eDl -ejE -mrh -ewh -xad -pVU -ijt -ipN -rAx -dFv -mqX -wVG -moh -cJz -fng -mqu -cnw -jum -hDw -mDs -mDs -mDs -udO -mDs -mDs -mDs -mDs -uGS -cXJ -oMs -uGS -uGS -rIi -rIi -rIi -rIi -rIi -rIi -rkR -oXo -tXK -mOj -lMx -mOj -mOj -gCK -vfe -dyf -gCK -jcm -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -pUt -gCK -kDw -ngv -ngv -ngv -rIi -rIi -nsK -"} -(163,1,1) = {" -cgS -xIt -xIt -xIt -vqi -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -uLt -vBx -kjD -tOc -kjD -kjD -nWw -kjD -kjD -kjD -kjD -kjD -cpa -ihG -kjD -xIt -xIt -tzY -tzY -vby -vby -pKS -vby -lIK -vby -vby -vby -vby -tib -qMR -eFR -vBm -avJ -avJ -mor -bln -gUq -vlA -ree -ree -bNm -hrr -acD -cbG -nXH -irr -tyc -xKA -efi -mXb -avJ -avJ -tTr -qMR -afm -vby -tyz -tyz -tyz -juQ -vby -vby -vby -vby -aof -vby -vby -vby -juQ -vby -vby -vby -tyz -tyz -tyz -jIg -iHf -orh -iZz -fKC -wsk -miB -tPN -heM -orh -pLJ -hPB -dBD -taI -orh -pLJ -gQg -orh -orh -hsx -dVL -jIb -eux -nUn -jIb -vjV -hjw -mrh -mrh -mrh -mrh -mrh -mrh -eDl -mrh -mrh -mrh -mrh -xad -pKc -ijt -asD -gzO -lAq -mhK -nDG -bMU -ybe -fng -mqu -bvQ -epv -pRb -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -uGS -oMs -oMs -uGS -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rkR -rkR -thQ -eHq -wvm -rDn -igX -mlR -rkR -rkR -gCK -jcm -kqs -kqs -kqs -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -kqs -ecy -pUt -gCK -kDw -ngv -ngv -ngv -rIi -rIi -nsK -"} -(164,1,1) = {" -cgS -xIt -xIt -xIt -vqi -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -vBx -kjD -kjD -tOc -kjD -kjD -kjD -kjD -kjD -kjD -kjD -kjD -tOc -kjD -xIt -xIt -xIt -tzY -cIQ -vby -pKS -scg -pKS -pZD -vby -vby -vby -vby -vcr -qMR -eFR -avJ -vBm -avJ -avJ -oBx -ueO -gyz -mXb -avJ -eLK -irr -tyc -xKA -fQl -htb -sjh -snG -sJq -mXb -avJ -avJ -whO -qMR -kHK -jIg -kht -xEP -xEP -xEP -nLj -xEP -xEP -xEP -xEP -xEP -pOt -vby -vby -vby -vby -vby -vby -vby -vby -vby -iHf -orh -orh -orh -cAf -fVE -orh -orh -orh -orh -orh -orh -orh -orh -orh -orh -orh -heL -dVL -jIb -jaT -eux -jZM -jIb -gKW -hjw -hjw -xLs -hif -mrh -mrh -mrh -mrh -mrh -hif -wXM -iDO -hjw -hjw -tec -aGG -ssh -hjw -uFZ -ekG -rbD -hjw -hjw -uet -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -uGS -oMs -oMs -uGS -uGS -rIi -rIi -rIi -rIi -rIi -rIi -lFR -rIi -rkR -rkR -rkR -rkR -rkR -rkR -rkR -rkR -ngv -uPm -jcm -kqs -kqs -kqs -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -ecy -kqs -kqs -ecy -pUt -gCK -oEx -ngv -ngv -ngv -rIi -rIi -nsK -"} -(165,1,1) = {" -cgS -xIt -xIt -xIt -vqi -xIt -xIt -uLt -vBx -vBx -vBx -uLt -vBx -vBx -vBx -vBx -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -kjD -kjD -tOc -kjD -kjD -kjD -kjD -kjD -kjD -xIt -xIt -vqi -xIt -xIt -xIt -xIt -tzY -cIQ -jIg -vby -pKS -iey -tyz -tyz -vby -vby -vby -vby -uJv -maB -oVA -avJ -avJ -avJ -avJ -avJ -avJ -avJ -avJ -osS -htb -sjh -snG -mXb -avJ -avJ -avJ -avJ -avJ -avJ -avJ -aBu -enh -vby -tyz -swH -ffQ -ssR -eFc -ffQ -rhm -sJv -cXu -ffQ -ffQ -uxh -vby -vby -vby -vby -vby -vby -vby -vby -vby -yij -krt -krt -dDD -krt -krt -tEU -dDD -wzv -kpb -kpb -kpb -txr -kpb -kpb -kpb -kpb -dVL -jIb -jaT -eux -jZM -eux -jaT -vMO -hsx -hjw -hjw -hjw -gTf -gTf -gTf -gTf -gTf -hjw -hjw -hjw -hjw -hjw -hjw -hjw -hjw -hjw -hjw -jRU -lAq -hjw -mqu -uet -mDs -mDs -mDs -mDs -mDs -uGS -uGS -uGS -uGS -uGS -oMs -oMs -uGS -uGS -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -lFR -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nzX -ngv -nVx -guX -kqs -vXc -kqs -kqs -kqs -ecy -ecy -ecy -kqs -kqs -vXc -kqs -kqs -ecy -ecy -ecy -ecy -ecy -kqs -vXc -kqs -aUl -iFj -ngv -ngv -ngv -ngv -rIi -rIi -nsK -"} -(166,1,1) = {" -cgS -xIt -xIt -xIt -vqi -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -vBx -vBx -vBx -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -kjD -tOc -kjD -kjD -kjD -xIt -kjD -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -cIQ -tzY -jIg -vby -pKS -iey -tyz -tyz -oKU -ghd -xDv -vby -qbe -gmJ -rxI -lBH -fZD -fZD -fZD -fZD -fZD -fZD -lBH -fZD -lBH -fZD -fZD -fZD -fZD -fZD -fZD -fZD -fZD -fZD -rxI -woU -frR -vby -tyz -swH -ffQ -lXZ -aaa -hmm -nnV -hmm -hmm -qFK -pST -uxh -vby -vby -vby -era -vby -vby -vby -vby -vby -vby -vby -vby -tyz -tyz -tyz -pPZ -cei -mPq -eux -bBV -jIb -jIb -jIb -jIb -jIb -jIb -jIb -jIb -eux -eux -eux -jIb -kpF -jIb -pjj -czV -kpb -kpb -kpb -kpb -kpb -txr -kpb -kpb -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -snC -snC -snC -snC -kxd -udO -mDs -mDs -mDs -uGS -oMs -gCM -oMs -uGS -oMs -oMs -oMs -gCM -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nzX -ngv -bhm -erZ -jdO -sgl -sgl -sgl -sgl -sgl -sgl -sgl -sgl -sgl -sgl -sgl -sgl -sgl -pLD -sgl -sgl -sgl -sgl -sgl -jdO -eVq -kVt -ngv -ngv -ngv -txG -rIi -rIi -nsK -"} -(167,1,1) = {" -cgS -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -vBx -pyu -uLt -vBx -vBx -uLt -vBx -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -kjD -tOc -kjD -kjD -nWw -xIt -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -tzY -tyz -pKS -pKS -pKS -rZN -tyz -oKU -vby -vby -vby -vby -qbe -gbQ -auP -qMR -pYo -pYo -asG -vEM -tIv -tIv -asG -vEM -pYo -asG -asG -vEM -pYo -pYo -asG -qMR -auP -ujY -frR -vby -vby -tyz -swH -ffQ -dqA -kgx -nnV -nnV -jMq -nnV -nDF -hzP -uxh -vby -juQ -vby -vby -vby -vby -qpm -vby -vby -vby -juQ -vby -vby -tyz -dLd -jIg -bNd -oZe -tyz -jIb -jIb -jaT -jIb -jIb -jIb -jIb -jIb -eux -eux -eux -jIb -aHb -jIb -bBV -rlV -wGQ -jIb -jIb -jIb -jIb -eux -eux -jZM -jZM -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -uGS -oMs -uGS -uGS -mDs -mDs -mDs -mDs -mDs -mDs -uGS -uGS -oMs -uGS -oMs -mDs -oMs -oMs -uGS -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nzX -nzX -nzX -ngv -bhm -erZ -jMU -gCK -mWd -mWd -mWd -gic -mWd -mWd -auS -eDu -mWd -cNV -mWd -bHK -sMe -jmj -sMe -czo -cca -xOn -kVt -ngv -ngv -ngv -ngv -txG -rIi -rIi -nsK -"} -(168,1,1) = {" -cgS -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -vBx -vBx -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -tOc -tOc -cpa -vqi -vqi -vqi -vqi -vqi -vqi -vqi -xIt -xIt -xIt -xIt -xIt -xIt -rIi -vby -pKS -xaT -jIg -tyz -tyz -vby -vby -vby -vby -vby -vby -qbe -gbQ -auP -qMR -asG -vEM -asG -aFa -aFa -vEM -pYo -pYo -aFa -vEM -pYo -qMR -auP -ujY -frR -vby -vby -vby -vby -jIg -swH -ffQ -hmm -hmm -hmm -nnV -hmm -hmm -oaa -hzP -uxh -eqm -iFe -sEe -iFe -sEe -iFe -vSD -vby -vby -vby -vby -vby -vby -vby -vby -hmd -uGI -uGI -vby -vby -jIb -jIb -jIb -bvM -jIb -jIb -jZM -eux -eux -eux -jZM -rlV -jaT -dQa -bBV -jIb -jIb -jIb -jIb -jIb -jIb -jIb -nUn -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -uGS -oMs -oMs -aTr -uGS -mDs -mDs -mDs -mDs -mDs -mDs -uGS -uGS -oMs -mDs -oMs -uGS -oMs -oMs -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rkR -txG -ngv -ngv -ngv -bhm -erZ -jMU -gCK -mWd -kcf -mWd -mWd -cNV -bHK -mWd -cNV -mWd -bHK -jmj -ogh -pKf -xOn -kVt -ngv -ngv -ngv -ngv -ngv -txG -rIi -rIi -rIi -nsK -"} -(169,1,1) = {" -cgS -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -vBx -vBx -vBx -xIt -xIt -xIt -xIt -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -rIi -pKS -wxn -tGE -jIg -tyz -tyz -tyz -tyz -vby -vby -vby -vby -vby -qbe -gbQ -qMR -vEM -vEM -vEM -vEM -vEM -vEM -vEM -vEM -vEM -qMR -ujY -frR -vby -vby -vby -vby -vby -jIg -tyz -swH -xUg -oMF -ffQ -qEA -ffQ -ffQ -ffQ -ffQ -ffQ -pSO -jXL -unA -sjb -unA -sjb -unA -lQo -vby -vby -vby -vby -vby -vby -vby -vby -vby -aof -qRY -tsI -vby -vby -jIb -jIb -jIb -jIb -jIb -jIb -jZM -nUn -eux -eux -gpA -jIb -jaT -jIb -bBV -jIb -jIb -jIb -jIb -jIb -jIb -jIb -jIb -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -oMs -oMs -oMs -uGS -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -mDs -oMs -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rkR -ngv -ngv -ngv -ngv -ngv -ngv -bhm -erZ -gCK -wsH -bHK -bHK -cKy -bHK -bHK -hIE -bHK -bHK -ogh -vTp -kVt -ngv -ngv -pcI -ngv -ngv -ngv -pcI -txG -rIi -rIi -rIi -nsK -"} -(170,1,1) = {" -cgS -xIt -xIt -xIt -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -vqi -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -pKS -pKS -pKS -rIi -rIi -tyz -iCR -tyz -jIg -tyz -vby -vby -vby -vby -vby -qbe -gbQ -auP -qMR -pYo -awx -vEM -aFa -pYo -qMR -auP -ujY -frR -vby -vby -vby -vby -vby -jIg -tyz -vby -csU -eEi -cRC -eEi -eEi -eEi -eEi -eEi -eEi -eEi -euO -aeW -unA -uZP -uZP -uZP -unA -mHd -tyz -tyz -vby -vby -vby -vby -vby -vby -gPi -vby -hrs -qRY -vby -vby -vby -jIb -jIb -jIb -eux -jZM -eux -jIb -jIb -jZM -eux -rli -iho -sia -jIb -jIb -jIb -jIb -jIb -jIb -jaT -jIb -jIb -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -uGS -oMs -uGS -mDs -udO -mDs -mDs -mDs -oMs -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nzX -nzX -nzX -ngv -txG -txG -txG -ngv -ngv -bhm -erZ -jMU -gCK -mWd -mWd -bHK -mWd -mWd -gCK -jMU -eVq -kVt -ngv -ngv -ngv -ngv -ngv -ngv -ngv -ngv -txG -rIi -rIi -rIi -nsK -"} -(171,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -jIg -tyz -tyz -yib -vby -vby -vby -vby -vby -qbe -gbQ -auP -qMR -vEM -qMR -auP -ujY -frR -vby -vby -vby -vby -vby -vby -tyz -tyz -jIg -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -jIg -iQL -ntZ -oCf -oCf -oCf -ntZ -rWW -tyz -tyz -tyz -tyz -vby -vby -fPB -vby -qVs -hrs -hrs -vby -vby -vby -vby -vby -jIb -eux -eux -eux -jIb -jIb -jIb -jIb -hlp -jZM -eux -iho -wGQ -jIb -jIb -jIb -jIb -jIb -jIb -jaT -jIb -jIb -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -uGS -uGS -uGS -mDs -mDs -mDs -uGS -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rkR -txG -txG -txG -txG -txG -txG -txG -ngv -ngv -bhm -nVx -jMU -gCK -eDu -gCK -jMU -iFj -kVt -ngv -ngv -ngv -ngv -ngv -ngv -ngv -ngv -txG -ngv -xmm -rIi -rIi -rIi -nsK -"} -(172,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -tyz -tyz -vby -vby -vby -vby -vby -vby -vby -qbe -uJv -auP -enh -frR -vby -vby -vby -vby -rIi -rIi -vby -vby -tyz -tyz -tyz -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -mYS -nFn -nFn -nFn -nFn -nFn -mYS -jIg -tyz -jIg -wNh -tyz -tyz -vby -vby -rvs -hrs -qRY -tsI -vby -vby -vby -jZM -eux -nUn -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -jIb -jIb -jIb -jIb -jhc -jIb -jIb -jIb -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -uGS -uGS -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rkR -txG -xmm -xmm -xmm -xmm -xmm -xmm -txG -txG -ngv -ngv -bhm -erZ -jMU -eVq -kVt -ngv -ngv -ngv -ngv -ngv -txG -ngv -ngv -ngv -txG -txG -rIi -rIi -rIi -rIi -rIi -nsK -"} -(173,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -jIg -lIK -rIi -rIi -rIi -vby -vby -vby -vby -vby -vby -vby -vby -vby -rIi -rIi -rIi -rIi -rIi -jIg -jIg -tyz -tyz -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -mYS -nFn -nFn -nFn -nFn -nFn -mYS -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -vby -vby -vby -vby -juQ -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -jIb -jIb -jIb -jIb -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -txG -txG -txG -txG -txG -txG -xmm -xmm -txG -txG -ngv -ngv -ngv -ngv -ngv -ngv -ngv -ngv -ngv -txG -xmm -txG -txG -txG -txG -xmm -rIi -rIi -rIi -rIi -rIi -nsK -"} -(174,1,1) = {" -cgS -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -xIt -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -mYS -nFn -nFn -nFn -nFn -nFn -mYS -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -rIi -nsK -"} -(175,1,1) = {" -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -cgS -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -mYS -mYS -mYS -mYS -mYS -mYS -mYS -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -nsK -"} diff --git a/_maps/map_files/Campaign maps/orion_2/orionoutpost_2.dmm b/_maps/map_files/Campaign maps/orion_2/orionoutpost_2.dmm deleted file mode 100644 index e6609b50ff8..00000000000 --- a/_maps/map_files/Campaign maps/orion_2/orionoutpost_2.dmm +++ /dev/null @@ -1,33262 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ac" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"ae" = ( -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/cargo) -"ag" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/cargo) -"am" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/train_yard) -"ao" = ( -/obj/structure/flora/tree/joshua, -/obj/item/weapon/gun/sentry/basic/premade/radial, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"ap" = ( -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/outpostnw) -"aq" = ( -/obj/structure/monorail{ - dir = 4 - }, -/turf/closed/mineral/smooth/indestructible, -/area/orion_outpost/ground/outpostsw) -"at" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/orion_outpost/ground/outpostsw) -"au" = ( -/obj/structure/cable, -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostsw) -"av" = ( -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"ax" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostcent) -"ay" = ( -/turf/open/floor/mainship/terragov/north{ - dir = 6 - }, -/area/orion_outpost/surface/building/command) -"az" = ( -/obj/structure/flora/pottedplant/twentyone, -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/orion_outpost/surface/building/administration) -"aA" = ( -/turf/closed/shuttle/dropship_regular/top_corner/alt{ - dir = 1 - }, -/area/orion_outpost/surface/building/crashedufo) -"aD" = ( -/obj/structure/cargo_container/ch_red{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"aE" = ( -/obj/structure/cable, -/turf/open/floor/mainship/terragov/north{ - dir = 8 - }, -/area/orion_outpost/surface/building/administration) -"aF" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/obj/structure/window{ - dir = 4 - }, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"aG" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostnw) -"aH" = ( -/obj/machinery/miner/damaged/platinum, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS/garbledradio) -"aJ" = ( -/obj/structure/cable, -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostsw) -"aK" = ( -/obj/structure/rack, -/obj/effect/spawner/random/engineering/extinguisher, -/obj/effect/spawner/random/engineering/mineral, -/obj/effect/spawner/random/engineering/toolbox, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"aM" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS) -"aP" = ( -/obj/structure/filingcabinet, -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"aQ" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostse) -"aR" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"aS" = ( -/obj/structure/barricade/concrete{ - dir = 4 - }, -/obj/structure/barricade/concrete{ - dir = 1 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposte) -"aT" = ( -/obj/machinery/vending/snack, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/breakroom) -"aU" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/obj/structure/flora/tree/joshua, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"aV" = ( -/obj/structure/cargo_container/hd{ - dir = 4 - }, -/turf/open/floor/mainship/orange/full, -/area/orion_outpost/surface/building/cargo) -"aW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer1{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"aY" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone/lz2{ - dir = 2 - }, -/turf/closed/mineral/smooth/indestructible, -/area/orion_outpost/ground/outpostnw) -"aZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer1{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostcent) -"bb" = ( -/obj/machinery/griddle, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"bc" = ( -/obj/structure/desertdam/decals/road{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"bd" = ( -/obj/effect/landmark/corpsespawner/marine, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"be" = ( -/obj/effect/turf_decal/riverdecal, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"bf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostcent) -"bg" = ( -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposts) -"bh" = ( -/obj/structure/cable, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostsw) -"bi" = ( -/obj/structure/flora/tree/joshua, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/surface/train_yard) -"bj" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/obj/effect/ai_node, -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/orion_outpost/surface/building/atc) -"bm" = ( -/obj/machinery/vending/engivend, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/engineering) -"bn" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostcent) -"bq" = ( -/obj/structure/monorail{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"br" = ( -/obj/structure/table/mainship, -/obj/item/weapon/gun/pistol/vp78, -/obj/item/weapon/gun/shotgun/pump/cmb, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/armory) -"bs" = ( -/obj/effect/landmark/corpsespawner/marine, -/obj/item/ammo_casing/bullet, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/prison, -/area/orion_outpost/surface/building/engineering) -"bt" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outposts) -"bv" = ( -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostse) -"bx" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"by" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"bA" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"bB" = ( -/obj/structure/prop/mainship/mapping_computer, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/orion_outpost/surface/building/atc) -"bC" = ( -/obj/structure/sink{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"bE" = ( -/obj/effect/landmark/sensor_tower, -/turf/open/floor/mainship/sterile/corner, -/area/orion_outpost/surface/building/medbay) -"bF" = ( -/obj/effect/landmark/xeno_tunnel_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveE) -"bG" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"bH" = ( -/obj/machinery/computer3, -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/orion_outpost/surface/building/atc) -"bI" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/orange{ - dir = 5 - }, -/area/orion_outpost/surface/building/engineering) -"bJ" = ( -/obj/machinery/power/geothermal, -/obj/structure/cable, -/turf/open/floor/bcircuit, -/area/orion_outpost/surface/building/engineering) -"bK" = ( -/obj/structure/table/mainship, -/obj/structure/platform, -/obj/machinery/computer3, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"bL" = ( -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/mainship/blue, -/area/orion_outpost/surface/building/administration) -"bN" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposts) -"bP" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"bR" = ( -/obj/effect/landmark/xeno_silo_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveE) -"bS" = ( -/obj/effect/landmark/weed_node, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"bT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/window{ - dir = 4 - }, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"bV" = ( -/obj/effect/landmark/weed_node, -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/plating, -/area/orion_outpost/surface/building/tadpolepad) -"bW" = ( -/obj/machinery/landinglight/lz2{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/landing_pad2_external) -"bX" = ( -/obj/machinery/newscaster, -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/barracks) -"bY" = ( -/obj/machinery/light, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"bZ" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/machinery/elevator_strut/bottom, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/cargo) -"ca" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/orion_outpost/surface/building/atc) -"cb" = ( -/obj/effect/landmark/weed_node, -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"cc" = ( -/obj/structure/prop/mainship/mission_planning_system, -/obj/structure/platform{ - dir = 10 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"ce" = ( -/turf/closed/shuttle/dropship_regular/top_corner/alt, -/area/orion_outpost/surface/building/crashedufo) -"cg" = ( -/obj/structure/flora/ausbushes/reedbush, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"ch" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/structure/prop/train/cargo_nt{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"ci" = ( -/turf/open/floor/mainship/green/corner{ - dir = 1 - }, -/area/orion_outpost/surface/building/prep) -"cj" = ( -/obj/structure/platform_decoration, -/turf/open/liquid/water/river, -/area/orion_outpost/ground/river/riverside_north) -"cl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostsw) -"cm" = ( -/obj/machinery/computer3, -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"cn" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/dorms) -"cp" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"cq" = ( -/obj/structure/desertdam/decals/road/edge{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"cr" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveN/garbledradio) -"cs" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/area/orion_outpost/ground/outpostse) -"ct" = ( -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"cu" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/orion_outpost/surface/train_yard) -"cv" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/structure/prop/train/carriage{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/train_yard) -"cw" = ( -/obj/structure/prop/brokenvendor/surplusarmor, -/turf/open/floor/mainship/green, -/area/orion_outpost/surface/building/prep) -"cy" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"cz" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/item/ammo_casing/bullet, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"cA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/terragov/north{ - dir = 4 - }, -/area/orion_outpost/surface/building/prep) -"cF" = ( -/obj/structure/flora/tree/joshua, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/underground/caveE) -"cG" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostw) -"cH" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/surface/building/vehicledepot) -"cI" = ( -/obj/structure/prop/vehicle/crane{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"cN" = ( -/obj/structure/prop/vehicle/crawler/crawler_red{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"cO" = ( -/obj/structure/prop/mainship/mission_planning_system, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/command) -"cP" = ( -/turf/open/floor/mainship/orange/corner{ - dir = 8 - }, -/area/orion_outpost/surface/building/engineering) -"cQ" = ( -/obj/structure/prop/vehicle/truck, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"cR" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"cT" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostse) -"cU" = ( -/obj/effect/landmark/xeno_silo_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveN/garbledradio) -"cV" = ( -/obj/machinery/miner/damaged, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/orion_outpost/ground/outposte) -"cW" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue, -/area/orion_outpost/surface/building/administration) -"cY" = ( -/obj/effect/landmark/xeno_silo_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS/garbledradio) -"cZ" = ( -/obj/item/mortal_shell/howitzer/incendiary, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/black/full, -/area/orion_outpost/surface/building/ammodepot) -"da" = ( -/obj/structure/cargo_container/horizontal{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"dc" = ( -/obj/effect/turf_decal/riverdecal, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"dd" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/tadpolepad) -"df" = ( -/turf/closed/shuttle/dropship_regular/interior_wall{ - dir = 1 - }, -/area/orion_outpost/surface/building/crashedufo) -"dg" = ( -/obj/structure/cable, -/turf/open/floor/mainship/green/corner{ - dir = 4 - }, -/area/orion_outpost/surface/building/prep) -"dh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 6 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"di" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"dj" = ( -/obj/structure/bed/chair, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"dm" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostnw) -"dn" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"dp" = ( -/obj/structure/shuttle/engine/propulsion/burst/right, -/turf/open/shuttle/dropship/three, -/area/orion_outpost/surface/building/tadpolepad) -"dt" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"du" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"dv" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 1 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposts) -"dw" = ( -/obj/effect/landmark/weed_node, -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"dx" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostse) -"dy" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/command) -"dz" = ( -/obj/machinery/light, -/turf/open/floor/mainship/orange{ - dir = 6 - }, -/area/orion_outpost/surface/building/engineering) -"dA" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostn) -"dC" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/orion_outpost/surface/building/engineering) -"dD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/atc) -"dF" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"dG" = ( -/obj/structure/cable, -/obj/effect/landmark/weed_node, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"dI" = ( -/obj/structure/platform{ - dir = 2 - }, -/turf/open/floor/plating, -/area/orion_outpost/surface/building/tadpolepad) -"dJ" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"dL" = ( -/obj/structure/prop/brokenvendor/brokenuniformvendor, -/turf/open/floor/mainship/green{ - dir = 5 - }, -/area/orion_outpost/surface/building/prep) -"dM" = ( -/obj/structure/stairs/seamless/platform_vert{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"dN" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"dO" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/building/crashedufo) -"dP" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"dQ" = ( -/obj/structure/prop/mainship/sensor_computer1, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/orion_outpost/surface/building/administration) -"dS" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostnw) -"dV" = ( -/obj/structure/prop/brokenvendor/surplusarmor, -/turf/open/floor/mainship/green{ - dir = 5 - }, -/area/orion_outpost/surface/building/prep) -"dW" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"dX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer1{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostcent) -"dZ" = ( -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"ea" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outposte) -"eb" = ( -/obj/machinery/vending/snack, -/turf/open/floor/mainship/blue, -/area/orion_outpost/surface/building/administration) -"ec" = ( -/obj/structure/monorail{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/cargo) -"ee" = ( -/obj/machinery/computer3, -/obj/structure/table/mainship, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/orion_outpost/surface/building/monitor) -"ef" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposte) -"eg" = ( -/obj/effect/landmark/corpsespawner/marine, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"eh" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/orion_outpost/surface/building/ammodepot) -"ei" = ( -/obj/structure/cable, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/cargo) -"ej" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"ek" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"el" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/floor/plating/dmg1, -/area/orion_outpost/surface/building/crashedufo) -"en" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/orion_outpost/surface/building/administration) -"eo" = ( -/obj/effect/ai_node, -/turf/open/floor/prison, -/area/orion_outpost/surface/building/engineering) -"ep" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"er" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"es" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"eu" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/armory) -"ev" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"ew" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"ey" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"eC" = ( -/obj/structure/cable, -/turf/open/floor/mainship/orange{ - dir = 5 - }, -/area/orion_outpost/surface/building/cargo) -"eD" = ( -/obj/effect/landmark/weed_node, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostsw) -"eE" = ( -/obj/structure/cable, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/orange/corner{ - dir = 4 - }, -/area/orion_outpost/surface/building/cargo) -"eF" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"eG" = ( -/turf/closed/mineral/smooth, -/area/orion_outpost/surface/building/atc) -"eH" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/orion_outpost/surface/building/tadpolepad) -"eI" = ( -/turf/open/floor/mainship/terragov/north{ - dir = 10 - }, -/area/orion_outpost/surface/building/command) -"eJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/layer1{ - dir = 1; - on = 1; - welded = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"eK" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostsw) -"eL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/dorms) -"eM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/orion_outpost/surface/building/atc) -"eN" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/orange, -/area/orion_outpost/surface/building/engineering) -"eO" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"eP" = ( -/obj/structure/cable, -/obj/effect/landmark/corpsespawner/bridgeofficer, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"eQ" = ( -/obj/machinery/computer3/server/rack, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/orion_outpost/surface/building/atc) -"eR" = ( -/obj/structure/table/mainship, -/obj/structure/window{ - dir = 4 - }, -/obj/structure/window{ - dir = 8 - }, -/obj/item/reagent_containers/food/snacks/mre_pack/meal2, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"eT" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/orion_outpost/surface/building/atc) -"eU" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"eW" = ( -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/landing_pad2_external) -"eX" = ( -/obj/structure/platform, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outposts) -"eY" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/dorms) -"fa" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/nebuilding) -"fb" = ( -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/orion_outpost/surface/building/command) -"fc" = ( -/obj/structure/stairs/seamless/platform_vert{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"ff" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"fg" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/orion_outpost/surface/building/administration) -"fh" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/mainship/blue, -/area/orion_outpost/surface/building/administration) -"fi" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposts) -"fm" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/orion_outpost/surface/building/armory) -"fn" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/atc) -"fp" = ( -/obj/structure/sink{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/breakroom) -"fr" = ( -/obj/structure/stairs/edge, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/vehicledepot) -"fs" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"ft" = ( -/turf/open/floor/plating, -/area/orion_outpost/surface/landing_pad_2) -"fu" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/orion_outpost/surface/building/cargo) -"fv" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"fw" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/surface/building/engineering) -"fx" = ( -/obj/structure/prop/mainship/mission_planning_system, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"fy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outposts) -"fz" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/orion_outpost/ground/outpostcent) -"fA" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/green{ - dir = 8 - }, -/area/orion_outpost/surface/building/prep) -"fB" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/cable, -/obj/effect/landmark/corpsespawner/bridgeofficer, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"fE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposte) -"fF" = ( -/obj/effect/spawner/random/misc/trash, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/train_yard) -"fG" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/orion_outpost/surface/building/monitor) -"fH" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"fI" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/snacks/mre_pack/meal6, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"fJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/orion_outpost/surface/building/brig) -"fL" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 4 - }, -/area/orion_outpost/surface/landing_pad_2) -"fM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostsw) -"fN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"fO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/orion_outpost/ground/outpostw) -"fQ" = ( -/obj/structure/prop/vehicle/truck, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outposts) -"fR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/orion_outpost/ground/outposts) -"fS" = ( -/obj/structure/rack, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/engineering) -"fT" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostsw) -"fU" = ( -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"fV" = ( -/obj/machinery/door/airlock/mainship, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/administration) -"fW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 5 - }, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"fY" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/snacks/mre_pack/meal5, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"fZ" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"gc" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/orion_outpost/surface/train_yard) -"gd" = ( -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/orion_outpost/surface/building/command) -"gf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 9 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"gh" = ( -/obj/structure/flora/pottedplant/twentyone, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/orion_outpost/surface/building/administration) -"gi" = ( -/turf/closed/mineral/smooth/indestructible, -/area/orion_outpost/ground/outposte) -"gk" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"gl" = ( -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"gm" = ( -/obj/structure/prop/brokenvendor/brokenweaponsrack, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/orion_outpost/surface/building/armory) -"gn" = ( -/obj/machinery/light, -/turf/open/floor/plating, -/area/orion_outpost/surface/building/tadpolepad) -"go" = ( -/obj/machinery/computer/autodoc_console, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"gq" = ( -/obj/structure/cargo_container/hd, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"gs" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"gt" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/clipboard, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/train_yard) -"gv" = ( -/obj/structure/cargo_container/hd, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"gw" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"gx" = ( -/turf/open/floor/mainship/green{ - dir = 8 - }, -/area/orion_outpost/surface/building/prep) -"gz" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/orion_outpost/surface/train_yard) -"gA" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone/lz2{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"gB" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3/laptop, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"gC" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"gD" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/camera, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/brig) -"gE" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/side{ - dir = 4 - }, -/area/orion_outpost/surface/building/medbay) -"gF" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostcent) -"gG" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveE) -"gH" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"gM" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostnw) -"gN" = ( -/obj/machinery/light, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/ground/outpostse) -"gO" = ( -/obj/machinery/gibber, -/turf/open/floor/freezer, -/area/orion_outpost/surface/building/canteen) -"gP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostcent) -"gQ" = ( -/obj/docking_port/stationary/marine_dropship/lz2, -/turf/open/floor/plating, -/area/orion_outpost/surface/landing_pad_2) -"gR" = ( -/obj/item/mortal_shell/howitzer/incendiary, -/turf/open/floor/mainship/black/full, -/area/orion_outpost/surface/building/ammodepot) -"gT" = ( -/turf/closed/shuttle/dropship_regular/interior_wall, -/area/orion_outpost/surface/building/crashedufo) -"gU" = ( -/obj/machinery/landinglight/lz2{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/landing_pad2_external) -"gV" = ( -/obj/structure/cargo_container/horizontal, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"gX" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostsw) -"gY" = ( -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"gZ" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/orion_outpost/surface/train_yard) -"he" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/orion_outpost/surface/train_yard) -"hf" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/cargo) -"hh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"hl" = ( -/obj/structure/table/mainship, -/obj/item/attachable/reddot, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/orion_outpost/surface/building/armory) -"hm" = ( -/obj/structure/bed/chair/dropship/passenger, -/turf/open/floor/podhatch/floor, -/area/orion_outpost/surface/building/crashedufo) -"hn" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/train_yard) -"hp" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/green{ - dir = 1 - }, -/area/orion_outpost/surface/building/prep) -"hs" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/orion_outpost/surface/building/command) -"hu" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"hv" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/obj/structure/window{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"hw" = ( -/obj/effect/landmark/corpsespawner/bridgeofficer, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"hx" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"hA" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"hE" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/engineering) -"hF" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/train_yard) -"hG" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"hH" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/surface/train_yard) -"hI" = ( -/obj/machinery/door/airlock/prison/horizontal/open, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/brig) -"hK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/layer1{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"hM" = ( -/obj/structure/prop/brokenvendor/brokenweaponsrack, -/turf/open/floor/mainship/red, -/area/orion_outpost/surface/building/armory) -"hN" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/orion_outpost/surface/building/armory) -"hO" = ( -/obj/effect/landmark/weed_node, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS) -"hP" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostse) -"hQ" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostn) -"hS" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/freezer, -/area/orion_outpost/surface/building/canteen) -"hT" = ( -/obj/structure/cable, -/turf/open/floor/bcircuit, -/area/orion_outpost/surface/building/engineering) -"hU" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/sink{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/brig) -"hV" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"hX" = ( -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"hZ" = ( -/obj/machinery/computer3, -/obj/structure/table/mainship, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/orion_outpost/surface/building/monitor) -"ia" = ( -/turf/open/shuttle/brig, -/area/orion_outpost/surface/building/crashedufo) -"ic" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/dorms) -"ig" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/orion_outpost/ground/outposts) -"ih" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/surface/building/engineering) -"ii" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/orion_outpost/surface/building/atc) -"il" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/orion_outpost/surface/building/monitor) -"im" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/cargo) -"in" = ( -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outposts) -"ip" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3/server, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/dorms) -"iq" = ( -/obj/effect/landmark/xeno_silo_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostn) -"ir" = ( -/obj/structure/prop/brokenvendor/brokenuniformvendor, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"is" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"it" = ( -/obj/structure/desertdam/decals/road{ - dir = 8 - }, -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"iu" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/mainship/orange{ - dir = 10 - }, -/area/orion_outpost/surface/building/engineering) -"iw" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/mainship/terragov/north{ - dir = 5 - }, -/area/orion_outpost/surface/building/command) -"ix" = ( -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/orion_outpost/surface/building/atc) -"iz" = ( -/turf/open/floor/prison, -/area/orion_outpost/surface/building/engineering) -"iA" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"iB" = ( -/obj/machinery/computer3/server/rack, -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/orion_outpost/surface/building/atc) -"iC" = ( -/obj/structure/table/mainship, -/obj/item/storage/firstaid/adv, -/turf/open/floor/mainship/sterile/corner, -/area/orion_outpost/surface/building/medbay) -"iI" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveN/garbledradio) -"iJ" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3/laptop, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"iK" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/building/vehicledepot) -"iN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/mainship/orange, -/area/orion_outpost/surface/building/cargo) -"iO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostcent) -"iQ" = ( -/obj/effect/turf_decal/warning_stripes/medical, -/obj/effect/turf_decal/warning_stripes/box/small, -/obj/effect/turf_decal/warning_stripes/box/small{ - dir = 1 - }, -/turf/open/floor/mainship/green{ - dir = 4 - }, -/area/orion_outpost/surface/building/prep) -"iS" = ( -/obj/machinery/computer3, -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"iV" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 4 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"iX" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"iY" = ( -/obj/effect/spawner/random/misc/trash, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/train_yard) -"iZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 5 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/orion_outpost/ground/outpostw) -"ja" = ( -/obj/structure/cargo_container/horizontal{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"jb" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"jc" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/orion_outpost/ground/outpostw) -"je" = ( -/obj/structure/nuke_disk_candidate, -/turf/open/floor/mainship/sterile/side{ - dir = 1 - }, -/area/orion_outpost/surface/building/medbay) -"jf" = ( -/obj/machinery/computer3/server/rack, -/turf/open/floor/mainship/orange{ - dir = 6 - }, -/area/orion_outpost/surface/building/engineering) -"jg" = ( -/obj/machinery/door/airlock/multi_tile/mainship/marine/general{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"jh" = ( -/obj/item/ammo_magazine/tank/tank_glauncher, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/orion_outpost/surface/building/ammodepot) -"ji" = ( -/obj/structure/monorail{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/train_yard) -"jk" = ( -/obj/structure/stairs/seamless/platform_vert/water{ - dir = 4 - }, -/turf/open/liquid/water/river, -/area/orion_outpost/ground/outpostcent) -"jm" = ( -/obj/structure/prop/mainship/sensor_computer2, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/orion_outpost/surface/building/administration) -"jo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/mainship/orange/full, -/area/orion_outpost/surface/building/cargo) -"jq" = ( -/obj/structure/sink, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"js" = ( -/obj/machinery/cic_maptable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"jt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/orion_outpost/surface/building/command) -"jv" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveN) -"jw" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"jx" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 4 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposte) -"jy" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/breakroom) -"jz" = ( -/obj/structure/barricade/concrete, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"jA" = ( -/obj/structure/stairs/seamless/platform{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"jC" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"jE" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"jF" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/orion_outpost/surface/landing_pad_2) -"jG" = ( -/obj/machinery/light, -/turf/open/floor/mainship/orange, -/area/orion_outpost/surface/building/cargo) -"jH" = ( -/obj/item/ammo_casing/bullet, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"jI" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"jJ" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostnw) -"jK" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/brig) -"jM" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/breakroom) -"jN" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"jO" = ( -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/engineering) -"jP" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"jQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/ammo_casing/bullet, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/orion_outpost/surface/building/command) -"jS" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/orion_outpost/surface/building/cargo) -"jU" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/orion_outpost/surface/building/monitor) -"jV" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outposte) -"jW" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostse) -"jX" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/breakroom) -"jY" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"jZ" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/building/cargo) -"ka" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/structure/prop/train/mech{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"kb" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"kc" = ( -/turf/open/floor/mainship/blue, -/area/orion_outpost/surface/building/command) -"kd" = ( -/obj/structure/cable, -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostcent) -"ke" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/administration) -"kh" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/orion_outpost/surface/building/administration) -"kk" = ( -/obj/effect/landmark/weed_node, -/obj/effect/ai_node, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/barracks) -"kl" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/orion_outpost/surface/building/tadpolepad) -"km" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 10 - }, -/area/orion_outpost/surface/landing_pad_2) -"kn" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/surface/train_yard) -"ko" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone/lz2, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"kp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"kq" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"kr" = ( -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"ks" = ( -/obj/structure/cargo_container/hd, -/turf/open/floor/mainship/orange, -/area/orion_outpost/surface/building/cargo) -"kt" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/orion_outpost/surface/building/administration) -"ku" = ( -/obj/structure/rack, -/obj/item/stack/sheet/metal, -/obj/structure/platform, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"ky" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposte) -"kz" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"kA" = ( -/obj/structure/flora/ausbushes/reedbush, -/obj/effect/turf_decal/riverdecal, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"kB" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/building/vehicledepot) -"kC" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"kD" = ( -/obj/item/weapon/gun/sentry/basic/premade/radial, -/obj/structure/barricade/concrete{ - dir = 4 - }, -/obj/structure/barricade/concrete{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"kE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"kG" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/cigarettes, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/train_yard) -"kH" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/mainship/sterile/side{ - dir = 1 - }, -/area/orion_outpost/surface/building/medbay) -"kI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer1, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposte) -"kJ" = ( -/obj/structure/barricade/concrete{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"kK" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"kL" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/mainship/orange, -/area/orion_outpost/surface/building/engineering) -"kN" = ( -/obj/machinery/door/airlock/mainship/generic/ert{ - dir = 2 - }, -/turf/open/shuttle/dropship/floor, -/area/orion_outpost/surface/building/crashedufo) -"kO" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostw) -"kQ" = ( -/obj/structure/table/mainship, -/obj/structure/platform, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"kR" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"kS" = ( -/obj/structure/table/mainship, -/obj/item/trash/cheesie, -/obj/effect/spawner/random/misc/cigarettes, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"kT" = ( -/obj/structure/stairs/seamless/platform_vert{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/ground/outposts) -"kU" = ( -/obj/structure/prop/vehicle/truck/truckcargo/destructible, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/train_yard) -"kW" = ( -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/orion_outpost/surface/building/ammodepot) -"kX" = ( -/obj/structure/prop/vehicle/truck, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"kY" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposts) -"kZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/item/ammo_casing/bullet, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposte) -"la" = ( -/obj/structure/cable, -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/surface/building/barracks) -"lb" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostw) -"le" = ( -/obj/structure/prop/vehicle/truck, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposte) -"lf" = ( -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/ground/outpostse) -"lh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"li" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/vehicledepot) -"lj" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"ll" = ( -/turf/open/floor/mainship/terragov/north{ - dir = 1 - }, -/area/orion_outpost/surface/building/prep) -"ln" = ( -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/blue, -/area/orion_outpost/surface/building/administration) -"lo" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposte) -"lp" = ( -/turf/open/floor/mainship/orange{ - dir = 5 - }, -/area/orion_outpost/surface/building/cargo) -"lq" = ( -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/outposts) -"lr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"ls" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/orion_outpost/surface/building/administration) -"lt" = ( -/turf/open/floor/mainship/black, -/area/orion_outpost/surface/building/atc) -"lu" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"lv" = ( -/obj/effect/landmark/corpsespawner/marine, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"lw" = ( -/obj/structure/stairs/seamless/platform_vert{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"lx" = ( -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/orion_outpost/surface/building/atc) -"ly" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"lA" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/barracks) -"lB" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/building/vehicledepot) -"lC" = ( -/obj/machinery/light, -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"lD" = ( -/turf/open/floor/mainship/green/corner{ - dir = 8 - }, -/area/orion_outpost/surface/building/prep) -"lE" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/orion_outpost/surface/building/atc) -"lF" = ( -/turf/open/floor/mainship/sterile/side{ - dir = 8 - }, -/area/orion_outpost/surface/building/medbay) -"lH" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostcent) -"lJ" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/breakroom) -"lK" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/liquid/water/river, -/area/orion_outpost/ground/river/riverside_central) -"lN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/nuke_spawn, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/orion_outpost/surface/building/command) -"lO" = ( -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/outposte) -"lP" = ( -/obj/effect/landmark/start/job/xenomorph, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveE) -"lQ" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic/noglass{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/cargo) -"lS" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"lT" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/vehicledepot) -"lV" = ( -/obj/structure/platform, -/obj/machinery/cic_maptable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"lW" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostnw) -"lX" = ( -/obj/structure/bed/chair, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"lY" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"lZ" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"ma" = ( -/obj/structure/desertdam/decals/road{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"md" = ( -/obj/machinery/iv_drip, -/obj/structure/sink{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/corner, -/area/orion_outpost/surface/building/medbay) -"me" = ( -/obj/machinery/door/airlock/multi_tile/mainship/secdoor/glass{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/brig) -"mf" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"mh" = ( -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"mj" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/train_yard) -"mk" = ( -/obj/effect/spawner/random/misc/trash, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/train_yard) -"ml" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/building/cargo) -"mm" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/orion_outpost/surface/building/cargo) -"mn" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostw) -"mo" = ( -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"mp" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"mq" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostcent) -"ms" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostsw) -"mt" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"mu" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/grate/alternate, -/area/orion_outpost/surface/building/engineering) -"mx" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS/garbledradio) -"my" = ( -/obj/structure/cargo_container/hd{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/cargo) -"mz" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 8 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposts) -"mA" = ( -/obj/effect/landmark/sensor_tower, -/turf/open/floor/mainship/terragov/north{ - dir = 8 - }, -/area/orion_outpost/surface/building/command) -"mC" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/orion_outpost/ground/outpostsw) -"mD" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/medbay) -"mE" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/orange{ - dir = 9 - }, -/area/orion_outpost/surface/building/cargo) -"mG" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/weapon/gun/sentry/basic/premade/radial, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"mH" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"mI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"mJ" = ( -/obj/structure/stairs/seamless/platform_vert/water, -/turf/open/liquid/water/river, -/area/orion_outpost/ground/outpostcent) -"mL" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/mainship/orange, -/area/orion_outpost/surface/building/cargo) -"mM" = ( -/obj/machinery/computer3, -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"mN" = ( -/obj/structure/prop/vehicle/truck/truckcargo, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"mP" = ( -/turf/open/floor/mainship/green/corner, -/area/orion_outpost/surface/building/prep) -"mR" = ( -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/underground/caveS) -"mS" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"mT" = ( -/obj/machinery/cic_maptable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"mU" = ( -/obj/structure/prop/mainship/mapping_computer, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"mV" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"mW" = ( -/turf/closed/shuttle/dropship_regular/backwall, -/area/orion_outpost/surface/building/crashedufo) -"mX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"mZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 10 - }, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"na" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostsw) -"nb" = ( -/obj/structure/stairs/seamless/platform_vert, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"nc" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/orion_outpost/surface/building/cargo) -"nd" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostnw) -"ne" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/green{ - dir = 9 - }, -/area/orion_outpost/surface/building/prep) -"nf" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostnw) -"ng" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/bunker) -"nh" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"ni" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"nj" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"nk" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/orion_outpost/surface/building/tadpolepad) -"nl" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"nm" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"nn" = ( -/turf/open/floor/mainship/orange, -/area/orion_outpost/surface/building/engineering) -"no" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"np" = ( -/obj/structure/prop/vehicle/van, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostsw) -"nq" = ( -/obj/effect/landmark/corpsespawner/marine, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"ns" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"nt" = ( -/turf/open/floor/mainship/red, -/area/orion_outpost/surface/building/monitor) -"nw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostw) -"nx" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/building/vehicledepot) -"ny" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"nz" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/obj/structure/cable, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/barracks) -"nA" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/brig) -"nB" = ( -/turf/open/floor/mainship/orange/corner{ - dir = 4 - }, -/area/orion_outpost/surface/building/cargo) -"nC" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/administration) -"nD" = ( -/obj/structure/prop/brokenvendor/brokenweaponsrack, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/orion_outpost/surface/building/armory) -"nF" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"nJ" = ( -/obj/item/ammo_magazine/tank/ltb_cannon, -/obj/item/ammo_magazine/tank/ltaap_chaingun, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/orion_outpost/surface/building/ammodepot) -"nK" = ( -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/cargo) -"nL" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"nM" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"nP" = ( -/turf/open/floor/mainship/orange{ - dir = 10 - }, -/area/orion_outpost/surface/building/cargo) -"nR" = ( -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/orion_outpost/surface/building/administration) -"nS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 6 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"nT" = ( -/obj/structure/prop/vehicle/crawler/crawler_red, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostse) -"nU" = ( -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/orion_outpost/surface/building/atc) -"nV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outposte) -"nW" = ( -/obj/structure/flora/ausbushes/reedbush, -/obj/effect/turf_decal/riverdecal, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"nX" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/orion_outpost/surface/building/armory) -"nY" = ( -/obj/structure/cargo_container/hd{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"nZ" = ( -/obj/structure/platform, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostcent) -"oa" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/nebuilding) -"oc" = ( -/obj/structure/barricade/concrete, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"od" = ( -/obj/structure/monorail{ - dir = 10 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"of" = ( -/obj/structure/cable, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"og" = ( -/turf/open/floor/mainship/green, -/area/orion_outpost/surface/building/prep) -"oh" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/orion_outpost/surface/building/vehicledepot) -"oj" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/orion_outpost/surface/building/armory) -"ol" = ( -/obj/effect/landmark/weed_node, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"om" = ( -/obj/effect/landmark/corpsespawner/bridgeofficer, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"on" = ( -/obj/structure/prop/vehicle/crawler/crawler_cargo, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostse) -"op" = ( -/obj/structure/rack, -/obj/effect/spawner/random/engineering/glass, -/obj/effect/spawner/random/engineering/tech_supply, -/obj/effect/spawner/random/medical/firstaid, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"or" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outposte) -"os" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposts) -"ov" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"ow" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/orion_outpost/ground/outpostw) -"oy" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"oz" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostcent) -"oA" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"oB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostnw) -"oC" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/orion_outpost/surface/building/command) -"oG" = ( -/turf/open/floor/mainship/terragov/north{ - dir = 4 - }, -/area/orion_outpost/surface/building/command) -"oH" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/orion_outpost/ground/outpostse) -"oI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 5 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"oJ" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"oP" = ( -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostsw) -"oQ" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/plating, -/area/orion_outpost/surface/building/tadpolepad) -"oR" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostcent) -"oT" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/armory) -"oU" = ( -/obj/machinery/status_display{ - pixel_y = -1 - }, -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/prep) -"oW" = ( -/obj/effect/landmark/weed_node, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/dorms) -"oX" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"oY" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"oZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"pa" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/outpostn) -"pb" = ( -/obj/machinery/door/poddoor/mainship/open, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/building/vehicledepot) -"pc" = ( -/turf/open/floor/plating/ground/desertdam/grate/alternate, -/area/orion_outpost/surface/building/engineering) -"pe" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/prison, -/area/orion_outpost/surface/building/engineering) -"pg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"ph" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/orion_outpost/ground/outpostcent) -"pi" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"pj" = ( -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"pl" = ( -/obj/machinery/light, -/obj/effect/landmark/weed_node, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/administration) -"pm" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/mainship/sterile/corner{ - dir = 1 - }, -/area/orion_outpost/surface/building/medbay) -"pn" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/red, -/area/orion_outpost/surface/building/monitor) -"po" = ( -/obj/machinery/autodoc, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"pp" = ( -/obj/effect/landmark/corpsespawner/bridgeofficer, -/turf/open/floor/mainship/black, -/area/orion_outpost/surface/building/atc) -"pq" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"pr" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"ps" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/shuttle/shuttle_control/dropship, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/landing_pad2_external) -"pt" = ( -/turf/closed/mineral/smooth/indestructible, -/area/storage/testroom) -"pu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer1, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"pw" = ( -/obj/docking_port/mobile/marine_dropship/minidropship, -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/turf/open/floor/mainship/orange{ - dir = 1 - }, -/area/orion_outpost/surface/building/tadpolepad) -"px" = ( -/obj/effect/landmark/corpsespawner/marine/engineer, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostcent) -"py" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"pz" = ( -/obj/structure/desertdam/decals/road/edge/long, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"pB" = ( -/obj/item/mortal_shell/howitzer/incendiary, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/orion_outpost/surface/building/ammodepot) -"pC" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"pD" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/ground/river/riverside_south) -"pE" = ( -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposte) -"pF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/edge, -/area/orion_outpost/ground/outpostcent) -"pG" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/green{ - dir = 1 - }, -/area/orion_outpost/surface/building/prep) -"pH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/marine/engineer, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"pI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/orion_outpost/ground/outpostw) -"pJ" = ( -/obj/machinery/power/apc, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"pK" = ( -/obj/effect/ai_node, -/obj/structure/stairs/seamless/edge{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/building/tadpolepad) -"pM" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/orion_outpost/surface/building/armory) -"pN" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/administration) -"pP" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/orion_outpost/surface/building/vehicledepot) -"pQ" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"pS" = ( -/obj/structure/closet/secure_closet/medical3, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"pU" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"pV" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"pW" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/cargo) -"pX" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"pY" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"pZ" = ( -/obj/structure/dispenser, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison, -/area/orion_outpost/surface/building/engineering) -"qa" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/bridgeofficer, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/atc) -"qb" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"qc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"qd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/orion_outpost/ground/outpostsw) -"qf" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostsw) -"qg" = ( -/turf/open/floor/mainship/orange/corner{ - dir = 1 - }, -/area/orion_outpost/surface/building/engineering) -"qh" = ( -/obj/structure/prop/brokenvendor/engivend, -/turf/open/floor/mainship/green{ - dir = 10 - }, -/area/orion_outpost/surface/building/prep) -"qi" = ( -/turf/closed/shuttle/dropship_regular/top_corner, -/area/orion_outpost/surface/building/crashedufo) -"qk" = ( -/obj/structure/barricade/concrete{ - dir = 4 - }, -/obj/structure/barricade/concrete, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"ql" = ( -/obj/item/tool/wrench, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/building/vehicledepot) -"qm" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostw) -"qo" = ( -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"qp" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/orion_outpost/ground/outpostnw) -"qr" = ( -/obj/item/ammo_casing/bullet, -/obj/structure/platform, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"qu" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/area/orion_outpost/ground/outpostse) -"qv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/layer1{ - dir = 4; - on = 1; - welded = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostsw) -"qw" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 1 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"qx" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/mainship/black/full, -/area/orion_outpost/surface/building/ammodepot) -"qy" = ( -/obj/structure/prop/brokenvendor/brokenuniformvendor/specialist, -/turf/open/floor/mainship/green, -/area/orion_outpost/surface/building/prep) -"qz" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/cargo) -"qA" = ( -/obj/effect/landmark/weed_node, -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposte) -"qB" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/command) -"qC" = ( -/obj/machinery/light, -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/surface/building/tadpolepad) -"qD" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/orion_outpost/surface/building/engineering) -"qE" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"qF" = ( -/obj/machinery/miner/damaged, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"qI" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/window{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/bridgeofficer, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"qJ" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposts) -"qK" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/orion_outpost/surface/building/brig) -"qL" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/monitor) -"qO" = ( -/turf/closed/mineral/smooth/indestructible, -/area/orion_outpost/surface/landing_pad2_external) -"qP" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveE) -"qR" = ( -/obj/effect/turf_decal/riverdecal, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"qT" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"qU" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/green{ - dir = 5 - }, -/area/orion_outpost/surface/building/prep) -"qV" = ( -/obj/machinery/miner/damaged/platinum, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveE) -"qW" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"qX" = ( -/obj/structure/cargo_container/wy{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"qY" = ( -/obj/machinery/vending/security, -/turf/open/floor/mainship/red{ - dir = 2 - }, -/area/orion_outpost/surface/building/administration) -"qZ" = ( -/obj/structure/table/mainship, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison, -/area/orion_outpost/surface/building/engineering) -"rb" = ( -/obj/structure/prop/brokenvendor/surplusarmor, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/orion_outpost/surface/building/armory) -"rc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/orion_outpost/ground/outposte) -"rd" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"re" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 5 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"rg" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"rh" = ( -/obj/structure/fence, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/train_yard) -"rj" = ( -/turf/open/floor/mainship/terragov/north{ - dir = 9 - }, -/area/orion_outpost/surface/building/command) -"rl" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/orion_outpost/surface/train_yard) -"rm" = ( -/obj/structure/stairs/seamless/platform_vert/water{ - dir = 1 - }, -/turf/open/liquid/water/river, -/area/orion_outpost/ground/outpostcent) -"ro" = ( -/obj/structure/flora/tree/joshua, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostn) -"rp" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone/lz2{ - dir = 2 - }, -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/outpostnw) -"rr" = ( -/obj/structure/prop/mainship/hangar_stencil, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/landing_pad2_external) -"rs" = ( -/obj/machinery/vending/snack, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/orange{ - dir = 1 - }, -/area/orion_outpost/surface/building/engineering) -"rt" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"ru" = ( -/obj/structure/table/mainship, -/obj/item/weapon/gun/rifle/alf_machinecarbine, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/orion_outpost/surface/building/armory) -"rv" = ( -/obj/structure/prop/brokenvendor/brokencorpsmanvendor, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"rw" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/mainship/orange{ - dir = 9 - }, -/area/orion_outpost/surface/building/engineering) -"rx" = ( -/obj/machinery/power/monitor{ - name = "Core Power Monitoring" - }, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/engineering) -"ry" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostcent) -"rA" = ( -/obj/structure/prop/brokenvendor/brokenmarinemedvendor, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"rB" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/armory) -"rC" = ( -/obj/structure/flora/pottedplant/twentytwo, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/dorms) -"rE" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostnw) -"rF" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/orion_outpost/surface/building/cargo) -"rG" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostw) -"rH" = ( -/obj/item/ammo_casing/bullet, -/obj/effect/ai_node, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"rI" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/cargo) -"rJ" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"rK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostse) -"rM" = ( -/obj/structure/cable, -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"rN" = ( -/obj/machinery/vending/snack, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"rO" = ( -/turf/open/floor/mainship/black/corner{ - dir = 1 - }, -/area/orion_outpost/surface/building/atc) -"rP" = ( -/obj/machinery/computer3/server/rack, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/orion_outpost/surface/building/atc) -"rQ" = ( -/turf/closed/wall/mainship/outer/reinforced, -/area/orion_outpost/surface/building/tadpolepad) -"rR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/breakroom) -"rS" = ( -/obj/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating, -/area/orion_outpost/surface/landing_pad_2) -"rT" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/dorms) -"rU" = ( -/obj/structure/prop/vehicle/crawler/crawler_green, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"rV" = ( -/obj/machinery/door/airlock/multi_tile/mainship/medidoor/medbay/free_access{ - dir = 2 - }, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"rX" = ( -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"rZ" = ( -/obj/machinery/status_display{ - pixel_x = -15; - pixel_y = -1 - }, -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/barracks) -"sa" = ( -/obj/structure/cryofeed, -/turf/open/liquid/water/river, -/area/orion_outpost/ground/river/riverside_south) -"sb" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/surface/train_yard) -"sc" = ( -/turf/open/floor/mainship/cargo/arrow{ - dir = 4 - }, -/area/orion_outpost/surface/building/cargo) -"sd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"se" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/ammodepot) -"sf" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/landing_pad2_external) -"sg" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/surface/building/barracks) -"sh" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outposts) -"sj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostcent) -"sk" = ( -/obj/structure/cable, -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"sl" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/underground/caveN) -"sm" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"so" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/atc) -"sp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposte) -"ss" = ( -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/orion_outpost/surface/building/command) -"st" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveN/garbledradio) -"su" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostsw) -"sw" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/landing_pad2_external) -"sx" = ( -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/underground/caveE) -"sy" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/cargo) -"sz" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposte) -"sA" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/orion_outpost/surface/building/administration) -"sB" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"sC" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/brig) -"sD" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"sE" = ( -/obj/machinery/vending/cola, -/turf/open/floor/mainship/blue, -/area/orion_outpost/surface/building/administration) -"sF" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 1 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostse) -"sG" = ( -/turf/open/floor/mainship/terragov/north{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"sH" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/building/prep) -"sI" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/orion_outpost/surface/building/command) -"sJ" = ( -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/barracks) -"sK" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/surface/landing_pad2_external) -"sL" = ( -/obj/structure/rack, -/obj/item/weapon/gun/shotgun/pump/cmb, -/obj/item/weapon/gun/shotgun/pump/cmb, -/obj/item/weapon/gun/shotgun/pump/cmb, -/obj/effect/spawner/random/weaponry/ammo/shotgun, -/obj/effect/spawner/random/weaponry/ammo/shotgun, -/obj/effect/spawner/random/weaponry/ammo/shotgun, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/orion_outpost/surface/building/armory) -"sM" = ( -/obj/structure/monorail{ - dir = 4 - }, -/turf/open/floor/mainship/orange/full, -/area/orion_outpost/surface/building/cargo) -"sN" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outposts) -"sO" = ( -/obj/structure/cargo_container/hd, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/cargo) -"sQ" = ( -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/engineering) -"sR" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS/garbledradio) -"sS" = ( -/obj/effect/turf_decal/warning_stripes/engineer, -/obj/effect/turf_decal/warning_stripes/box/small, -/obj/effect/turf_decal/warning_stripes/box/small{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"sT" = ( -/obj/structure/bed/chair/dropship/passenger, -/turf/open/floor/plating/dmg1, -/area/orion_outpost/surface/building/crashedufo) -"sU" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostn) -"sV" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone/lz2, -/turf/closed/mineral/smooth, -/area/orion_outpost/surface/building/atc) -"sW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"sZ" = ( -/obj/structure/cable, -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"ta" = ( -/obj/structure/desertdam/decals/road/edge/long, -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"tb" = ( -/obj/effect/ai_node, -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveE) -"tc" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_casing/bullet, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outposte) -"td" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/orion_outpost/surface/building/armory) -"te" = ( -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostse) -"tf" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"tg" = ( -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/orion_outpost/surface/building/brig) -"th" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/mainship/terragov/north{ - dir = 9 - }, -/area/orion_outpost/surface/building/prep) -"tk" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/orion_outpost/surface/building/monitor) -"tl" = ( -/obj/effect/landmark/weed_node, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostse) -"tm" = ( -/obj/structure/table/mainship, -/obj/item/phone, -/obj/item/phone, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"to" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/nebuilding) -"tp" = ( -/obj/structure/monorail{ - dir = 5 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"tq" = ( -/obj/item/storage/toolbox/mechanical, -/obj/structure/platform{ - dir = 2 - }, -/turf/open/floor/plating, -/area/orion_outpost/surface/building/tadpolepad) -"tr" = ( -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"tt" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/orion_outpost/surface/building/ammodepot) -"tu" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/train_yard) -"tx" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/mainship/orange{ - dir = 10 - }, -/area/orion_outpost/surface/building/engineering) -"tz" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/orange/full, -/area/orion_outpost/surface/building/cargo) -"tC" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/train_yard) -"tD" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostw) -"tE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostw) -"tG" = ( -/obj/machinery/miner/damaged, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"tH" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/armory) -"tJ" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone/lz2{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostnw) -"tK" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"tL" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/breakroom) -"tN" = ( -/turf/open/floor/mainship/orange{ - dir = 6 - }, -/area/orion_outpost/surface/building/engineering) -"tP" = ( -/obj/effect/ai_node, -/turf/open/floor/freezer, -/area/orion_outpost/surface/building/canteen) -"tS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outposts) -"tT" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostw) -"tV" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"tW" = ( -/obj/structure/platform, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"tX" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/mainship/terragov/north{ - dir = 6 - }, -/area/orion_outpost/surface/building/prep) -"tY" = ( -/obj/structure/prop/brokenvendor/brokenuniformvendor/specialist, -/turf/open/floor/mainship/green{ - dir = 1 - }, -/area/orion_outpost/surface/building/prep) -"tZ" = ( -/obj/item/weapon/gun/sentry/basic/premade/radial, -/obj/structure/barricade/concrete{ - dir = 1 - }, -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"ua" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/underground/caveE) -"ub" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"uc" = ( -/obj/machinery/cic_maptable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/atc) -"ud" = ( -/obj/machinery/light, -/turf/open/floor/mainship/red, -/area/orion_outpost/surface/building/brig) -"ue" = ( -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostnw) -"uf" = ( -/obj/machinery/vending/snack, -/turf/open/floor/mainship/sterile/corner{ - dir = 4 - }, -/area/orion_outpost/surface/building/medbay) -"uh" = ( -/turf/open/floor/mainship/orange{ - dir = 6 - }, -/area/orion_outpost/ground/outpostse) -"ui" = ( -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/orion_outpost/surface/building/administration) -"uj" = ( -/obj/machinery/cell_charger, -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"uk" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"ul" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"um" = ( -/obj/structure/barricade/concrete, -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposte) -"un" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"up" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"uv" = ( -/obj/structure/prop/mainship/mission_planning_system, -/obj/structure/platform, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"ux" = ( -/obj/structure/bed/chair, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"uy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 5 - }, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"uB" = ( -/obj/structure/nuke_disk_candidate, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"uC" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/effect/spawner/random/misc/trash, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"uD" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"uG" = ( -/obj/effect/landmark/corpsespawner/marine, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"uI" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/bunker) -"uJ" = ( -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/mainship/sterile/side{ - dir = 9 - }, -/area/orion_outpost/surface/building/medbay) -"uL" = ( -/obj/machinery/door/airlock/multi_tile/mainship/secdoor/glass, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/monitor) -"uM" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/administration) -"uN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer1, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"uQ" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"uR" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"uS" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"uT" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/atc) -"uU" = ( -/obj/item/weapon/gun/sentry/basic/premade/radial, -/obj/structure/barricade/concrete{ - dir = 1 - }, -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"uW" = ( -/obj/machinery/vending/security, -/turf/open/floor/mainship/red, -/area/orion_outpost/surface/building/brig) -"uX" = ( -/obj/structure/flora/tree/joshua, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostw) -"va" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostnw) -"vb" = ( -/obj/structure/desertdam/decals/road/edge/long{ - dir = 1 - }, -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"vc" = ( -/obj/structure/flora/tree/joshua, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposte) -"ve" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"vf" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/red, -/area/orion_outpost/surface/building/armory) -"vg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"vh" = ( -/turf/open/floor/mainship/green{ - dir = 1 - }, -/area/orion_outpost/surface/building/prep) -"vi" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone/lz2{ - dir = 2 - }, -/turf/closed/mineral/smooth/indestructible, -/area/orion_outpost/surface/landing_pad2_external) -"vj" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/barracks) -"vk" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/ground/outpostse) -"vl" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"vm" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"vn" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/dorms) -"vo" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"vq" = ( -/obj/structure/prop/mainship/sensor_computer2, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"vr" = ( -/obj/structure/cable, -/obj/effect/landmark/sensor_tower, -/turf/open/floor/mainship/terragov{ - dir = 1 - }, -/area/orion_outpost/surface/building/prep) -"vs" = ( -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"vt" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"vu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 6 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"vw" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"vx" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outposts) -"vy" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"vA" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostcent) -"vB" = ( -/obj/machinery/light, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"vC" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/ammodepot) -"vD" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"vE" = ( -/obj/item/weapon/gun/sentry/basic/premade/radial, -/obj/structure/barricade/concrete, -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"vF" = ( -/obj/item/weapon/gun/sentry/basic/premade/radial, -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"vG" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/breakroom) -"vH" = ( -/obj/effect/turf_decal/riverdecal, -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/outpostcent) -"vI" = ( -/obj/effect/landmark/weed_node, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveE) -"vJ" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostsw) -"vK" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"vL" = ( -/obj/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/icefloor/warnplate{ - dir = 4 - }, -/area/orion_outpost/surface/landing_pad_2) -"vM" = ( -/turf/open/floor/mainship/blue/corner, -/area/orion_outpost/surface/building/administration) -"vO" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"vP" = ( -/obj/machinery/optable, -/turf/open/floor/mainship/sterile/side{ - dir = 8 - }, -/area/orion_outpost/surface/building/medbay) -"vQ" = ( -/obj/machinery/vending/medical/shipside, -/turf/open/floor/mainship/sterile/corner{ - dir = 1 - }, -/area/orion_outpost/surface/building/medbay) -"vS" = ( -/turf/open/floor/mainship/orange, -/area/orion_outpost/ground/outpostse) -"vT" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"vV" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 8 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"vW" = ( -/obj/effect/landmark/xeno_silo_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"vX" = ( -/obj/effect/landmark/sensor_tower, -/turf/open/floor/mainship/terragov{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"vY" = ( -/obj/structure/cable, -/obj/machinery/light, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/building/prep) -"vZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 6 - }, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/orange/full, -/area/orion_outpost/surface/building/cargo) -"wa" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"wb" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostw) -"wc" = ( -/obj/structure/cargo_container/wy, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"wf" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"wg" = ( -/obj/structure/prop/brokenvendor/brokenspecialistvendor/engineer, -/turf/open/floor/mainship/green{ - dir = 8 - }, -/area/orion_outpost/surface/building/prep) -"wi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/atc) -"wj" = ( -/obj/structure/desertdam/decals/road/edge{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"wk" = ( -/obj/structure/prop/vehicle/crane, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposte) -"wl" = ( -/obj/machinery/vending/cola, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"wm" = ( -/obj/machinery/door/airlock/mainship/security{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/orion_outpost/surface/building/armory) -"wo" = ( -/obj/structure/flora/tree/joshua, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"wp" = ( -/obj/structure/table/mainship, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"wq" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 8 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostnw) -"wr" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/atc) -"wt" = ( -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/outpostsw) -"wv" = ( -/turf/open/floor/mainship/blue/corner{ - dir = 8 - }, -/area/orion_outpost/surface/building/administration) -"wA" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostw) -"wD" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveN) -"wE" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostn) -"wF" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"wG" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/dorms) -"wH" = ( -/obj/structure/monorail, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"wI" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/orion_outpost/ground/outpostw) -"wJ" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"wL" = ( -/obj/machinery/vending/MarineMed/Blood, -/turf/open/floor/mainship/sterile/side{ - dir = 1 - }, -/area/orion_outpost/surface/building/medbay) -"wN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposte) -"wO" = ( -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostcent) -"wP" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"wQ" = ( -/obj/item/weapon/gun/sentry/basic/premade/radial, -/obj/structure/barricade/concrete, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"wR" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposte) -"wS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/orion_outpost/ground/outpostcent) -"wT" = ( -/obj/structure/bed/chair, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"wU" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/orion_outpost/surface/building/administration) -"wV" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostn) -"wW" = ( -/obj/structure/prop/brokenvendor/brokenspecialistvendor/engineer, -/turf/open/floor/mainship/green{ - dir = 10 - }, -/area/orion_outpost/surface/building/prep) -"wX" = ( -/obj/structure/barricade/concrete{ - dir = 1 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"xa" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostnw) -"xb" = ( -/obj/item/mortal_shell/howitzer/he, -/turf/open/floor/mainship/black/full, -/area/orion_outpost/surface/building/ammodepot) -"xd" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposte) -"xg" = ( -/obj/structure/monorail{ - dir = 6 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"xi" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/barracks) -"xj" = ( -/obj/structure/prop/mainship/telecomms, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/orion_outpost/surface/building/atc) -"xl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outposts) -"xm" = ( -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/command) -"xn" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outposts) -"xo" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/mainship/green, -/area/orion_outpost/surface/building/prep) -"xp" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/surface/train_yard) -"xr" = ( -/obj/machinery/landinglight/lz2{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/landing_pad2_external) -"xt" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostsw) -"xu" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"xv" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/orion_outpost/ground/outpostnw) -"xx" = ( -/obj/structure/barricade/concrete, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"xC" = ( -/obj/item/ammo_casing/bullet, -/obj/effect/landmark/sensor_tower, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostsw) -"xD" = ( -/obj/structure/flora/tree/joshua, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"xE" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/orion_outpost/surface/building/vehicledepot) -"xF" = ( -/turf/open/floor/mainship/terragov/north, -/area/orion_outpost/surface/building/administration) -"xH" = ( -/obj/structure/monorail{ - dir = 9 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"xI" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/landing_pad2_external) -"xJ" = ( -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/building/vehicledepot) -"xK" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/vehicledepot) -"xL" = ( -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/orion_outpost/ground/outposte) -"xM" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/snacks/mre_pack/meal2, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"xO" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/orion_outpost/surface/building/atc) -"xR" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"xS" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/underground/caveE) -"xT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 10 - }, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"xU" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/orion_outpost/ground/outposte) -"xW" = ( -/turf/open/floor/mainship/blue/corner{ - dir = 4 - }, -/area/orion_outpost/surface/building/administration) -"xX" = ( -/obj/structure/cable, -/turf/open/floor/mainship/green{ - dir = 4 - }, -/area/orion_outpost/surface/building/prep) -"xY" = ( -/obj/structure/prop/brokenvendor/brokenweaponsrack, -/turf/open/floor/mainship/green{ - dir = 6 - }, -/area/orion_outpost/surface/building/prep) -"xZ" = ( -/obj/structure/table/mainship, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/orion_outpost/surface/building/armory) -"ya" = ( -/obj/structure/prop/brokenvendor/brokenuniformvendor, -/turf/open/floor/mainship/green{ - dir = 8 - }, -/area/orion_outpost/surface/building/prep) -"yc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostsw) -"yd" = ( -/obj/structure/prop/mainship/mission_planning_system, -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"yf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 10 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/orion_outpost/ground/outpostcent) -"yg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 6 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"yi" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveN) -"yj" = ( -/obj/effect/landmark/weed_node, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/orion_outpost/surface/building/command) -"yk" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/surface/building/vehicledepot) -"ym" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostn) -"yn" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/bridgeofficer, -/obj/effect/decal/cleanable/blood, -/obj/effect/ai_node, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/orion_outpost/surface/building/command) -"yo" = ( -/obj/effect/spawner/random/weaponry/gun/rifles, -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"yp" = ( -/obj/structure/stairs/seamless/platform_vert{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"yq" = ( -/obj/machinery/processor, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"yr" = ( -/obj/machinery/status_display{ - pixel_y = -1 - }, -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/administration) -"yt" = ( -/obj/structure/flora/ausbushes/reedbush, -/obj/effect/turf_decal/riverdecal, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"yu" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostse) -"yv" = ( -/obj/structure/cable, -/turf/open/floor/mainship/terragov/north{ - dir = 9 - }, -/area/orion_outpost/surface/building/administration) -"yw" = ( -/obj/structure/barricade/concrete{ - dir = 8 - }, -/obj/structure/barricade/concrete{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostnw) -"yy" = ( -/obj/structure/prop/vehicle/truck, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostsw) -"yz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"yA" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/building/engineering) -"yC" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/sterile/white, -/area/orion_outpost/surface/building/dorms) -"yE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/surface/building/cargo) -"yF" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/monitor) -"yG" = ( -/obj/structure/cargo_container/ch_red, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"yH" = ( -/turf/open/floor/mainship/floor, -/area/orion_outpost/ground/outpostse) -"yI" = ( -/obj/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/surface/building/engineering) -"yK" = ( -/obj/item/weapon/gun/sentry/basic/premade/radial, -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"yL" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/surface/building/barracks) -"yO" = ( -/obj/effect/turf_decal/riverdecal, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"yP" = ( -/obj/structure/prop/mainship/sensor_computer1, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"yQ" = ( -/obj/docking_port/stationary/crashmode, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"yS" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"yT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"yU" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/orion_outpost/ground/outpostse) -"yV" = ( -/obj/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/mainship/orange{ - dir = 9 - }, -/area/orion_outpost/surface/building/engineering) -"yW" = ( -/obj/structure/flora/ausbushes/reedbush, -/obj/effect/turf_decal/riverdecal, -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"yZ" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outposts) -"zb" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plating, -/area/orion_outpost/surface/building/engineering) -"zc" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/orion_outpost/ground/outpostsw) -"zd" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"ze" = ( -/turf/closed/mineral/smooth/indestructible, -/area/orion_outpost/ground/underground/caveE) -"zf" = ( -/obj/machinery/telecomms/relay/preset/telecomms, -/turf/closed/mineral/smooth/indestructible, -/area/storage/testroom) -"zh" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 5 - }, -/area/orion_outpost/surface/landing_pad_2) -"zi" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS) -"zj" = ( -/obj/machinery/miner/damaged/platinum, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveN) -"zk" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"zm" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostn) -"zn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostcent) -"zo" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"zq" = ( -/obj/structure/flora/tree/joshua, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"zu" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/mainship/green, -/area/orion_outpost/surface/building/prep) -"zw" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/dmg1, -/area/orion_outpost/ground/outpostse) -"zx" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/building/cargo) -"zy" = ( -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"zz" = ( -/obj/machinery/door/airlock/mainship/security{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/armory) -"zB" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/building/cargo) -"zC" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"zF" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/breakroom) -"zG" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/orion_outpost/ground/outposte) -"zH" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"zI" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/landing_pad2_external) -"zJ" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"zK" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"zL" = ( -/turf/closed/mineral/smooth/indestructible, -/area/orion_outpost/ground/outpostse) -"zM" = ( -/obj/structure/prop/mainship/sensor_computer2, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/orion_outpost/surface/building/monitor) -"zP" = ( -/obj/structure/prop/mainship/sensor_computer3, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"zQ" = ( -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/orion_outpost/surface/building/command) -"zR" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/orion_outpost/surface/building/command) -"zT" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/orion_outpost/surface/building/cargo) -"zV" = ( -/obj/structure/stairs/seamless/platform_vert{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"zW" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/freezer, -/area/orion_outpost/surface/building/canteen) -"zX" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"zY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"zZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostcent) -"Aa" = ( -/obj/structure/cable, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"Ab" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/floor/mainship/orange{ - dir = 9 - }, -/area/orion_outpost/surface/building/tadpolepad) -"Ac" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"Ad" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Af" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"Ag" = ( -/obj/structure/prop/brokenvendor/brokenweaponsrack, -/turf/open/floor/mainship/green, -/area/orion_outpost/surface/building/prep) -"Ah" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/floor/mainship/orange{ - dir = 5 - }, -/area/orion_outpost/surface/building/tadpolepad) -"Aj" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveN/garbledradio) -"Am" = ( -/obj/effect/turf_decal/riverdecal, -/obj/item/weapon/gun/sentry/basic/premade/radial, -/obj/structure/barricade/concrete{ - dir = 4 - }, -/obj/structure/barricade/concrete{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"An" = ( -/obj/effect/landmark/xeno_silo_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"Ao" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Ap" = ( -/obj/structure/stairs/seamless/platform_vert{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"As" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"At" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/engineering) -"Au" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"Av" = ( -/obj/structure/platform, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Ax" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"Az" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"AA" = ( -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"AC" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"AD" = ( -/obj/machinery/computer3/server/rack, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/orion_outpost/surface/building/atc) -"AE" = ( -/obj/structure/prop/mainship/mapping_computer, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/orion_outpost/surface/building/atc) -"AG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"AI" = ( -/obj/structure/prop/brokenvendor/surplusclothes, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/green{ - dir = 8 - }, -/area/orion_outpost/surface/building/prep) -"AK" = ( -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"AL" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"AM" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/tadpolepad) -"AO" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostcent) -"AP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer1, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/orion_outpost/ground/outpostsw) -"AQ" = ( -/obj/structure/flora/ausbushes/reedbush, -/obj/effect/turf_decal/riverdecal, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"AR" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS) -"AT" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostse) -"AU" = ( -/obj/structure/desertdam/decals/road{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"AW" = ( -/obj/structure/cable, -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/surface/building/cargo) -"AY" = ( -/obj/structure/barricade/concrete{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"AZ" = ( -/obj/effect/landmark/corpsespawner/pmc, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"Ba" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostw) -"Bb" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Bf" = ( -/obj/machinery/floodlight/landing, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/landing_pad2_external) -"Bg" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"Bh" = ( -/obj/effect/turf_decal/warning_stripes/medical, -/obj/effect/turf_decal/warning_stripes/box/small, -/obj/effect/turf_decal/warning_stripes/box/small{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"Bi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/mainship/blue, -/area/orion_outpost/surface/building/administration) -"Bj" = ( -/obj/effect/landmark/xeno_silo_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS) -"Bk" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/train_yard) -"Bl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"Bm" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/orion_outpost/ground/outpostw) -"Bo" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone/lz2, -/turf/closed/mineral/smooth/indestructible, -/area/orion_outpost/surface/landing_pad2_external) -"Bp" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/orion_outpost/ground/outpostcent) -"Bq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostnw) -"Bs" = ( -/obj/structure/cargo_container/red{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Bu" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/orange{ - dir = 1 - }, -/area/orion_outpost/surface/building/cargo) -"Bv" = ( -/obj/machinery/light, -/turf/open/floor/mainship/blue, -/area/orion_outpost/surface/building/command) -"Bw" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"By" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/orion_outpost/surface/building/ammodepot) -"BA" = ( -/obj/structure/cable, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"BD" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"BE" = ( -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/orion_outpost/surface/building/command) -"BF" = ( -/obj/structure/cargo_container/red, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"BG" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone/lz2, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"BH" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/underground/caveS) -"BK" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"BL" = ( -/obj/machinery/light, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/tadpolepad) -"BM" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/orion_outpost/surface/building/tadpolepad) -"BN" = ( -/turf/open/floor/podhatch/floor, -/area/orion_outpost/surface/building/crashedufo) -"BO" = ( -/obj/structure/prop/vehicle/truck, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"BP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostcent) -"BQ" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/ammodepot) -"BS" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"BU" = ( -/obj/structure/stairs/seamless/platform_vert/water{ - dir = 8 - }, -/turf/open/liquid/water/river, -/area/orion_outpost/ground/outpostcent) -"BV" = ( -/obj/structure/cable, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/monitor) -"BY" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/breakroom) -"Cc" = ( -/obj/machinery/miner/damaged/platinum, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveN/garbledradio) -"Cd" = ( -/obj/structure/table/mainship, -/obj/item/storage/toolbox/mechanical, -/obj/structure/platform, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"Ce" = ( -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"Cf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostw) -"Cg" = ( -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/orion_outpost/surface/building/atc) -"Ci" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/outpostsw) -"Cj" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"Ck" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/orange{ - dir = 1 - }, -/area/orion_outpost/surface/building/cargo) -"Cl" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/surface/building/vehicledepot) -"Cm" = ( -/obj/structure/cargo_container/hd{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Co" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposts) -"Cp" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/orion_outpost/surface/building/cargo) -"Cq" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/orion_outpost/surface/building/administration) -"Cr" = ( -/obj/structure/shuttle/engine/propulsion/burst/right, -/turf/open/shuttle/dropship/three, -/area/orion_outpost/ground/outpostse) -"Cu" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/surface/train_yard) -"Cw" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostse) -"Cx" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 4 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposts) -"Cy" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"Cz" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/orion_outpost/ground/outpostcent) -"CA" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"CB" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/ammodepot) -"CC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/orion_outpost/surface/building/administration) -"CD" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/barracks) -"CE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/orion_outpost/ground/outpostnw) -"CF" = ( -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostnw) -"CH" = ( -/obj/structure/prop/vehicle/van{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostcent) -"CI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer1, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/orion_outpost/ground/outpostnw) -"CJ" = ( -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/plating/ground/desertdam/grate/alternate, -/area/orion_outpost/surface/building/engineering) -"CK" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"CM" = ( -/obj/structure/window{ - dir = 4 - }, -/obj/structure/nuke_disk_candidate, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"CO" = ( -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"CP" = ( -/obj/structure/table/mainship, -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/breakroom) -"CR" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"CT" = ( -/obj/structure/prop/mainship/sensor_computer2, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/command) -"CU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/marine, -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"CV" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/brig) -"CY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 9 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"CZ" = ( -/obj/structure/cable, -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Da" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/armory) -"Dc" = ( -/obj/structure/prop/mainship/mission_planning_system, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"Df" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone/lz2{ - dir = 2 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostnw) -"Dg" = ( -/turf/closed/shuttle/dropship_regular/backhatch{ - dir = 1 - }, -/area/orion_outpost/surface/building/crashedufo) -"Dh" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/blue, -/area/orion_outpost/surface/building/administration) -"Dj" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Dk" = ( -/obj/structure/desertdam/decals/road/edge/long, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"Dl" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 8 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"Dm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/bridgeofficer, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"Dn" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"Do" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"Dp" = ( -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostse) -"Dq" = ( -/turf/open/floor/mainship/black/corner{ - dir = 8 - }, -/area/orion_outpost/surface/building/atc) -"Dr" = ( -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostsw) -"Ds" = ( -/obj/effect/landmark/corpsespawner/marine/engineer, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"Dt" = ( -/obj/effect/spawner/random/misc/trash, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Du" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposts) -"Dw" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/orion_outpost/surface/building/armory) -"Dx" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostw) -"DC" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/orion_outpost/surface/train_yard) -"DD" = ( -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/orion_outpost/surface/building/administration) -"DE" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/armory) -"DF" = ( -/obj/effect/landmark/xeno_silo_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostnw) -"DH" = ( -/obj/structure/stairs/seamless/platform_vert{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/green{ - dir = 4 - }, -/area/orion_outpost/surface/building/prep) -"DI" = ( -/obj/structure/platform, -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostse) -"DJ" = ( -/obj/structure/cable, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"DM" = ( -/turf/open/floor/mainship/sterile/white, -/area/orion_outpost/ground/outposts) -"DN" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS/garbledradio) -"DO" = ( -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/orion_outpost/surface/building/administration) -"DP" = ( -/obj/machinery/vending/cola, -/turf/open/floor/mainship/sterile/side{ - dir = 4 - }, -/area/orion_outpost/surface/building/medbay) -"DQ" = ( -/obj/structure/prop/vehicle/crawler/crawler_fuel{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"DR" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"DU" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"DV" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3/server, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/engineering) -"DW" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/orange, -/area/orion_outpost/surface/building/cargo) -"DX" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"DY" = ( -/obj/machinery/photocopier, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/orion_outpost/surface/building/administration) -"DZ" = ( -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/atc) -"Ea" = ( -/obj/structure/cargo_container/green, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Ec" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/cargo) -"Ed" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveE) -"Ef" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostnw) -"Eg" = ( -/obj/structure/monorail{ - dir = 4 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/surface/train_yard) -"Ei" = ( -/obj/effect/landmark/corpsespawner/marine, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"Ej" = ( -/obj/structure/barricade/concrete, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/surface/building/barracks) -"El" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/orion_outpost/surface/building/administration) -"Em" = ( -/obj/machinery/telecomms/server, -/turf/open/floor/mainship/black, -/area/orion_outpost/surface/building/atc) -"En" = ( -/obj/effect/landmark/xeno_silo_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveN) -"Eo" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"Eq" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/orion_outpost/surface/building/atc) -"Es" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/engineering) -"Eu" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/orange{ - dir = 9 - }, -/area/orion_outpost/surface/building/engineering) -"Ev" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/structure/prop/train/empty{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Ew" = ( -/obj/structure/cargo_container/wy{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Ex" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/green, -/area/orion_outpost/surface/building/prep) -"Ey" = ( -/obj/structure/platform, -/obj/machinery/status_display{ - pixel_y = -1 - }, -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/prep) -"EB" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"EC" = ( -/obj/structure/cargo_container/green{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"ED" = ( -/obj/structure/table/mainship, -/obj/item/stack/sheet/metal, -/obj/structure/platform, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"EE" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"EF" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"EH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"EI" = ( -/obj/machinery/light, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"EJ" = ( -/obj/machinery/landinglight/lz2, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/landing_pad2_external) -"EL" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/train_yard) -"EM" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/orion_outpost/surface/building/administration) -"EN" = ( -/obj/structure/cargo_container/red{ - dir = 4 - }, -/turf/open/floor/mainship/orange/full, -/area/orion_outpost/surface/building/cargo) -"EO" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/clipboard, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"EQ" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/liquid/water/river, -/area/orion_outpost/ground/river/riverside_north) -"ER" = ( -/turf/open/floor/mainship/sterile/side, -/area/orion_outpost/surface/building/medbay) -"ES" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/desertdam/grate/alternate, -/area/orion_outpost/surface/building/engineering) -"ET" = ( -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"EU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/layer1{ - dir = 4; - on = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"EV" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"EW" = ( -/obj/effect/landmark/xeno_tunnel_spawn, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"Fa" = ( -/turf/open/liquid/water/river, -/area/orion_outpost/ground/river/riverside_central) -"Fb" = ( -/obj/structure/cargo_container/green{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Fc" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/orion_outpost/surface/building/cargo) -"Fd" = ( -/obj/structure/prop/mainship/mission_planning_system, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"Ff" = ( -/obj/structure/prop/brokenvendor/engivend, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/green{ - dir = 8 - }, -/area/orion_outpost/surface/building/prep) -"Fg" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveE) -"Fj" = ( -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/administration) -"Fk" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/building/prep) -"Fl" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"Fm" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/canteen) -"Fn" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/brig) -"Fq" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54" - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"Fr" = ( -/turf/open/floor/mainship/blue/corner{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"Fs" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/item/weapon/gun/sentry/basic/premade/radial, -/obj/structure/barricade/concrete, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"Ft" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/layer1{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposte) -"Fv" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostnw) -"Fx" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"Fy" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"Fz" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/administration) -"FB" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/orion_outpost/ground/outpostcent) -"FC" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic/noglass, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/cargo) -"FD" = ( -/turf/closed/wall/mainship/outer/reinforced, -/area/orion_outpost/ground/outpostse) -"FE" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outposte) -"FF" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposts) -"FG" = ( -/obj/structure/cargo_container/horizontal{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"FI" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostw) -"FJ" = ( -/obj/machinery/photocopier, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/atc) -"FK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/layer1, -/turf/open/floor/mainship/terragov/north{ - dir = 5 - }, -/area/orion_outpost/surface/building/administration) -"FM" = ( -/obj/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"FN" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/orion_outpost/surface/building/cargo) -"FO" = ( -/obj/structure/table/mainship, -/obj/item/storage/fancy/chemrettes, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"FP" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/orion_outpost/ground/outpostsw) -"FR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostsw) -"FT" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"FV" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"FY" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/dorms) -"FZ" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/train_yard) -"Ga" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 6 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostcent) -"Gb" = ( -/obj/structure/barricade/concrete{ - dir = 4 - }, -/obj/structure/barricade/concrete{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"Gd" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS/garbledradio) -"Ge" = ( -/obj/effect/turf_decal/warning_stripes/leader, -/obj/effect/turf_decal/warning_stripes/box/small, -/obj/effect/turf_decal/warning_stripes/box/small{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"Gf" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/brig) -"Gi" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/dorms) -"Gl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"Gm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/surface/building/cargo) -"Go" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"Gp" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposts) -"Gq" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"Gr" = ( -/obj/item/ammo_magazine/tank/ltb_cannon, -/obj/item/ammo_magazine/tank/ltaap_chaingun, -/turf/open/floor/mainship/black/full, -/area/orion_outpost/surface/building/ammodepot) -"Gs" = ( -/turf/closed/mineral/smooth, -/area/orion_outpost/surface/train_yard) -"Gu" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor/plating, -/area/orion_outpost/surface/building/tadpolepad) -"Gw" = ( -/obj/structure/prop/vehicle/crawler/crawler_fuel, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"Gx" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 8 - }, -/area/orion_outpost/surface/landing_pad_2) -"Gy" = ( -/obj/structure/stairs/seamless/platform_vert{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"Gz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostsw) -"GA" = ( -/obj/structure/rack, -/obj/effect/spawner/random/engineering/bomb_supply, -/obj/effect/spawner/random/engineering/computercircuit, -/obj/effect/spawner/random/engineering/tech_supply, -/obj/effect/spawner/random/misc/greytide, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"GC" = ( -/obj/structure/prop/brokenvendor/brokenspecialistvendor/leader, -/turf/open/floor/mainship/green{ - dir = 9 - }, -/area/orion_outpost/surface/building/prep) -"GF" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/edge, -/area/orion_outpost/ground/outpostw) -"GG" = ( -/obj/structure/prop/brokenvendor/surplusclothes, -/turf/open/floor/mainship/green, -/area/orion_outpost/surface/building/prep) -"GH" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/surface/building/cargo) -"GI" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"GJ" = ( -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"GK" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"GL" = ( -/obj/machinery/power/apc, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"GN" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS/garbledradio) -"GO" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 4 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostw) -"GP" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostw) -"GR" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 2 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/breakroom) -"GT" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostn) -"GU" = ( -/obj/effect/landmark/xeno_tunnel_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostn) -"GV" = ( -/obj/structure/cargo_container/hd{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"GW" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/green{ - dir = 8 - }, -/area/orion_outpost/surface/building/prep) -"GY" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/orange{ - dir = 1 - }, -/area/orion_outpost/surface/building/engineering) -"GZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/orion_outpost/surface/building/ammodepot) -"Hc" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"Hd" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 6 - }, -/area/orion_outpost/surface/landing_pad_2) -"He" = ( -/turf/open/floor/mainship/orange/corner, -/area/orion_outpost/surface/building/cargo) -"Hg" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostsw) -"Hh" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 8 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostw) -"Hi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/weed_node, -/obj/effect/ai_node, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/dorms) -"Hj" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Hk" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/effect/landmark/weed_node, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/armory) -"Hm" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/building/cargo) -"Hn" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/floor/plating/dmg1, -/area/orion_outpost/surface/building/crashedufo) -"Ho" = ( -/obj/structure/reagent_dispensers/fueltank/xfuel, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Hr" = ( -/obj/machinery/light, -/turf/open/floor/mainship/orange{ - dir = 6 - }, -/area/orion_outpost/surface/building/cargo) -"Hs" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostnw) -"Ht" = ( -/obj/structure/cargo_container/hd{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Hv" = ( -/turf/open/floor/mainship/orange{ - dir = 6 - }, -/area/orion_outpost/surface/building/cargo) -"Hw" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 8 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostse) -"Hx" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/surface/building/vehicledepot) -"Hy" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"Hz" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposte) -"HB" = ( -/obj/docking_port/mobile/marine_dropship/minidropship, -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/turf/open/floor/mainship/orange{ - dir = 1 - }, -/area/orion_outpost/ground/outpostse) -"HC" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"HD" = ( -/obj/machinery/vending/security, -/turf/open/floor/mainship/red, -/area/orion_outpost/surface/building/monitor) -"HG" = ( -/obj/effect/attach_point/weapon/dropship1{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/warnplate{ - dir = 8 - }, -/area/orion_outpost/surface/landing_pad_2) -"HJ" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/building/crashedufo) -"HL" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"HM" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/surface/train_yard) -"HN" = ( -/obj/structure/cargo_container/red, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"HP" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"HQ" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/surface/building/tadpolepad) -"HR" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"HS" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"HU" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/orion_outpost/surface/building/tadpolepad) -"HV" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"HW" = ( -/obj/effect/ai_node, -/turf/open/shuttle/brig, -/area/orion_outpost/surface/building/crashedufo) -"HX" = ( -/obj/machinery/light, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"HY" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostcent) -"Ia" = ( -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/surface/building/cargo) -"Ib" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/light, -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/orion_outpost/surface/building/atc) -"Id" = ( -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/orion_outpost/surface/building/administration) -"Ie" = ( -/obj/machinery/vending/coffee, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"If" = ( -/turf/open/floor/mainship/green{ - dir = 4 - }, -/area/orion_outpost/surface/building/prep) -"Ih" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic/noglass, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"Ii" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/mainship/orange{ - dir = 1 - }, -/area/orion_outpost/surface/building/engineering) -"Ij" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"Ik" = ( -/turf/open/floor/wood, -/area/orion_outpost/surface/building/administration) -"Im" = ( -/obj/structure/platform{ - dir = 6 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"In" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/mainship/orange, -/area/orion_outpost/surface/building/engineering) -"Io" = ( -/obj/machinery/computer3/server/rack, -/turf/open/floor/mainship/orange, -/area/orion_outpost/surface/building/engineering) -"Ip" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"Iq" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/mainship_hull, -/area/orion_outpost/surface/building/tadpolepad) -"Ir" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 6 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/orion_outpost/ground/outpostnw) -"Is" = ( -/obj/effect/landmark/weed_node, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS/garbledradio) -"It" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"Iw" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outposte) -"Ix" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone/lz2{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostnw) -"Iz" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/orion_outpost/surface/building/vehicledepot) -"IB" = ( -/obj/item/weapon/gun/sentry/basic/premade/radial, -/obj/structure/barricade/concrete{ - dir = 4 - }, -/obj/structure/barricade/concrete{ - dir = 1 - }, -/obj/structure/barricade/concrete, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"IC" = ( -/obj/structure/cargo_container/hd{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/cargo) -"IH" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 1 - }, -/area/orion_outpost/surface/landing_pad_2) -"IJ" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"IL" = ( -/obj/structure/cable, -/turf/open/floor/mainship/orange{ - dir = 1 - }, -/area/orion_outpost/surface/building/cargo) -"IM" = ( -/obj/effect/ai_node, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/barracks) -"IO" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/ai_node, -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/orion_outpost/surface/building/command) -"IP" = ( -/obj/machinery/computer3, -/obj/structure/table/mainship, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/orion_outpost/surface/building/cargo) -"IQ" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"IR" = ( -/obj/structure/cargo_container/red{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"IX" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/orion_outpost/surface/building/tadpolepad) -"IY" = ( -/obj/effect/landmark/corpsespawner/marine, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostcent) -"IZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostnw) -"Ja" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"Jb" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/building/prep) -"Jc" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/orion_outpost/surface/building/cargo) -"Jd" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/barracks) -"Jf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Jg" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/orion_outpost/surface/building/armory) -"Jh" = ( -/obj/machinery/light, -/obj/effect/landmark/weed_node, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/dorms) -"Ji" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/orion_outpost/surface/building/cargo) -"Jj" = ( -/obj/effect/landmark/corpsespawner/marine, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"Jk" = ( -/area/orion_outpost/ground/outpostse) -"Jl" = ( -/obj/structure/shuttle/engine/propulsion/burst/left, -/turf/open/shuttle/dropship/three, -/area/orion_outpost/ground/outpostse) -"Jn" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/breakroom) -"Jp" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"Js" = ( -/obj/machinery/vending/cola, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/orion_outpost/surface/building/administration) -"Jt" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/barracks) -"Ju" = ( -/obj/effect/attach_point/electronics/dropship1, -/turf/open/floor/plating, -/area/orion_outpost/surface/landing_pad_2) -"Jw" = ( -/turf/open/floor/mainship/orange, -/area/orion_outpost/surface/building/cargo) -"Jx" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostsw) -"Jy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"JB" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/train_yard) -"JC" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostw) -"JD" = ( -/turf/open/floor/mainship/orange{ - dir = 10 - }, -/area/orion_outpost/ground/outpostse) -"JE" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/blue, -/area/orion_outpost/surface/building/command) -"JF" = ( -/obj/item/weapon/gun/sentry/basic/premade/radial, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"JG" = ( -/obj/machinery/computer/telecomms/server, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/orion_outpost/surface/building/atc) -"JH" = ( -/obj/structure/coatrack, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/administration) -"JI" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"JL" = ( -/turf/open/floor/mainship/orange{ - dir = 10 - }, -/area/orion_outpost/surface/building/engineering) -"JM" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/dorms) -"JN" = ( -/obj/structure/rack, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"JO" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"JP" = ( -/obj/structure/window, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"JQ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/orion_outpost/surface/building/monitor) -"JR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostse) -"JT" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"JU" = ( -/obj/structure/dispenser, -/turf/open/floor/mainship/orange{ - dir = 5 - }, -/area/orion_outpost/surface/building/engineering) -"JV" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"JW" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"JX" = ( -/turf/open/floor/mainship/orange, -/area/orion_outpost/surface/building/tadpolepad) -"JY" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/outpostse) -"JZ" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Ka" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/dorms) -"Kb" = ( -/obj/machinery/light, -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/ground/outpostse) -"Ke" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/ground/outpostsw) -"Kf" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Kg" = ( -/obj/structure/table/mainship, -/obj/item/storage/surgical_tray, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/side{ - dir = 4 - }, -/area/orion_outpost/surface/building/medbay) -"Ki" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 9 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostcent) -"Kk" = ( -/obj/effect/landmark/corpsespawner/marine, -/obj/effect/ai_node, -/turf/open/floor/mainship/floor, -/area/orion_outpost/surface/building/tadpolepad) -"Km" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/floor/podhatch/floor, -/area/orion_outpost/surface/building/crashedufo) -"Kn" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostse) -"Ko" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"Kp" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone/lz2{ - dir = 2 - }, -/turf/closed/mineral/smooth, -/area/orion_outpost/surface/landing_pad2_external) -"Kq" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/atc) -"Kr" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"Ks" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer1{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"Kt" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outposte) -"Ku" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"Kv" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/mainship/sterile/corner{ - dir = 4 - }, -/area/orion_outpost/surface/building/medbay) -"Kx" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"Ky" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/ground/outposts) -"Kz" = ( -/obj/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/icefloor/warnplate{ - dir = 8 - }, -/area/orion_outpost/surface/landing_pad_2) -"KA" = ( -/obj/structure/desertdam/decals/road/edge/long{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"KB" = ( -/obj/structure/cable, -/turf/open/floor/mainship/orange/corner{ - dir = 1 - }, -/area/orion_outpost/surface/building/cargo) -"KC" = ( -/obj/structure/barricade/metal{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"KE" = ( -/obj/effect/landmark/corpsespawner/marine/corpsman, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"KF" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/ground/outpostse) -"KG" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/train_yard) -"KH" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"KJ" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"KK" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostse) -"KL" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostcent) -"KN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/monitor) -"KO" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostsw) -"KP" = ( -/obj/effect/ai_node, -/turf/open/floor/podhatch/floor, -/area/orion_outpost/surface/building/crashedufo) -"KR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outposte) -"KS" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/outpostnw) -"KT" = ( -/obj/structure/rack, -/obj/effect/spawner/random/engineering/engibelt, -/obj/effect/spawner/random/engineering/powercell, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"KU" = ( -/turf/open/floor/mainship/orange{ - dir = 9 - }, -/area/orion_outpost/ground/outpostse) -"KV" = ( -/obj/structure/barricade/concrete{ - dir = 4 - }, -/obj/structure/barricade/concrete{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"KW" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"KX" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/cargo) -"KY" = ( -/obj/machinery/cic_maptable, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"La" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostnw) -"Lb" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveN) -"Lc" = ( -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"Ld" = ( -/obj/structure/prop/mainship/telecomms, -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/orion_outpost/surface/building/atc) -"Le" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"Lg" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/green, -/area/orion_outpost/surface/building/prep) -"Lh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/mainship/terragov/north{ - dir = 4 - }, -/area/orion_outpost/surface/building/administration) -"Li" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Lj" = ( -/obj/structure/bed/chair, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"Lk" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposte) -"Ll" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"Lm" = ( -/obj/machinery/vending/snack, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/orion_outpost/surface/building/administration) -"Lo" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic/noglass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/dorms) -"Lp" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostsw) -"Lq" = ( -/obj/structure/platform{ - dir = 14 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"Lr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 1 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostw) -"Lt" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/orion_outpost/surface/building/vehicledepot) -"Lv" = ( -/obj/structure/desertdam/decals/road{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"Lw" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"Lx" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outposte) -"Ly" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/orion_outpost/ground/outpostcent) -"Lz" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 8 - }, -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposte) -"LA" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/orange/full, -/area/orion_outpost/surface/building/cargo) -"LD" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/orion_outpost/surface/building/command) -"LE" = ( -/obj/structure/desertdam/decals/road{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"LF" = ( -/obj/structure/prop/mainship/sensor_computer3, -/obj/structure/platform{ - dir = 5 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"LG" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"LI" = ( -/obj/machinery/door/poddoor/mainship/open, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/vehicledepot) -"LJ" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/orion_outpost/surface/building/command) -"LK" = ( -/obj/structure/cable, -/turf/open/floor/mainship/orange/full, -/area/orion_outpost/surface/building/cargo) -"LP" = ( -/turf/open/floor/mainship/blue/corner{ - dir = 8 - }, -/area/orion_outpost/surface/building/command) -"LQ" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostse) -"LR" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"LS" = ( -/obj/machinery/computer3/server/rack, -/turf/open/floor/mainship/black{ - dir = 6 - }, -/area/orion_outpost/surface/building/atc) -"LT" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"LV" = ( -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/outpostn) -"LW" = ( -/obj/machinery/miner/damaged, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"LY" = ( -/obj/structure/platform{ - dir = 9 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostsw) -"LZ" = ( -/turf/closed/mineral/smooth/indestructible, -/area/orion_outpost/ground/underground/caveN) -"Ma" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"Mb" = ( -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"Mc" = ( -/obj/machinery/light, -/turf/open/floor/mainship/green, -/area/orion_outpost/surface/building/prep) -"Md" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Me" = ( -/obj/machinery/door/airlock/mainship/secure{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Mf" = ( -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/outpostw) -"Mg" = ( -/obj/structure/desertdam/decals/road{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"Mh" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostw) -"Mj" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostcent) -"Ml" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/orion_outpost/ground/outpostnw) -"Mm" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/orion_outpost/surface/building/vehicledepot) -"Mo" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostcent) -"Mq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostsw) -"Mr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/layer1{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostse) -"Ms" = ( -/obj/structure/desertdam/decals/road{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"Mv" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/monitor) -"Mw" = ( -/turf/open/floor/mainship/green{ - dir = 10 - }, -/area/orion_outpost/surface/building/prep) -"Mx" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/green{ - dir = 4 - }, -/area/orion_outpost/surface/building/prep) -"My" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/orion_outpost/surface/building/brig) -"MA" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"MB" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"MC" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outposts) -"MD" = ( -/obj/structure/cable, -/obj/effect/landmark/weed_node, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"ME" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/cigarettes, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"MF" = ( -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"MG" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/freezer, -/area/orion_outpost/surface/building/canteen) -"MH" = ( -/obj/structure/flora/tree/joshua, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostnw) -"MJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"MK" = ( -/obj/machinery/vending/snack, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/orion_outpost/surface/building/command) -"MM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostw) -"MN" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveE/garbledradio) -"MO" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"MP" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/breakroom) -"MQ" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/snacks/mre_pack/meal4, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"MR" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/vehicledepot) -"MT" = ( -/obj/effect/ai_node, -/obj/structure/platform, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outposts) -"MV" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/orion_outpost/ground/outpostse) -"MW" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/sterile/side{ - dir = 1 - }, -/area/orion_outpost/surface/building/medbay) -"MY" = ( -/obj/effect/ai_node, -/turf/open/liquid/water/river, -/area/orion_outpost/ground/river/riverside_south) -"MZ" = ( -/obj/machinery/button/door/open_only/landing_zone/lz2, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/landing_pad2_external) -"Na" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"Nb" = ( -/obj/structure/desertdam/decals/road/edge/long, -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"Nc" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/orion_outpost/surface/building/administration) -"Nd" = ( -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"Ne" = ( -/obj/effect/ai_node, -/obj/structure/stairs/edge{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/building/vehicledepot) -"Nf" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/building/engineering) -"Ng" = ( -/obj/machinery/photocopier, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Nh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 5 - }, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/orion_outpost/ground/outpostcent) -"Ni" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/administration) -"Nj" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/atc) -"Nk" = ( -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostse) -"Nl" = ( -/obj/machinery/door/airlock/mainship/medical/free_access{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"Nm" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/command) -"Nn" = ( -/turf/open/floor/plating, -/area/orion_outpost/surface/building/tadpolepad) -"No" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/mainship/terragov/north{ - dir = 5 - }, -/area/orion_outpost/surface/building/prep) -"Np" = ( -/obj/structure/prop/mainship/telecomms/bus, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/orion_outpost/surface/building/atc) -"Nq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 9 - }, -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"Nr" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/building/vehicledepot) -"Ns" = ( -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Nt" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/landing_pad2_external) -"Nv" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 1 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"Nw" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/cargo) -"Ny" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/building/cargo) -"Nz" = ( -/obj/item/storage/toolbox/mechanical, -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/bcircuit, -/area/orion_outpost/surface/building/engineering) -"NA" = ( -/obj/structure/prop/vehicle/crane/cranecargo, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"NB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/mainship/orange/full, -/area/orion_outpost/surface/building/cargo) -"NC" = ( -/obj/effect/landmark/corpsespawner/marine, -/obj/effect/ai_node, -/turf/open/floor/mainship/blue, -/area/orion_outpost/surface/building/administration) -"ND" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/orion_outpost/surface/building/tadpolepad) -"NE" = ( -/obj/structure/cargo_container/wy{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"NF" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed/bunkbed, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/barracks) -"NG" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostse) -"NI" = ( -/obj/structure/cargo_container/hd{ - dir = 1 - }, -/turf/open/floor/mainship/orange, -/area/orion_outpost/surface/building/cargo) -"NJ" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/atc) -"NO" = ( -/obj/machinery/iv_drip, -/turf/open/floor/mainship/sterile/corner{ - dir = 8 - }, -/area/orion_outpost/surface/building/medbay) -"NP" = ( -/obj/machinery/miner/damaged, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"NQ" = ( -/obj/structure/closet/secure_closet/freezer, -/turf/open/floor/freezer, -/area/orion_outpost/surface/building/canteen) -"NS" = ( -/turf/open/floor/wood, -/area/orion_outpost/surface/building/dorms) -"NT" = ( -/obj/machinery/vending/robotics, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/surface/building/engineering) -"NU" = ( -/obj/structure/desertdam/decals/road{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"NV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostw) -"NW" = ( -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/orion_outpost/surface/building/brig) -"NX" = ( -/obj/item/storage/toolbox/mechanical, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/vehicledepot) -"NY" = ( -/obj/item/ammo_magazine/tank/ltb_cannon, -/turf/open/floor/mainship/black/full, -/area/orion_outpost/surface/building/ammodepot) -"Oa" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostse) -"Ob" = ( -/obj/structure/bed/chair, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"Oc" = ( -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/orion_outpost/surface/building/monitor) -"Od" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"Oe" = ( -/obj/structure/cable, -/obj/effect/landmark/corpsespawner/marine/engineer, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/building/vehicledepot) -"Og" = ( -/obj/structure/prop/brokenvendor/brokenweaponsrack, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/orion_outpost/surface/building/armory) -"Oi" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"Oj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/bridgeofficer, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/orion_outpost/surface/building/atc) -"Ok" = ( -/obj/structure/cable, -/turf/open/floor/prison, -/area/orion_outpost/surface/building/engineering) -"On" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"Oo" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/surface/building/engineering) -"Op" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"Oq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 9 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"Or" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/ground/outposts) -"Ot" = ( -/obj/machinery/vending/snack, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"Ou" = ( -/obj/machinery/computer/body_scanconsole, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"Oy" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/floor/podhatch/floor, -/area/orion_outpost/surface/building/crashedufo) -"Oz" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/building/vehicledepot) -"OA" = ( -/obj/structure/desertdam/decals/road{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"OD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"OE" = ( -/obj/structure/cable, -/obj/effect/landmark/corpsespawner/bridgeofficer, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"OF" = ( -/obj/effect/landmark/corpsespawner/marine, -/obj/effect/decal/cleanable/blood, -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostse) -"OG" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone/lz2, -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/outpostnw) -"OH" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/orion_outpost/surface/building/administration) -"OI" = ( -/obj/machinery/door/airlock/multi_tile/mainship/marine/general, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"OJ" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/tadpolepad) -"OK" = ( -/obj/effect/spawner/random/misc/structure/fire_closet, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"OL" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostn) -"OM" = ( -/turf/open/floor/mainship/blue, -/area/orion_outpost/surface/building/administration) -"ON" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/side{ - dir = 4 - }, -/area/orion_outpost/surface/building/medbay) -"OO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"OP" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/vehicledepot) -"OQ" = ( -/obj/structure/flora/tree/joshua, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposts) -"OS" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/orion_outpost/surface/train_yard) -"OV" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposte) -"OW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"OX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"OZ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/liquid/water/river, -/area/orion_outpost/ground/river/riverside_south) -"Pb" = ( -/turf/open/floor/mainship/orange{ - dir = 1 - }, -/area/orion_outpost/surface/building/cargo) -"Pd" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Pe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer1, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"Pf" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/barracks) -"Pg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"Ph" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 10 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/orion_outpost/ground/outpostnw) -"Pi" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostse) -"Pj" = ( -/turf/open/floor/mainship/orange/corner{ - dir = 1 - }, -/area/orion_outpost/surface/building/cargo) -"Pl" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/building/tadpolepad) -"Pm" = ( -/obj/effect/landmark/xeno_tunnel_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveN/garbledradio) -"Pn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostcent) -"Po" = ( -/obj/structure/cargo_container/red{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Pq" = ( -/turf/open/liquid/water/river, -/area/orion_outpost/ground/river/riverside_south) -"Pr" = ( -/obj/structure/stairs/seamless/platform_vert, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"Ps" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/building/vehicledepot) -"Pu" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/cargo) -"Pw" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"Px" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveE/garbledradio) -"Py" = ( -/obj/structure/stairs/seamless/platform_vert{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"Pz" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostse) -"PB" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/ammodepot) -"PC" = ( -/obj/structure/barricade/concrete, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"PD" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/mainship_hull, -/area/orion_outpost/ground/outpostse) -"PE" = ( -/obj/structure/prop/brokenvendor/engivend, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/orion_outpost/surface/building/armory) -"PG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/administration) -"PH" = ( -/turf/open/floor/plating/ground/concrete/edge, -/area/orion_outpost/surface/train_yard) -"PI" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/train_yard) -"PJ" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"PK" = ( -/obj/structure/shuttle/engine/propulsion/burst/left, -/turf/open/shuttle/dropship/three, -/area/orion_outpost/surface/building/tadpolepad) -"PM" = ( -/obj/item/ammo_casing/bullet, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostse) -"PQ" = ( -/obj/structure/table/mainship, -/obj/effect/spawner/random/misc/book, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"PR" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/armory) -"PS" = ( -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/underground/caveN) -"PX" = ( -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/orion_outpost/surface/building/administration) -"PY" = ( -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/orion_outpost/surface/building/command) -"Qa" = ( -/obj/structure/monorail{ - dir = 4 - }, -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/surface/building/cargo) -"Qb" = ( -/obj/structure/monorail{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Qc" = ( -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostsw) -"Qe" = ( -/turf/open/floor/mainship/sterile/corner{ - dir = 8 - }, -/area/orion_outpost/surface/building/medbay) -"Qf" = ( -/obj/structure/cargo_container/wy{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Qg" = ( -/obj/structure/cargo_container/ch_green{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Qh" = ( -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/orion_outpost/surface/building/administration) -"Qi" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/orion_outpost/surface/building/cargo) -"Qj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/window, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Qk" = ( -/obj/effect/landmark/corpsespawner/bridgeofficer, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/orion_outpost/surface/building/administration) -"Ql" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/surface/building/tadpolepad) -"Qm" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/train_yard) -"Qn" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/monitor) -"Qp" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposts) -"Qq" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostsw) -"Qr" = ( -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"Qs" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostn) -"Qt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/terragov/north{ - dir = 8 - }, -/area/orion_outpost/surface/building/prep) -"Qu" = ( -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/surface/building/barracks) -"Qv" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 9 - }, -/area/orion_outpost/surface/landing_pad_2) -"Qw" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Qy" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"Qz" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS) -"QA" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"QB" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/prep) -"QE" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone/lz2, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostnw) -"QF" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/floor/plating, -/area/orion_outpost/surface/building/tadpolepad) -"QH" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/orion_outpost/surface/building/ammodepot) -"QJ" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"QN" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"QO" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"QP" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/orion_outpost/surface/building/administration) -"QQ" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/building/engineering) -"QR" = ( -/obj/structure/cargo_container/wy, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"QT" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/surface/building/barracks) -"QU" = ( -/turf/closed/mineral/smooth/indestructible, -/area/orion_outpost/ground/outposts) -"QW" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/train_yard) -"QX" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"QY" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/tadpolepad) -"QZ" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/orion_outpost/surface/building/armory) -"Rd" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostse) -"Re" = ( -/obj/structure/closet/secure_closet/guncabinet/riot_control, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/orion_outpost/surface/building/armory) -"Rg" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"Rh" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"Ri" = ( -/obj/machinery/light, -/turf/open/floor/mainship/red, -/area/orion_outpost/surface/building/armory) -"Rj" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"Rk" = ( -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/ground/outpostse) -"Rl" = ( -/obj/machinery/door/airlock/mainship/generic, -/obj/effect/ai_node, -/turf/open/floor/mainship/sterile/white, -/area/orion_outpost/surface/building/dorms) -"Rm" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 9 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostcent) -"Rn" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposte) -"Ro" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"Rr" = ( -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/orion_outpost/surface/building/atc) -"Rs" = ( -/turf/closed/mineral/smooth/indestructible, -/area/orion_outpost/ground/outpostn) -"Rt" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/orion_outpost/ground/outpostcent) -"Ru" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposts) -"Rv" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/machinery/elevator_strut/bottom, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Rw" = ( -/obj/structure/cryofeed/right{ - name = "\improper coolant feed" - }, -/turf/open/liquid/water/river, -/area/orion_outpost/ground/river/riverside_south) -"Rx" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/orion_outpost/surface/building/administration) -"Ry" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Rz" = ( -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/surface/building/engineering) -"RA" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostw) -"RB" = ( -/obj/structure/prop/mainship/mapping_computer, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/orion_outpost/surface/building/atc) -"RD" = ( -/obj/structure/sink{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/white, -/area/orion_outpost/surface/building/dorms) -"RE" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"RG" = ( -/obj/machinery/door/airlock/multi_tile/mainship/secdoor/glass, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"RH" = ( -/obj/structure/platform{ - dir = 10 - }, -/turf/open/floor/plating, -/area/orion_outpost/surface/building/tadpolepad) -"RO" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"RQ" = ( -/turf/closed/mineral/smooth/indestructible, -/area/orion_outpost/ground/outpostw) -"RR" = ( -/obj/item/weapon/gun/sentry/basic/premade/radial, -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostnw) -"RT" = ( -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"RU" = ( -/turf/open/floor/plating/ground/concrete/edge, -/area/orion_outpost/ground/outpostcent) -"RV" = ( -/obj/structure/filingcabinet, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/orion_outpost/surface/building/command) -"RW" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"RX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"RZ" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"Sb" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/breakroom) -"Se" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"Sf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 6 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostcent) -"Sg" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostcent) -"Sh" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/orion_outpost/surface/train_yard) -"Si" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/edge, -/area/orion_outpost/ground/outpostw) -"Sj" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostnw) -"Sk" = ( -/obj/structure/flora/tree/joshua, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"Sl" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/orion_outpost/surface/building/administration) -"Sm" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostsw) -"Sn" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostsw) -"Sp" = ( -/obj/structure/prop/vehicle/crawler, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"Sq" = ( -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outposte) -"Ss" = ( -/obj/effect/turf_decal/riverdecal, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"St" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostcent) -"Su" = ( -/turf/open/liquid/water/river, -/area/orion_outpost/ground/river/riverside_north) -"Sv" = ( -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/orion_outpost/surface/building/administration) -"Sw" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outposts) -"Sx" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"Sy" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/armory) -"Sz" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"SB" = ( -/obj/effect/spawner/random/misc/structure/supplycrate/normalweighted, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/tadpolepad) -"SC" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"SE" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/orion_outpost/surface/building/vehicledepot) -"SG" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/building/vehicledepot) -"SH" = ( -/obj/structure/table/mainship, -/obj/item/storage/donut_box, -/turf/open/floor/mainship/red, -/area/orion_outpost/surface/building/brig) -"SJ" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostsw) -"SK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"SL" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/barracks) -"SN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/red, -/area/orion_outpost/surface/building/brig) -"SO" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/ammodepot) -"SR" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/armory) -"SS" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/mainship/orange/corner{ - dir = 8 - }, -/area/orion_outpost/surface/building/engineering) -"ST" = ( -/obj/structure/prop/vehicle/truck/truckcargo, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"SU" = ( -/obj/structure/cable, -/obj/effect/landmark/corpsespawner/marine/engineer, -/turf/open/floor/prison, -/area/orion_outpost/surface/building/engineering) -"SV" = ( -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/underground/caveE/garbledradio) -"SW" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostn) -"SY" = ( -/obj/structure/cable, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/terragov/north{ - dir = 10 - }, -/area/orion_outpost/surface/building/administration) -"SZ" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/brig) -"Ta" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge, -/area/orion_outpost/surface/building/vehicledepot) -"Tb" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostse) -"Tc" = ( -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/outpostcent) -"Td" = ( -/obj/item/bedsheet/red, -/obj/structure/bed, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/brig) -"Te" = ( -/obj/structure/table/mainship, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/administration) -"Tg" = ( -/obj/vehicle/ridden/powerloader, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Th" = ( -/obj/effect/landmark/corpsespawner/marine/engineer, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"Ti" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/layer1, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostnw) -"Tk" = ( -/obj/structure/platform, -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostcent) -"Tl" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/mainship/orange{ - dir = 9 - }, -/area/orion_outpost/surface/building/engineering) -"Tm" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"Tn" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/train_yard) -"To" = ( -/turf/closed/shuttle/dropship_regular/interior_corner, -/area/orion_outpost/surface/building/crashedufo) -"Tp" = ( -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostcent) -"Tq" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostn) -"Tr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/barracks) -"Ts" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostsw) -"Tt" = ( -/obj/structure/prop/vehicle/crawler{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostsw) -"Tu" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostse) -"Tv" = ( -/obj/machinery/door/airlock/multi_tile/mainship/comdoor/free_access, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"Tw" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/orion_outpost/surface/building/administration) -"Tx" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/orion_outpost/surface/building/tadpolepad) -"Ty" = ( -/obj/structure/flora/grass/tallgrass/autosmooth, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/surface/train_yard) -"Tz" = ( -/obj/structure/cable, -/turf/open/floor/mainship/orange{ - dir = 9 - }, -/area/orion_outpost/surface/building/cargo) -"TA" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/liquid/water/river, -/area/orion_outpost/ground/river/riverside_central) -"TC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 6 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"TD" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/tadpolepad) -"TE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 10 - }, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"TF" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"TG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/mainship/terragov/north{ - dir = 6 - }, -/area/orion_outpost/surface/building/administration) -"TI" = ( -/obj/machinery/light, -/turf/open/floor/prison, -/area/orion_outpost/surface/building/engineering) -"TJ" = ( -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/orion_outpost/surface/building/administration) -"TK" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outposte) -"TM" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveE/garbledradio) -"TN" = ( -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/orion_outpost/surface/building/command) -"TO" = ( -/obj/structure/barricade/concrete{ - dir = 4 - }, -/obj/structure/barricade/concrete{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"TP" = ( -/obj/structure/cable, -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/orion_outpost/surface/building/vehicledepot) -"TQ" = ( -/obj/effect/landmark/weed_node, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"TT" = ( -/obj/structure/table/mainship, -/obj/item/storage/surgical_tray, -/obj/item/storage/firstaid/adv, -/turf/open/floor/mainship/sterile/corner{ - dir = 8 - }, -/area/orion_outpost/surface/building/medbay) -"TU" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/armory) -"TV" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"TZ" = ( -/obj/structure/table/mainship, -/obj/machinery/microwave, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"Ub" = ( -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"Uc" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostnw) -"Ud" = ( -/turf/open/floor/wood, -/area/orion_outpost/surface/building/barracks) -"Ue" = ( -/obj/item/trash/chips, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"Uf" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"Ug" = ( -/obj/structure/prop/brokenvendor/brokenuniformvendor, -/turf/open/floor/mainship/green{ - dir = 4 - }, -/area/orion_outpost/surface/building/prep) -"Uh" = ( -/obj/structure/prop/vehicle/truck/truckcargo, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Ui" = ( -/obj/structure/table/mainship, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/effect/spawner/random/food_or_drink/packagedbar, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/train_yard) -"Uj" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/surface/train_yard) -"Uk" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/orion_outpost/surface/building/cargo) -"Ul" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostsw) -"Um" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveN/garbledradio) -"Un" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostnw) -"Uo" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/structure/prop/train/carriage{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Up" = ( -/obj/machinery/optable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/side{ - dir = 4 - }, -/area/orion_outpost/surface/building/medbay) -"Uq" = ( -/obj/structure/prop/brokenvendor/surplusarmor, -/turf/open/floor/mainship/green{ - dir = 9 - }, -/area/orion_outpost/surface/building/prep) -"Us" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/building/barracks) -"Ut" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"Uv" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/orion_outpost/surface/building/cargo) -"Uw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Ux" = ( -/obj/machinery/computer/telecomms/server, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/engineering) -"Uz" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/atc) -"UA" = ( -/obj/structure/cargo_container/red{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"UE" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/orion_outpost/surface/building/administration) -"UG" = ( -/obj/item/stack/rods, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outpostse) -"UH" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/command) -"UI" = ( -/obj/structure/barricade/metal, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"UJ" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/train_yard) -"UK" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic/noglass, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/nebuilding) -"UL" = ( -/obj/machinery/door/airlock/mainship/marine{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/prep) -"UP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/orion_outpost/surface/building/command) -"UR" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/train_yard) -"US" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"UT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/obj/effect/decal/cleanable/blood, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"UU" = ( -/turf/closed/mineral/smooth, -/area/orion_outpost/ground/outpostse) -"UV" = ( -/obj/structure/cargo_container/ch_green, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"UY" = ( -/obj/item/weapon/gun/sentry/basic/premade/radial, -/obj/structure/barricade/concrete, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostsw) -"UZ" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/terragov/north, -/area/orion_outpost/surface/building/command) -"Vc" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/surface/building/cargo) -"Vd" = ( -/obj/structure/cable, -/obj/item/ammo_casing/bullet, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"Ve" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/building/cargo) -"Vf" = ( -/obj/machinery/door/airlock/multi_tile/mainship/comdoor/free_access{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"Vg" = ( -/obj/structure/cable, -/obj/effect/spawner/random/weaponry/gun/rifles, -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"Vh" = ( -/obj/machinery/vending/tool, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/engineering) -"Vi" = ( -/turf/open/floor/plating/ground/concrete/edge, -/area/orion_outpost/ground/outpostnw) -"Vj" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/mainship/orange/corner{ - dir = 4 - }, -/area/orion_outpost/surface/building/engineering) -"Vk" = ( -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Vl" = ( -/obj/docking_port/stationary/crashmode, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"Vm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"Vn" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/mainship/terragov/north{ - dir = 10 - }, -/area/orion_outpost/surface/building/prep) -"Vo" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostcent) -"Vp" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"Vr" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"Vs" = ( -/turf/open/floor/mainship/green{ - dir = 9 - }, -/area/orion_outpost/surface/building/prep) -"Vt" = ( -/obj/item/bedsheet/red, -/obj/structure/bed, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/brig) -"Vu" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/sterile/side{ - dir = 1 - }, -/area/orion_outpost/surface/building/medbay) -"Vv" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/cable, -/turf/open/floor/prison, -/area/orion_outpost/surface/building/engineering) -"Vx" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/monitor) -"Vy" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/white, -/area/orion_outpost/surface/building/dorms) -"Vz" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"VA" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/surface/building/barracks) -"VB" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveN) -"VC" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/orion_outpost/surface/building/brig) -"VE" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"VG" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostcent) -"VH" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/orion_outpost/surface/building/command) -"VI" = ( -/turf/closed/shuttle/dropship_regular/interior_corner{ - dir = 1 - }, -/area/orion_outpost/surface/building/crashedufo) -"VJ" = ( -/obj/structure/cable, -/obj/effect/landmark/corpsespawner/security, -/obj/effect/spawner/random/weaponry/gun/rifles, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostsw) -"VK" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"VL" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/building/cargo) -"VN" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"VO" = ( -/obj/structure/window/framed/mainship/gray, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"VQ" = ( -/obj/effect/landmark/excavation_site_spawner, -/turf/open/floor/mainship/terragov/north{ - dir = 1 - }, -/area/orion_outpost/surface/building/command) -"VR" = ( -/turf/open/floor/plating/dmg1, -/area/orion_outpost/ground/outpostse) -"VS" = ( -/turf/open/floor/mainship/orange{ - dir = 5 - }, -/area/orion_outpost/ground/outpostse) -"VT" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/breakroom) -"VU" = ( -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"VV" = ( -/turf/open/floor/plating/dmg1, -/area/orion_outpost/surface/building/crashedufo) -"VW" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostn) -"VX" = ( -/turf/closed/shuttle/dropship_regular/backhatch, -/area/orion_outpost/surface/building/crashedufo) -"VZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostsw) -"Wc" = ( -/turf/open/floor/mainship/orange/full, -/area/orion_outpost/surface/building/cargo) -"We" = ( -/obj/machinery/status_display{ - pixel_y = -1 - }, -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/barracks) -"Wg" = ( -/obj/structure/rack, -/turf/open/floor/mainship/orange{ - dir = 5 - }, -/area/orion_outpost/surface/building/engineering) -"Wh" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS) -"Wi" = ( -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposte) -"Wj" = ( -/turf/open/floor/mainship/orange{ - dir = 10 - }, -/area/orion_outpost/surface/building/tadpolepad) -"Wk" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/train_yard) -"Wl" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/monitor) -"Wm" = ( -/obj/structure/barricade/concrete{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"Wo" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/surface/building/tadpolepad) -"Wp" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/surface/train_yard) -"Wq" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"Wr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/nebuilding) -"Ws" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"Wt" = ( -/turf/open/floor/mainship/green{ - dir = 6 - }, -/area/orion_outpost/surface/building/prep) -"Wu" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"Wv" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/cargo) -"Ww" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"Wx" = ( -/obj/structure/prop/brokenvendor/surplusclothes, -/turf/open/floor/mainship/green{ - dir = 4 - }, -/area/orion_outpost/surface/building/prep) -"Wz" = ( -/obj/effect/landmark/corpsespawner/bridgeofficer, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"WA" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/building/engineering) -"WB" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/surface/landing_pad2_external) -"WC" = ( -/obj/structure/cable, -/obj/effect/landmark/corpsespawner/marine/engineer, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"WE" = ( -/obj/effect/spawner/random/weaponry/gun/rifles, -/obj/structure/stairs/seamless/edge, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"WH" = ( -/obj/effect/attach_point/weapon/dropship1, -/turf/open/floor/plating, -/area/orion_outpost/surface/landing_pad_2) -"WI" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"WJ" = ( -/obj/structure/stairs/seamless/edge{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"WL" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostnw) -"WM" = ( -/turf/open/floor/plating/ground/concrete/edge, -/area/orion_outpost/ground/outposte) -"WN" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/administration) -"WO" = ( -/turf/closed/mineral/smooth, -/area/orion_outpost/surface/landing_pad2_external) -"WQ" = ( -/turf/closed/mineral/smooth/indestructible, -/area/orion_outpost/ground/outpostnw) -"WR" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveE/garbledradio) -"WS" = ( -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"WT" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer1{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"WU" = ( -/obj/structure/barricade/concrete{ - dir = 4 - }, -/obj/structure/barricade/concrete, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposte) -"WY" = ( -/obj/structure/rack, -/obj/structure/platform, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"Xa" = ( -/obj/machinery/light, -/obj/effect/landmark/weed_node, -/turf/open/floor/prison, -/area/orion_outpost/surface/building/engineering) -"Xb" = ( -/obj/structure/prop/vehicle/crawler/destructible{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Xc" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostse) -"Xd" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 1 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposte) -"Xf" = ( -/obj/structure/bed/chair, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/breakroom) -"Xg" = ( -/obj/structure/prop/brokenvendor/brokenweaponsrack, -/turf/open/floor/mainship/green{ - dir = 1 - }, -/area/orion_outpost/surface/building/prep) -"Xh" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/sterile/white, -/area/orion_outpost/ground/outposts) -"Xi" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/engineering) -"Xl" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"Xm" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/orion_outpost/surface/building/command) -"Xn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/orion_outpost/ground/outposte) -"Xo" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"Xp" = ( -/obj/structure/platform{ - dir = 5 - }, -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/bunker) -"Xr" = ( -/obj/machinery/miner/damaged/platinum, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveE/garbledradio) -"Xt" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/orange{ - dir = 4 - }, -/area/orion_outpost/surface/building/cargo) -"Xu" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/surface/building/tadpolepad) -"Xv" = ( -/obj/structure/prop/mainship/sensor_computer2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"Xy" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostn) -"Xz" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostnw) -"XA" = ( -/obj/docking_port/stationary/crashmode, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostcent) -"XB" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostn) -"XC" = ( -/obj/machinery/colony_floodlight_switch{ - pixel_y = 30 - }, -/obj/effect/landmark/weed_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/engineering) -"XD" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails{ - density = 0 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/blue, -/area/orion_outpost/surface/building/command) -"XE" = ( -/obj/structure/table/mainship, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"XF" = ( -/obj/structure/prop/vehicle/crane{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"XI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/cargo) -"XK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 10 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostcent) -"XL" = ( -/obj/structure/cable, -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/building/vehicledepot) -"XN" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostsw) -"XO" = ( -/obj/effect/landmark/xeno_tunnel_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS/garbledradio) -"XP" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/atc) -"XQ" = ( -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"XR" = ( -/obj/item/weapon/gun/sentry/basic/premade/radial, -/obj/structure/barricade/concrete{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"XS" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines, -/area/orion_outpost/ground/outpostsw) -"XT" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/dorms) -"XU" = ( -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/monitor) -"XV" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/orion_outpost/surface/building/administration) -"XX" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/orion_outpost/surface/building/vehicledepot) -"XY" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/orion_outpost/surface/building/armory) -"XZ" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/atmos_alert, -/turf/open/floor/mainship/orange{ - dir = 1 - }, -/area/orion_outpost/surface/building/engineering) -"Ya" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/surface/building/cargo) -"Yb" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostse) -"Yc" = ( -/obj/structure/prop/brokenvendor/brokenuniformvendor, -/turf/open/floor/mainship/green{ - dir = 9 - }, -/area/orion_outpost/surface/building/prep) -"Yd" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/tree/joshua, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"Yf" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/building/tadpolepad) -"Yg" = ( -/obj/machinery/computer3, -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/orion_outpost/ground/outpostse) -"Yh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"Yj" = ( -/obj/structure/cargo_container/ch_red{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Yk" = ( -/obj/machinery/power/apc, -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/tadpolepad) -"Yl" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/orion_outpost/ground/outpostw) -"Ym" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/orion_outpost/surface/train_yard) -"Yn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/layer1{ - dir = 4; - on = 1; - welded = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostsw) -"Yo" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/orion_outpost/ground/outpostse) -"Yp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Yq" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/mainship/orange{ - dir = 8 - }, -/area/orion_outpost/surface/building/engineering) -"Ys" = ( -/obj/machinery/shower, -/obj/structure/curtain/shower, -/turf/open/floor/mainship/sterile/white, -/area/orion_outpost/surface/building/dorms) -"Yt" = ( -/obj/structure/flora/tree/joshua, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposts) -"Yu" = ( -/obj/machinery/status_display{ - pixel_y = -1 - }, -/obj/structure/platform, -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/prep) -"Yv" = ( -/obj/structure/stairs/seamless/platform_vert{ - dir = 8 - }, -/turf/open/floor/mainship/green{ - dir = 8 - }, -/area/orion_outpost/surface/building/prep) -"Yw" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/breakroom) -"Yx" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/canteen) -"Yy" = ( -/turf/open/floor/mainship/orange{ - dir = 6 - }, -/area/orion_outpost/surface/building/tadpolepad) -"Yz" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"YA" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"YB" = ( -/obj/structure/cable, -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"YC" = ( -/turf/open/floor/mainship/terragov/north, -/area/orion_outpost/surface/building/prep) -"YD" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"YE" = ( -/obj/structure/table/mainship, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"YG" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/mainship/terragov{ - dir = 1 - }, -/area/orion_outpost/surface/building/command) -"YJ" = ( -/obj/machinery/miner/damaged/platinum, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveS) -"YK" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"YL" = ( -/obj/effect/landmark/lv624/fog_blocker/xeno_spawn, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/underground/caveE) -"YM" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostse) -"YO" = ( -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/vehicledepot) -"YP" = ( -/obj/structure/stairs/seamless/platform{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/orion_outpost/ground/outposts) -"YQ" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostw) -"YR" = ( -/obj/machinery/computer/telecomms/server, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/orion_outpost/surface/building/atc) -"YS" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostw) -"YU" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outposte) -"YV" = ( -/turf/closed/shuttle/dropship_regular/cockpit_window, -/area/orion_outpost/surface/building/crashedufo) -"YX" = ( -/turf/closed/mineral/smooth/indestructible, -/area/orion_outpost/ground/outpostsw) -"YZ" = ( -/obj/structure/cargo_container/ch_green{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"Za" = ( -/obj/structure/desertdam/decals/road/edge/long{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outposts) -"Zb" = ( -/obj/effect/landmark/start/job/survivor, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/brig) -"Zc" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic/noglass, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/cargo) -"Zd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/bridgeofficer, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/command) -"Ze" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/orange{ - dir = 1 - }, -/area/orion_outpost/surface/building/cargo) -"Zg" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"Zh" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/surface/building/cargo) -"Zi" = ( -/obj/machinery/status_display{ - pixel_x = 15; - pixel_y = -1 - }, -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/prep) -"Zj" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/landing_pad2_external) -"Zk" = ( -/obj/machinery/door/poddoor/mainship/open, -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"Zl" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/barracks) -"Zm" = ( -/turf/closed/mineral/smooth/indestructible, -/area/orion_outpost/ground/underground/caveS) -"Zn" = ( -/obj/structure/sink{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/side, -/area/orion_outpost/surface/building/medbay) -"Zo" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/mainship/orange{ - dir = 5 - }, -/area/orion_outpost/surface/building/engineering) -"Zp" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/building/vehicledepot) -"Zr" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/train_yard) -"Zs" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/dorms) -"Zv" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/orion_outpost/surface/building/administration) -"Zw" = ( -/obj/effect/spawner/random/machinery/random_broken_computer/crewmonitor, -/turf/open/floor/mainship/sterile/dark, -/area/orion_outpost/surface/building/medbay) -"Zy" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/orion_outpost/surface/building/barracks) -"Zz" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/bunker) -"ZB" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostsw) -"ZC" = ( -/obj/structure/prop/vehicle/crawler/crawler_blue, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostnw) -"ZD" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outpostcent) -"ZE" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/mainship/red, -/area/orion_outpost/surface/building/brig) -"ZF" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/orion_outpost/ground/outposte) -"ZH" = ( -/obj/machinery/door/airlock/mainship/security, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/orion_outpost/surface/building/armory) -"ZK" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/orion_outpost/surface/building/barracks) -"ZL" = ( -/turf/open/floor/mainship/red, -/area/orion_outpost/surface/building/armory) -"ZM" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/orion_outpost/ground/outpostse) -"ZQ" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/orion_outpost/ground/outpostse) -"ZR" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/orion_outpost/ground/outpostw) -"ZS" = ( -/obj/structure/monorail{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/surface/train_yard) -"ZT" = ( -/obj/effect/landmark/corpsespawner/marine, -/turf/open/floor/mainship/floor, -/area/orion_outpost/surface/building/tadpolepad) -"ZU" = ( -/obj/machinery/computer3, -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/orion_outpost/surface/building/command) -"ZW" = ( -/obj/effect/landmark/corpsespawner/marine, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/weed_node, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostse) -"ZX" = ( -/obj/machinery/miner/damaged, -/turf/open/floor/plating/ground/concrete, -/area/orion_outpost/ground/outpostw) -"ZY" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/orion_outpost/ground/outpostw) - -(1,1,1) = {" -qO -qO -qO -vi -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -aY -WQ -WQ -WQ -WQ -WQ -WQ -WQ -WQ -WQ -WQ -WQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -aq -YX -YX -YX -YX -YX -YX -YX -YX -aq -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -YX -"} -(2,1,1) = {" -qO -WO -WO -Kp -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -rp -ap -KS -Un -Un -Un -Un -Un -KS -KS -ap -ap -Mf -Mf -Mf -Mf -Mf -Mf -YQ -YQ -YQ -YQ -YQ -YQ -YQ -YQ -YQ -YQ -YQ -YQ -Mf -Mf -Mf -Mf -Mf -Mf -Mf -Mf -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -bq -wt -wt -wt -wt -wt -wt -wt -wt -bq -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -YX -"} -(3,1,1) = {" -qO -WO -WO -Kp -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -zI -zI -zI -zI -Df -lW -Un -lW -lW -lW -lW -lW -lW -Un -lW -lW -YQ -YQ -YQ -Mf -Mf -YQ -YQ -YQ -YQ -YQ -YQ -YQ -YQ -YQ -YQ -Dx -YQ -YQ -YQ -YQ -YQ -YQ -YQ -YQ -Mf -Mf -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -bq -wt -Ty -Ty -Ty -HM -UR -UR -UR -ji -Gs -Gs -Gs -Gs -Gs -Gs -Gs -Gs -Gs -Gs -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -YX -"} -(4,1,1) = {" -qO -WO -WO -Kp -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -zI -zI -zI -zI -zI -zI -Df -lW -Un -lW -xa -lW -lW -DF -lW -Un -lW -lW -YQ -YQ -YQ -YQ -YQ -YQ -YQ -YQ -Dx -YQ -YQ -YQ -YQ -YQ -Mh -YQ -Mh -YQ -YQ -YQ -YQ -YQ -YQ -Mh -Mf -Mf -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -bq -wt -Ty -Ty -HM -UR -UR -UR -UR -ji -UR -FZ -UR -UR -UR -UR -UR -mk -mk -rh -ve -ve -ve -ve -ve -ve -ve -ve -ve -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -YX -"} -(5,1,1) = {" -qO -WO -WO -Kp -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -zI -zI -zI -zI -sf -zI -Df -lW -Un -lW -lW -nf -lW -lW -lW -Un -lW -lW -YQ -YQ -YQ -YQ -YQ -YQ -Mh -RA -YQ -YQ -YQ -YQ -YQ -Mh -Mf -Mf -Mf -Mf -YQ -YQ -YQ -YQ -YQ -YQ -Mh -YQ -ve -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -ji -UR -UR -UR -UR -UR -UR -HM -HM -Eg -hH -UR -UR -UR -UR -UR -UR -UR -UR -rh -ve -ve -ve -ve -ve -ve -ve -ve -ve -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -YX -"} -(6,1,1) = {" -qO -WO -WO -Kp -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -zI -zI -zI -zI -zI -zI -Df -lW -Un -lW -lW -lW -lW -lW -lW -Un -lW -lW -YQ -YQ -YQ -YQ -RA -JC -tT -YQ -YQ -YQ -YQ -YQ -YQ -YQ -Mf -Mf -Mf -Mf -Mf -Mf -Mf -JC -YQ -Dx -YQ -YQ -ve -ve -ve -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -mk -ji -UR -Tn -UR -UR -EL -UR -hH -HM -Eg -HM -HM -xp -FZ -UR -UR -EL -UR -UR -rh -ve -oc -ve -ve -ve -ve -ve -bA -ve -ve -ve -ve -ve -wt -wt -wt -wt -wt -wt -YX -"} -(7,1,1) = {" -qO -WO -WO -Kp -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -zI -zI -zI -zI -zI -zI -Df -lW -Un -lW -lW -lW -lW -lW -lW -Un -lW -lW -Mf -Mf -Mf -Mf -mn -JC -JC -YQ -YQ -Mf -Mf -Mf -Mf -Mf -Mf -Mf -Mf -Mf -Mf -Mf -Mf -tT -RA -YQ -YQ -YQ -ve -ve -ve -wt -wt -wt -wt -wt -wt -ve -ve -ve -ve -ve -ve -wt -wt -wt -wt -UR -ji -UR -UR -UR -EL -Gs -Gs -FZ -HM -Eg -HM -bi -HM -UR -UR -UR -UR -UR -UR -rh -mV -oc -ve -ve -ve -ve -ve -ve -ve -mV -ve -ve -ve -ve -ve -wt -wt -wt -wt -YX -"} -(8,1,1) = {" -qO -WO -WO -Kp -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -zI -zI -zI -zI -zI -zI -zI -Df -lW -Un -lW -lW -xa -lW -lW -lW -KS -ap -ap -Mf -Mf -Mf -Mf -tD -GO -mn -YQ -YQ -YQ -YQ -Mf -Mf -Mf -Mf -Mf -Mf -Mf -Mf -Mf -uX -JC -JC -wA -YQ -YQ -ve -ve -ve -wt -wt -wt -wt -wt -wt -ve -ve -ve -ve -ve -ve -wt -wt -wt -wt -UR -ji -UR -UR -UR -UR -Gs -Gs -Gs -UR -Eg -HM -UR -JB -JB -UR -UR -UR -UR -UR -Gs -wt -wt -ve -ve -ve -ve -ve -un -un -un -ve -ve -ve -ve -ve -wt -wt -wt -wt -YX -"} -(9,1,1) = {" -qO -WO -WO -Kp -WO -WO -WO -WO -WO -WO -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -WO -rp -ap -Un -Un -Un -Un -Un -Un -Un -KS -ap -ap -Mf -Mf -Mf -Mf -Mf -Hh -kO -JC -YQ -YQ -YQ -Mf -Mf -Mf -Mf -Mf -Mf -Mf -Mf -Mf -tT -YS -mn -JC -YQ -YQ -ve -ve -ve -wt -wt -wt -wt -ve -ve -JW -ve -ve -ve -ve -ve -ve -ve -ve -wt -UR -ji -UR -UR -UR -Gs -Gs -Gs -Gs -UR -ji -UR -JB -JB -JB -JB -UR -UR -UR -UR -Gs -wt -wt -wt -wt -wt -ve -mV -un -Kx -un -ve -mV -ve -ve -ve -wt -wt -wt -wt -YX -"} -(10,1,1) = {" -qO -WO -WO -Kp -WO -WO -WO -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -eW -eW -rr -WO -rp -ap -ap -ap -ng -ng -KC -KC -ng -ng -ng -ap -Mf -Mf -Mf -Mf -Mf -uX -JC -JC -tT -JC -RA -YQ -YQ -YQ -YQ -YQ -YQ -YQ -YQ -RA -JC -GP -kO -tT -YQ -YQ -mV -un -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -wt -UR -ji -UR -UR -UR -Gs -Gs -Gs -Gs -UR -ji -UR -Gs -Gs -JB -JB -UR -UR -UR -UR -UR -wt -wt -wt -wt -wt -ve -un -nm -iV -Sx -un -un -ve -ve -ve -wt -wt -wt -wt -YX -"} -(11,1,1) = {" -qO -WO -WO -Kp -WO -WO -Zj -eW -eW -eW -eW -eW -eW -eW -eW -eW -eW -eW -Zj -eW -eW -eW -eW -eW -eW -eW -eW -eW -eW -eW -Zj -WO -rp -ap -ap -ap -ng -Dc -Zz -JT -Rj -Rj -Rj -Ir -MM -Cf -MM -MM -MM -MM -MM -MM -MM -MM -MM -MM -MM -MM -MM -MM -MM -MM -MM -MM -MM -MM -MM -MM -MM -iZ -un -un -un -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -rh -UR -ji -UR -UR -Tn -UR -Gs -Gs -UR -UR -cv -UR -Gs -Gs -Gs -Gs -UR -UR -UR -UR -UR -wt -wt -wt -wt -wt -ve -nm -uQ -Dl -ZB -un -un -ve -ve -ve -ve -ve -wt -wt -YX -"} -(12,1,1) = {" -qO -WO -WO -Kp -WO -WO -eW -Bf -xr -xr -xr -xr -xr -xr -xr -xr -xr -xr -xr -xr -xr -xr -xr -xr -xr -xr -xr -xr -xr -Bf -eW -WO -rp -ap -ap -ap -ng -js -Rj -AK -Rj -AK -ng -oB -Ub -Ub -Ub -Ub -Ub -Ub -LG -Ub -Ub -Ub -Ub -Ub -Ub -Ub -Ub -Ub -Ub -Ub -Ub -Ub -Ub -Ub -Ub -Ub -Ub -Ba -Kx -un -un -mV -ve -ve -ve -ve -ve -ve -ve -ve -mV -ve -un -un -mV -ve -rh -UR -ji -UR -UR -UR -UR -UR -UR -UR -UR -ji -UR -UR -Gs -Gs -Gs -UR -UR -UR -UR -UR -wt -wt -wt -wt -wt -wt -uQ -YA -un -un -Kx -un -ve -ve -ve -bA -ve -wt -wt -YX -"} -(13,1,1) = {" -qO -WO -WO -Kp -WO -WO -eW -EJ -Qv -Gx -Gx -Gx -Gx -Gx -Gx -HG -Gx -Gx -Kz -Gx -Gx -Gx -Gx -Gx -Gx -Gx -Gx -Gx -km -gU -eW -WO -rp -ap -ap -lW -ng -es -Rj -Rj -eg -ni -UI -oB -Ub -GF -lb -lb -lb -lb -rG -lb -lb -lb -lb -lb -lb -lb -lb -rG -lb -lb -lb -lb -cG -lb -lb -Yl -Ko -Ba -nm -Sx -Kx -ve -ve -ve -bA -ve -ve -ve -ve -un -un -un -fs -un -wX -un -rh -UR -ji -UR -UR -UR -EL -UR -UR -UR -UR -ji -UR -UR -UR -PI -PI -PI -PI -PI -PI -PI -PI -PI -wt -wt -wt -wt -wt -wt -zq -un -nm -Sx -ve -ve -ve -ve -ve -wt -wt -YX -"} -(14,1,1) = {" -qO -WO -WO -Kp -WO -WO -eW -EJ -IH -ft -rS -WH -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -rS -ft -jF -gU -eW -WO -rp -ap -ap -lW -ng -lZ -QN -JT -Rj -Rj -UI -oB -Ub -FI -pN -pN -pN -pN -DX -DX -pN -pN -pN -DX -DX -pN -YQ -YQ -pN -pN -pN -DX -pN -pN -pN -qm -Ub -NV -vK -qw -un -ve -ve -bA -ve -ve -ve -ve -ve -ve -un -nm -iV -Sx -wX -Kx -rh -Tn -ji -UR -UR -JB -Ty -HM -UR -UR -UR -ji -UR -UR -UR -PI -MB -Vk -Vk -Vk -Vk -Xb -Xb -PI -wt -wt -wt -wt -wt -wt -Kx -un -YK -ZB -mV -ve -ve -ve -ve -ve -wt -YX -"} -(15,1,1) = {" -qO -WO -WO -Kp -WO -WO -eW -EJ -IH -ft -ft -Ju -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -jF -gU -eW -zI -Df -lW -lW -lW -ng -ng -tf -US -ng -ng -ng -oB -LG -FI -pN -jm -El -EM -DO -fg -en -QP -pN -Qh -TJ -pN -pN -pN -pN -gh -Sl -Qh -Qh -az -pN -qm -Ub -Ba -YK -ZB -un -ve -ve -ve -ve -ve -wt -wt -wt -wt -Yd -vK -uQ -uQ -wt -uC -rh -UR -ji -UR -JB -Ty -Gs -Gs -Gs -Gs -Uj -Uo -Wp -Vk -Vk -PI -MB -Vk -Vk -cI -Vk -Vk -Vk -PI -wt -wt -wt -wt -wt -wt -wt -mV -ve -ve -ve -ve -ve -ve -ve -ve -wt -YX -"} -(16,1,1) = {" -qO -WO -WO -Kp -WO -WO -eW -EJ -IH -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -jF -gU -eW -zI -Df -lW -lW -lW -lW -lW -lW -lW -lW -lW -lW -oB -Ub -FI -pN -Lc -Hc -cm -zY -oA -gY -Hc -RG -Hc -wv -Qh -Qh -Qh -sA -Fr -gY -Hc -Hc -OM -pN -qm -Ub -Ba -Kx -un -mV -ve -ve -ve -ve -ve -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -UR -ji -UR -JB -Gs -Gs -Gs -Gs -Gs -Uj -ZS -Wp -Vk -Vk -PI -ET -Vk -Vk -Vk -Vk -Vk -Vk -PI -wt -wt -wt -wt -wt -wt -wt -wt -ve -ve -ve -ve -ve -ve -ve -ve -wt -YX -"} -(17,1,1) = {" -qO -WO -WO -Kp -WO -WO -eW -EJ -IH -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -jF -gU -eW -sK -Ix -aG -aG -aG -aG -aG -aG -aG -aG -aG -Ti -CI -Ub -FI -DX -WS -Hc -pN -pN -Dn -Hc -Hc -Hc -vl -Hc -Hc -Hc -Hc -vl -Hc -Hc -Hc -vl -OM -pN -qm -Ub -nw -un -un -ve -ve -JW -ve -ve -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -Uj -ZS -Wp -PI -PI -PI -PI -PI -PI -Uj -ZS -Wp -Vk -Vk -Me -Vk -Vk -Vk -Vk -Vk -Vk -Vk -PI -Gs -wt -wt -wt -wt -wt -wt -wt -wt -wt -ve -ve -ve -ve -ve -ve -wt -YX -"} -(18,1,1) = {" -qO -WO -WO -Kp -WO -WO -eW -EJ -IH -ft -ft -ft -ft -ft -ft -ft -ft -ft -gQ -ft -ft -ft -ft -ft -ft -ft -ft -ft -jF -gU -eW -Zj -gA -mh -mh -mh -mh -mh -mh -mh -mh -mh -mh -SK -Ub -wb -pN -Wu -Hc -cm -zY -HV -Hc -qY -pN -xR -HV -WN -pN -pN -fV -pN -pN -pN -fV -pN -pN -qm -Ub -Ba -mV -ve -ve -ve -ve -ve -ve -ve -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -Uj -ZS -Wp -PI -YD -XE -Vk -Ng -PI -Uj -ZS -Wp -Vk -Vk -PI -PI -Yz -Yz -Yz -Yz -Yz -PI -PI -Gs -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -ve -bA -ve -ve -wt -YX -"} -(19,1,1) = {" -qO -WO -WO -Kp -WO -WO -eW -EJ -IH -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -jF -gU -Zj -sw -tJ -nd -nd -nd -nd -nd -nd -nd -nd -nd -nd -CE -Ub -FI -pN -dQ -CC -XV -nR -nR -nR -Rx -pN -xW -xu -pC -pN -Ni -PG -JH -pN -Ni -PG -JH -pN -qm -Ub -Ba -ve -ve -ve -ve -ve -ve -ve -ve -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -Uj -ZS -Wp -PI -ew -GK -Vk -EO -JZ -Uj -ch -Wp -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -OK -OK -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -ve -ve -ve -ve -ve -wt -YX -"} -(20,1,1) = {" -qO -WO -WO -Kp -WO -WO -eW -EJ -IH -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -jF -gU -eW -zI -Df -lW -lW -lW -lW -lW -lW -lW -lW -lW -lW -oB -Ub -FI -pN -pN -pN -VO -DX -pN -pN -pN -pN -mo -xu -pC -pN -Te -nC -pl -pN -Te -nC -pl -pN -qm -Ub -Ba -ve -ve -ve -ve -ve -ve -ve -ve -ve -wt -wt -wt -wt -wt -wt -wt -Gs -Ea -Vk -Uj -ZS -Wp -PI -KY -Vk -FT -XE -JZ -Uj -ZS -Wp -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -ve -ve -ve -ve -wt -wt -YX -"} -(21,1,1) = {" -qO -WO -WO -Kp -WO -WO -eW -EJ -IH -ft -ft -Ju -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -jF -gU -eW -zI -Df -lW -lW -lW -lW -lW -lW -lW -lW -lW -lW -oB -cN -jc -ZY -ZY -ZY -ZY -ow -pN -Tw -Cq -Qh -Fr -qI -jb -pN -Fz -ke -Ik -pN -Fz -ke -Ik -pN -qm -Ub -Ba -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -mV -wt -wt -wt -wt -wt -Gs -EC -Vk -Uj -ZS -Wp -PI -vO -Vk -Vk -ME -JZ -Uj -ZS -Wp -Vk -MB -HR -Dt -Vk -HN -QR -Vk -Vk -QR -Vk -Vk -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -ve -ve -ve -ve -wt -wt -YX -"} -(22,1,1) = {" -qO -WO -WO -Kp -WO -WO -eW -EJ -IH -ft -rS -WH -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -ft -rS -ft -jF -gU -eW -zI -Df -lW -lW -lW -lW -lW -lW -lW -lW -lW -lW -oB -Ub -Ko -Ub -Ub -Ub -LG -FI -pN -HC -Qy -Hc -oA -Hc -pN -pN -pN -pN -pN -pN -pN -pN -pN -pN -qm -Ub -Ba -ng -ng -Qr -ng -ve -ve -ve -ve -ve -ve -ve -wt -wt -wt -wt -UR -Vk -Fb -Ho -Uj -ZS -iY -PI -aP -BD -Vk -QA -PI -Uj -ZS -kU -Vk -FV -HR -Vk -Vk -IR -Qf -Vk -Vk -Qf -Vk -Vk -wt -wt -wt -wt -wt -wt -wt -wt -wt -ve -ve -ve -ve -ve -wt -wt -YX -"} -(23,1,1) = {" -qO -WO -WO -Kp -WO -WO -eW -EJ -zh -fL -fL -fL -fL -fL -fL -fL -fL -fL -vL -fL -fL -fL -fL -fL -fL -fL -fL -fL -Hd -gU -eW -WO -rp -ap -lW -lW -lW -lW -lW -lW -lW -lW -lW -Ph -Lr -tE -tE -tE -fO -oI -FI -pN -hv -Qy -Wz -vl -Hc -VU -Hc -mt -Id -Qh -Qh -Qh -Qh -TJ -pN -qm -Ub -Ba -ng -Rj -Rj -jz -ve -ve -ve -ve -ve -ve -ve -wt -wt -wt -wt -UR -Dt -Vk -Vk -Uj -ZS -Wp -PI -PI -BD -HS -PI -PI -Uj -Ev -Wp -Vk -MB -FV -Vk -Vk -IR -NE -Vk -Vk -NE -Vk -Vk -wt -wt -wt -wt -wt -wt -wt -wt -wt -ve -ve -ve -ve -ve -wt -wt -YX -"} -(24,1,1) = {" -qO -WO -WO -Kp -WO -WO -eW -Bf -bW -bW -bW -bW -bW -bW -bW -bW -bW -bW -bW -bW -bW -bW -bW -bW -bW -bW -bW -bW -bW -Bf -eW -WO -rp -ap -ap -lW -Kq -Uz -Kq -Kq -Uz -Kq -lW -lW -YQ -YQ -YQ -YQ -qm -oZ -FI -pN -kC -Qy -Hc -qo -vl -Hc -Hc -Hc -HL -yr -Hc -rJ -eO -OM -DX -qm -Ub -NV -Rj -JT -Rj -ng -ve -ve -ve -ve -ve -ve -ve -kJ -rh -Bk -Bk -UR -Vk -Vk -Vk -Uj -ZS -Wp -Vk -PI -BD -Vk -PI -Vk -Uj -ZS -Wp -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -wt -wt -wt -wt -wt -wt -wt -wt -ve -ve -ve -ve -ve -ve -wt -wt -YX -"} -(25,1,1) = {" -qO -WO -WO -Kp -WO -WO -Zj -eW -eW -eW -eW -eW -eW -eW -eW -eW -eW -eW -Zj -eW -eW -eW -eW -eW -eW -eW -Zj -eW -eW -eW -Zj -WO -rp -ap -ap -Kq -Kq -Rr -ca -bB -ix -Kq -Kq -Dk -Ms -Ms -Ms -Ms -Bm -oZ -FI -pN -ls -UE -Qk -xW -Hc -oA -Hc -pN -nh -vl -Hc -Hc -Hc -NC -pN -Ll -Ub -Ba -ng -Rj -Rj -jz -ve -ve -ve -ve -ve -ve -ve -uU -rh -UR -UR -UR -Vk -Vk -Vk -Uj -ZS -Wp -Vk -Vk -BD -Vk -Vk -Vk -Uj -ZS -Wp -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -UR -rh -oc -ve -wt -wt -wt -wt -ve -ve -ve -ve -ve -ve -wt -wt -YX -"} -(26,1,1) = {" -qO -WO -WO -Kp -WO -WO -WO -sf -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -eW -eW -eW -zI -zI -zI -WO -rp -ap -ap -Kq -AE -rO -wr -dD -Dq -Ib -Kq -Mg -Ub -Ub -Ub -Ww -Ub -oZ -FI -pN -pN -pN -pN -mo -lC -pN -pN -pN -Zv -zC -rM -rJ -eO -OM -Uf -As -LG -NV -ng -ng -gl -ng -ve -ve -ve -ve -ve -ve -ve -ve -UR -UR -UR -UR -BO -BD -BD -tu -Ao -hF -BD -BD -BD -Vk -Vk -Vk -Uj -ZS -Wp -Vk -Vk -Vk -Vk -Vk -yG -Vk -Vk -UV -Pd -ET -Vk -UR -rh -UY -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -wt -YX -"} -(27,1,1) = {" -qO -WO -WO -Kp -WO -WO -WO -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -eW -eW -eW -zI -zI -zI -WO -rp -ap -ap -Kq -bH -qa -uc -FJ -so -lt -Uz -Mg -Ub -Ub -Ub -Ww -ZX -oZ -jc -ZY -ow -Ub -DX -mo -Hc -Hc -fh -pN -fB -jb -yv -aE -SY -cW -zC -vw -Ub -pI -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -sb -Cu -Cu -Cu -Vk -BD -Vk -Uj -ZS -Wp -Vk -PI -Vk -Vk -PI -HR -Uj -ka -Wp -Vk -Vk -QR -QR -Vk -aD -Vk -Vk -YZ -Pd -QO -Vk -UR -rh -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -YX -"} -(28,1,1) = {" -qO -WO -WO -Kp -WO -WO -WO -zI -zI -zI -zI -zI -zI -zI -zI -WO -WO -WO -ps -zI -zI -zI -zI -zI -zI -eW -eW -eW -zI -WO -WO -WO -rp -ap -ap -Kq -xO -wr -wi -wr -XP -pp -Uz -KA -Lv -Lv -Lv -cq -Ub -oZ -Ub -kX -FI -Ub -DX -mo -Hc -Hc -sE -yr -Zv -tm -sG -vX -xF -OM -DX -dh -Yh -uN -Jx -Jx -Jx -Jx -Jx -Jx -na -Jx -Jx -Jx -na -Jx -CZ -BD -BD -BD -BD -BD -Vk -Uj -ZS -Wp -PI -PI -Vk -HS -PI -PI -Uj -ZS -Wp -Vk -Vk -Qf -Qf -Vk -Yj -Vk -Vk -Qg -jC -HR -Vk -EL -rh -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -bA -ve -ve -ve -YX -"} -(29,1,1) = {" -qO -WO -WO -Kp -WO -WO -WO -zI -zI -zI -zI -zI -zI -zI -zI -WO -WO -WO -xI -WB -WB -WB -WB -WB -WB -Nt -eW -eW -WO -OG -sV -sV -sV -eG -eG -Kq -DZ -Oj -RB -eT -wr -lt -Kq -ta -Ms -Ms -Ms -wj -Ub -oZ -Ub -Ub -FI -Ub -DX -mo -Hc -HV -eb -pN -fB -jb -FK -Lh -TG -Bi -Sz -CY -Ub -Si -SJ -SJ -SJ -SJ -SJ -SJ -SJ -SJ -SJ -SJ -SJ -SJ -KG -hn -hn -hn -Vk -BD -Vk -Uj -ZS -Wp -PI -OK -Vk -Vk -Vk -PI -Uj -ZS -Wp -Vk -Vk -NE -NE -Vk -Vk -Vk -Vk -Vk -HR -Vk -Vk -UR -rh -oc -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -YX -"} -(30,1,1) = {" -qO -WO -WO -Kp -WO -WO -zI -zI -zI -zI -zI -zI -zI -zI -zI -WO -WO -WO -WO -WO -WO -MZ -zI -zI -zI -Nt -eW -eW -WO -rp -Kq -Kq -Kq -Kq -Kq -Kq -Kq -Kq -Kq -Kq -wr -Nj -Kq -Mg -Ub -Ub -Ub -dw -Ub -oZ -Ub -Ub -FI -Ub -pN -JN -WN -pN -pN -pN -Zv -Hc -Hc -rJ -eO -OM -Hc -vw -Ub -Ba -ng -ng -Qr -ng -ve -ve -ve -ve -ve -ve -ve -tZ -UR -UR -UR -UR -Vk -BD -Vk -Uj -ZS -Wp -JZ -Vk -Vk -Vk -Vk -PI -Uj -ZS -Wp -Dt -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -UR -rh -UY -ve -ve -ve -mV -ve -ve -ve -ve -ve -ve -ve -ve -ve -YX -"} -(31,1,1) = {" -qO -WO -WO -Kp -WO -zI -zI -zI -zI -zI -zI -zI -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -zI -zI -zI -Nt -eW -eW -WO -rp -Kq -YR -JG -Cg -Ld -Kq -ii -eM -lE -NJ -so -lt -Kq -Mg -Ub -Ub -Ub -Ww -Ub -oZ -Ub -Ub -FI -uM -pN -JN -Hc -Hc -Hc -pN -ov -Hc -Hc -gY -Hc -bL -pN -iA -Ub -Ba -ng -Rj -Rj -jz -mV -ve -ve -ve -wt -wt -wt -wt -wt -wt -wt -UR -Vk -BD -Vk -Uj -ZS -Wp -JZ -ej -EO -PQ -Vk -JZ -Uj -ZS -Wp -Vk -Vk -Vk -Pd -Pd -MB -Vk -Vk -Vk -hA -MB -Vk -wt -wt -wt -ve -ve -ve -nm -Sx -ve -ve -ve -ve -ve -ve -wt -wt -YX -"} -(32,1,1) = {" -qO -WO -WO -Kp -WO -zI -zI -zI -zI -zI -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -zI -zI -Nt -eW -eW -WO -rp -Kq -lx -wr -wr -Em -Kq -AD -so -wr -wr -wr -lt -Kq -KA -OA -Lv -Lv -cq -Ub -oZ -Ub -Ko -FI -Fj -mt -mo -vl -zC -zC -Kr -Zv -yr -Hc -rJ -eO -OM -DX -ZR -Ub -NV -Rj -JT -Rj -ng -un -ve -ve -ve -wt -wt -wt -wt -wt -wt -wt -wt -Vk -BD -Vk -Uj -ZS -Wp -JZ -Vk -fN -Vk -Vk -JZ -Uj -ZS -Wp -Vk -Vk -gv -Pd -MB -Dj -Vk -Vk -Vk -qW -ek -Vk -wt -wt -wt -wt -mV -mf -uQ -qw -Kx -un -mV -ve -ve -ve -wt -wt -YX -"} -(33,1,1) = {" -WQ -ap -ap -rp -OG -OG -QE -QE -QE -QE -OG -OG -OG -OG -OG -OG -OG -OG -OG -OG -OG -OG -OG -QE -QE -BG -ko -ko -QE -OG -Kq -Np -wr -wr -Em -Kq -eQ -wr -lt -Kq -Eq -lt -Kq -Dk -Ms -Ms -Ms -wj -Ub -oZ -LG -Ub -FI -Fj -Hc -mo -Hc -zC -Hc -Hc -Sv -ui -ui -ui -ui -DD -DX -ZR -Ub -Ba -ng -Rj -Rj -jz -un -ve -ve -ve -ve -wt -wt -wt -wt -wt -wt -wt -Vk -BD -HN -Uj -ZS -Wp -PI -GA -KT -op -aK -PI -Uj -ZS -Wp -Vk -Vk -GV -mH -Vk -Tg -Vk -Vk -Vk -Vk -Vk -Vk -wt -wt -wt -wt -wt -wt -uQ -qw -un -un -ve -ve -ve -ve -wt -wt -YX -"} -(34,1,1) = {" -WQ -ap -ap -ap -ap -lW -lW -nf -lW -lW -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -lW -lW -pX -mh -mh -lW -lW -Kq -xj -so -wr -wr -NJ -wr -so -lt -Kq -lx -wr -fn -Mg -Ub -Ub -Ub -Ww -Ub -oZ -ST -Ub -FI -uM -pN -pN -pN -zC -pN -pN -pN -pN -pN -pN -Hc -QJ -pN -ZR -Ub -Ba -ng -ng -gl -ng -zq -ve -ve -ve -ve -ve -ve -wt -wt -wt -wt -wt -Vk -BD -IR -Uj -ZS -Wp -PI -PI -JZ -JZ -PI -PI -Uj -ZS -Wp -Vk -Vk -Ht -Vk -Vk -Vk -Vk -Vk -Dt -Vk -Vk -Vk -wt -wt -wt -wt -wt -wt -Dl -ZB -un -ve -ve -ve -ve -wt -wt -wt -YX -"} -(35,1,1) = {" -WQ -ap -ap -ap -ap -lW -lW -lW -lW -lW -lW -lW -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -lW -lW -pX -mh -mh -lW -lW -Kq -iB -rP -rP -wr -wr -wr -nU -LS -Kq -bj -uT -uT -ma -Ip -PJ -PJ -sZ -PJ -oZ -Ub -Ub -FI -Ub -pN -aF -bT -Vd -dN -jb -pN -Id -Js -Lm -Hc -vl -pN -ZR -Ub -Ba -Kx -nm -iV -Sx -Kx -un -ve -ve -ve -ve -ve -ve -wt -wt -wt -wt -Vk -BD -Po -Uj -ZS -Ym -he -Dt -QO -MB -mH -PH -gZ -ZS -Wp -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -eU -FG -gV -Vk -wt -wt -wt -wt -wt -Kx -un -un -ve -ve -ve -ve -ve -ve -wt -wt -YX -"} -(36,1,1) = {" -WQ -ap -ap -ap -lW -lW -lW -lW -lW -lW -lW -lW -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -lW -lW -lW -EU -mh -mh -lW -lW -Kq -Kq -Kq -Kq -Kq -Kq -Uz -Uz -Kq -Kq -Kq -Uz -Kq -KA -Lv -Lv -Lv -Lv -wI -oZ -Ub -Ub -FI -Ub -pN -BK -Qy -OE -xu -CM -pN -HL -rJ -eO -jH -ln -DX -ZR -Ub -Ba -un -YK -Dl -uQ -Sx -un -ve -ve -ve -ve -ve -ve -wt -wt -wt -wt -Vk -BD -Vk -Uj -od -tp -Ym -he -Vk -Vk -PH -gZ -xg -xH -Wp -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -wt -wt -wt -wt -wt -ve -ve -mV -ve -ve -ve -JW -ve -ve -wt -wt -YX -"} -(37,1,1) = {" -WQ -ap -ap -ap -lW -lW -xa -lW -lW -lW -lW -lW -ap -ap -ap -ap -ap -ap -ap -ap -qp -aG -Fv -aG -Uc -aW -kE -kE -va -va -va -va -va -va -Bq -va -va -va -va -va -va -iO -iO -iO -sj -iO -iO -iO -ph -qc -re -hu -AO -pj -pN -pN -GL -zC -vt -jb -pN -mo -pN -pN -Hc -OM -DX -Vo -pj -zZ -un -un -Kx -YK -ZB -mV -ve -ve -ve -ve -ve -wt -wt -wt -wt -wt -Vk -BD -Vk -rl -Sh -od -tp -Ym -fF -hn -gZ -xg -xH -DC -OS -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Dt -wt -wt -wt -wt -wt -ve -ve -ve -Ci -Ci -ly -ly -ly -ly -ly -wt -YX -"} -(38,1,1) = {" -WQ -ap -ap -ap -ap -lW -lW -lW -lW -rE -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -jJ -mh -mh -mh -nS -Oq -bx -mh -mh -mh -mh -bx -mh -bx -mh -mh -Zg -mh -mh -mh -mh -pj -pj -pj -pj -pj -DQ -pj -St -pj -yT -pj -AO -pj -pN -Pw -Hc -Hc -vt -jb -yr -mo -rJ -eO -HV -OM -pN -Vo -pj -gP -un -un -un -un -un -ve -TU -TU -tH -TU -TU -wt -wt -wt -wt -wt -Vk -Uh -Vk -Vk -rl -Sh -od -wH -wH -wH -wH -xH -cu -gz -BD -BD -BD -BD -BD -BD -Vk -Vk -Vk -Vk -wt -wt -wt -wt -wt -wt -wt -wt -ve -ve -wt -Ci -wt -ve -ve -ve -ve -ly -wt -YX -"} -(39,1,1) = {" -WQ -ap -ap -ap -ap -lW -lW -lW -lW -dS -ap -ap -ap -ap -ap -ap -ap -ap -ap -lW -jJ -mh -mh -mh -Ax -mh -mh -mh -mh -mh -mh -mh -Vi -nd -nd -nd -nd -xv -mh -mh -Vi -oR -oR -oR -Cz -pj -pj -RU -oz -oz -Ly -pj -AO -pj -DX -mo -vM -Nc -wU -kh -pN -HL -Hc -Hc -Hc -Dh -pN -Vo -pj -zZ -un -Kx -wt -wt -wt -Sk -TU -Og -nX -gm -TU -wt -wt -wt -wt -wt -Vk -BD -BD -BD -BD -gc -kn -kn -kn -kn -kn -kn -gz -PI -Qm -PI -PI -PI -Wp -BD -Uj -UR -wt -wt -wt -wt -wt -wt -wt -wt -wt -ve -ve -ve -wt -Ci -wt -wt -JW -ve -vW -ly -wt -YX -"} -(40,1,1) = {" -WQ -ap -ap -ap -ap -lW -lW -lW -lW -Xz -ap -ap -ap -ap -ap -ap -MH -lW -lW -lW -jJ -nF -nF -nF -mX -nF -nF -nF -nF -nF -nF -nF -gM -yw -RR -li -li -LI -Zk -Zk -pb -li -li -li -LI -Zk -Zk -pb -li -li -bf -pj -AO -pj -pN -DY -DD -pN -pN -pN -pN -kt -ui -ui -PX -OH -pN -Vo -pj -zZ -un -un -wt -wt -wt -wt -TU -nD -DE -hM -TU -wt -wt -wt -wt -wt -wt -wt -wt -Vk -Vk -Vk -ET -Pd -Pd -Vk -Vk -Vk -Vk -PI -mj -mj -kG -Zr -Wp -BD -Uj -UR -wt -wt -wt -wt -wt -wt -wt -wt -wt -ve -ve -ve -wt -Ci -wt -wt -ve -ve -ve -ly -wt -YX -"} -(41,1,1) = {" -WQ -ap -ap -ap -ap -lW -lW -lW -lW -Sj -dm -dm -ap -ap -wq -Ef -rE -lW -lW -lW -jJ -mh -mN -mN -Ax -mh -mh -mh -ZC -mh -mh -mh -La -lW -ue -li -dZ -xK -dZ -dZ -lB -nb -CA -Gy -OP -On -dZ -lB -dZ -li -bf -pj -AO -JF -pN -pN -DX -pN -rt -rt -pN -pN -DX -DX -pN -pN -pN -kd -pj -zZ -ve -mV -wt -wt -wt -wt -TU -PE -Sy -ZL -TU -wt -wt -wt -wt -wt -wt -wt -wt -Gs -Vk -FV -MB -Pd -mH -Pd -Vk -Vk -OK -PI -mj -UJ -Wk -Zr -Wp -BD -Uj -UR -UR -wt -wt -wt -wt -wt -wt -wt -wt -ve -ve -ve -wt -Ci -wt -wt -ve -bA -ve -ly -wt -YX -"} -(42,1,1) = {" -WQ -ap -ap -ap -ap -lW -lW -lW -lW -dS -Sj -wq -Ef -dS -WL -lW -lW -lW -xa -lW -jJ -mh -mh -mh -Ax -mh -mh -mh -mh -mh -mh -mh -AO -rt -rt -li -Zp -NX -dZ -dZ -lB -VN -bd -yo -lT -Jj -dZ -kB -Od -li -bf -pj -AO -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -Vo -pj -zZ -Gb -Mb -wt -wt -wt -wt -TU -rb -Sy -ZL -TU -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -wt -PI -am -gt -Ui -Zr -Wp -BD -Uj -UR -UR -wt -wt -wt -wt -wt -wt -wt -wt -wt -ve -ve -ve -Ci -wt -wt -ve -ve -ve -ly -wt -YX -"} -(43,1,1) = {" -WQ -ap -ap -ap -ap -lW -lW -lW -xa -lW -dS -dS -dS -CF -dS -lW -lW -lW -lW -lW -Ml -nd -Hs -nd -IZ -nd -Hs -nd -nd -Zh -VL -VL -jS -rt -rt -li -dZ -OP -dZ -dZ -lB -AL -Bl -cc -OP -dZ -dZ -lB -dZ -li -bf -pj -AO -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -Vo -pj -zZ -ve -ve -ve -wt -wt -wt -TU -sL -eu -ZL -TU -TU -TU -TU -TU -TU -TU -TU -ve -ve -wt -wt -wt -wt -wt -wt -wt -wt -wt -PI -PI -Zr -Zr -PI -tC -YB -QW -rh -rh -rh -wt -wt -wt -wt -wt -wt -wt -wt -ve -ve -ve -ly -ly -Ci -ly -ly -ly -ly -wt -YX -"} -(44,1,1) = {" -WQ -ap -ap -ap -ap -lW -lW -nf -lW -rE -dS -WL -CF -dS -dS -lW -lW -pW -pW -pW -ae -ae -ae -ae -XI -pW -pW -pW -pW -pW -ae -lQ -pW -rt -rt -Ut -dZ -OP -dZ -dZ -lB -Xv -Bw -WY -OP -dZ -dZ -lB -dZ -Ut -bf -hu -Tp -Wm -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -jY -Vo -jw -zZ -rt -rt -ve -wt -wt -wt -TU -QZ -Sy -Ri -TU -Re -oj -xZ -nX -Jg -pM -TU -ve -ve -ve -ve -ve -wt -wt -ve -ve -wt -wt -wt -ve -ve -Mb -vE -Lp -Jx -su -kD -Mb -ve -ve -wt -wt -wt -wt -wt -wt -wt -wt -ve -ve -ve -ve -ve -ve -JW -ve -mV -wt -YX -"} -(45,1,1) = {" -WQ -ap -ap -ap -lW -lW -lW -lW -lW -lW -lW -lW -lW -lW -rE -lW -pW -pW -Tz -AW -AW -AW -LK -AW -yE -Ia -nP -pW -Qw -SC -Qw -Qw -pW -rt -rt -Ut -dZ -OP -dZ -dZ -lB -yP -Bw -ku -OP -dZ -dZ -lB -dZ -Ut -bf -pj -AO -rt -vG -vG -Yw -vG -vG -vG -vG -rt -rt -rt -rt -EB -EB -Vo -pj -zZ -rt -rt -ve -wt -wt -wt -TU -XY -td -Sy -zz -SR -Hk -br -Da -eu -ZL -tH -ve -ve -ve -ve -ve -ve -ve -ve -ve -wt -wt -ve -ve -ve -ve -ve -Lp -Jx -su -ve -ve -ve -QB -QB -QB -QB -QB -QB -QB -QB -wt -DU -DU -DU -ub -DU -DU -fi -Qp -lq -lq -QU -"} -(46,1,1) = {" -WQ -ap -ap -ap -lW -lW -lW -lW -lW -lW -lW -lW -lW -lW -lW -lW -pW -Tz -KB -gk -gk -Qw -Wc -Ry -lr -Qw -jG -pW -Qw -Av -pi -pi -pW -rt -dF -Ro -RE -OP -dZ -dZ -lB -Oi -Bw -tW -OP -dZ -dZ -lB -RE -Ro -bf -hu -AO -dF -vG -BY -rR -Sb -vG -jX -vG -rt -rt -rt -EB -EB -sD -Vo -pj -zZ -rt -rt -ve -wt -wt -wt -TU -tH -tH -TU -TU -hN -PR -TU -oT -rB -vf -tH -mC -XN -XN -XN -XN -XN -XN -XN -FP -ve -ve -ve -ve -ve -ve -ve -Lp -Jx -su -ve -Jb -QB -QB -Uq -AI -wg -wg -Ff -qh -QB -QB -DU -DU -TQ -DU -vT -Qp -Du -Cx -lq -lq -QU -"} -(47,1,1) = {" -WQ -ap -ap -ap -lW -lW -lW -lW -lW -lW -lW -lW -lW -lW -lW -lW -pW -IL -Qb -Qw -Qw -Qw -Wc -JO -lr -Qw -Qw -FC -Qw -qr -pi -pi -Nw -dF -rt -li -dZ -pP -Nr -Nr -Lt -LF -Bw -yd -XX -Nr -Nr -Iz -dZ -li -bf -St -KL -hV -GR -tL -CP -jM -vG -jy -vG -rt -rt -jY -sD -jI -tV -Vo -rU -zZ -rt -rt -jY -rt -ve -wt -wt -ve -ve -ve -TU -fm -Dw -wm -Dw -hl -ru -TU -Lp -np -oP -oP -oP -yy -oP -oP -su -ve -ve -ve -ve -wt -wt -wt -Lp -Jx -su -ve -yp -yp -OI -kK -kK -sS -sS -kK -lD -Mw -LR -DU -DU -Qp -Qp -Qp -kY -Co -lq -lq -lq -QU -"} -(48,1,1) = {" -WQ -ap -ap -ap -lW -lW -lW -lW -lW -lW -lW -lW -lW -lW -ap -ap -pW -IL -Rv -Qw -Qw -gk -LA -Qw -lr -Qw -Qw -ae -fZ -Md -Md -kR -Nw -rt -rt -li -YE -YE -RE -dZ -dZ -VN -Bw -Cj -dZ -dZ -RE -wp -YE -li -bf -pj -AO -rt -vG -Xf -zF -lJ -fp -lJ -Yw -rt -rt -rt -EB -vm -bG -Vo -pj -zZ -rt -EB -EB -EB -un -ve -ve -mV -ve -ve -TU -tH -tH -TU -ZH -TU -TU -TU -Lp -Ts -Ts -Ts -Ts -Ts -Ts -Ts -su -ve -ve -wt -wt -wt -wt -wt -Lp -Jx -Sn -EV -fc -fc -iX -iX -xX -xX -dg -kK -wa -og -LR -DU -DU -kY -Du -lq -lq -lq -lq -lq -lq -QU -"} -(49,1,1) = {" -WQ -ap -ap -ap -lW -lW -lW -lW -lW -lW -lW -lW -ap -ap -ap -ap -pW -IL -Qb -Qw -Qw -Qw -vZ -OX -gf -Qw -jG -pW -Qw -Qw -cz -Qw -pW -rt -rt -li -li -YE -dZ -dZ -dZ -lw -mG -Ap -dZ -dZ -dZ -YE -li -li -bf -pj -AO -rt -Yw -lJ -Jn -MP -aT -VT -Yw -rt -rt -xx -rt -EB -sD -Vo -pj -zZ -EB -sD -tr -EB -sD -EB -un -Qc -Qc -Qc -Qc -eK -Dr -Qc -Hg -Dr -vJ -Qc -Lp -oP -xt -oP -oP -oP -oP -oP -zc -KO -Qq -XN -XN -XN -XN -XN -at -Jx -XS -ve -Jb -QB -QB -QB -QB -QB -hp -kK -kK -og -MA -DU -DU -Qp -Co -lq -lq -lq -lq -lq -lq -QU -"} -(50,1,1) = {" -WQ -ap -ap -ap -lW -lW -lW -xa -lW -lW -ap -ap -ap -ap -ap -ap -pW -Ze -Qb -Qw -wc -wc -jo -Qw -Qw -gq -sO -pW -Qw -Kf -Qw -Qw -pW -rt -rt -li -li -Ut -Ut -li -li -li -li -li -li -Ut -Ut -li -li -li -bf -pj -AO -rt -vG -vG -vG -vG -vG -vG -vG -Wm -Wm -qk -rt -jY -EB -Vo -pj -zZ -jI -tV -wO -wO -wO -wO -Qc -Qc -Qc -Qc -Qc -xC -Sm -Sm -au -Sm -Sm -qv -qf -fT -VJ -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Yn -Jx -Sn -ve -ve -QB -GC -gx -wW -QB -Xg -Rg -kK -cw -QB -DU -DU -vT -Co -lq -lq -lq -lq -lq -lq -QU -"} -(51,1,1) = {" -WQ -ap -ap -ap -ap -lW -lW -lW -lW -lW -ap -ap -ap -ap -ap -ap -pW -IL -Qb -Qw -Ew -Ew -jo -Qw -Qw -nY -IC -pW -pW -pW -Nw -Nw -pW -ev -rt -li -SE -cH -cH -yk -cH -cH -Hx -cH -cH -cH -cH -Hx -cH -Cl -wS -pj -AO -rt -Tc -Tc -Tc -Tc -Tc -Tc -rt -rt -rt -rt -rt -rt -rt -Vo -pj -zZ -uS -Nv -wO -Sf -Pn -Pn -fM -fM -fM -fM -fM -fM -Gz -fM -fM -FR -fM -ms -qd -cl -Mq -VZ -Mq -Mq -Mq -Mq -Mq -Mq -Mq -Mq -Mq -Mq -Mq -Mq -AP -oP -Sn -ve -ve -oU -tY -kK -qy -QB -Xg -kK -kK -GG -QB -DU -DU -DU -qJ -lq -lq -lq -lq -lq -lq -QU -"} -(52,1,1) = {" -WQ -ap -ap -ap -ap -lW -lW -lW -lW -lW -ap -ap -ap -ap -ap -ap -pW -IL -Qb -Qw -qX -qX -jo -Qw -Qw -Cm -my -Ia -nP -pW -lW -lW -rt -dF -rt -Ro -OP -dZ -dZ -zy -rH -dZ -On -On -dZ -On -dZ -dZ -RE -Lw -kp -hu -vA -rt -Tc -Tc -Tc -Tc -Tc -Bp -Mo -Ga -iO -iO -iO -iO -iO -ph -OO -dX -JI -ZD -Pn -Rm -tV -sD -un -Fn -Fn -Fn -Fn -SZ -me -Fn -Qc -aJ -XU -XU -Vx -XU -XU -XU -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -ve -yc -Tt -Sn -ve -ve -LR -vh -bS -kK -UL -Ge -kK -wa -Mc -QB -DU -DU -DU -DU -lq -lq -lq -lq -lq -lq -QU -"} -(53,1,1) = {" -WQ -ap -ap -ap -ap -ap -lW -lW -lW -lW -ap -ap -ap -ap -ap -ap -pW -IL -Qb -Qw -Qw -wc -jo -Qw -Qw -yQ -Qw -gk -jG -pW -lW -lW -rt -rt -rt -li -MR -sk -sk -sk -Ta -Ps -Oe -XL -TP -Vg -sk -sk -Ta -nx -Ly -pj -AO -rt -Tc -Tc -Tc -Tc -Tc -ry -pj -kp -pj -pj -qF -pj -pj -pj -pj -AO -sD -EB -wO -HY -bG -EB -nm -Fn -Td -hI -SZ -SZ -CV -Fn -Qc -Sm -XU -Oc -fG -hZ -il -XU -ve -ve -JW -ve -ve -ve -ve -ve -ve -ve -ve -ve -yc -oP -Sn -ve -ve -LR -vh -kK -dt -QB -Xg -kK -kK -GG -QB -DU -DU -DU -DU -lq -lq -lq -lq -lq -lq -QU -"} -(54,1,1) = {" -WQ -ap -ap -ap -ap -ap -lW -lW -lW -lW -ap -ap -ap -ap -ap -ap -pW -IL -Qb -Qw -Qw -Ew -jo -Qw -Ry -Qw -Qw -Qw -Jw -Nw -lW -lW -rt -rt -rt -li -OP -dZ -dZ -dZ -lB -WJ -vo -WE -OP -zK -dZ -dZ -xJ -li -bf -pj -FB -Mo -Mo -Mo -Mo -Mo -Mo -fz -cQ -pF -oR -oR -oR -oR -oR -lH -oR -Rt -EB -It -wO -wO -sD -EB -vK -sC -hU -Gf -tg -nA -ud -Fn -Qc -Sm -XU -tk -Wl -yF -nt -Vx -ve -ve -ve -ve -LY -Ul -Ul -Ul -gX -ve -ve -ve -yc -oP -Sn -ve -ve -QB -dV -Wx -Wt -QB -Xg -kK -kK -cw -QB -DU -DU -DU -GI -DU -lq -lq -lq -lq -lq -QU -"} -(55,1,1) = {" -WQ -ap -ap -ap -ap -ap -lW -lW -lW -lW -lW -ap -ap -ap -ap -ap -pW -IL -Qb -Qw -Qw -qX -jo -Qw -JO -Qw -Qw -Qw -Jw -Nw -lW -lW -rt -rt -rt -li -OP -dZ -dZ -dZ -lB -zH -Ds -ED -OP -dZ -dZ -dZ -lB -Ut -aZ -eJ -pj -pj -pj -pj -pj -pj -du -pj -pj -zn -rt -rt -rt -Tc -Tc -Tc -Tc -rt -jY -rt -wO -wO -EB -EB -YK -Fn -Fn -Fn -fJ -jK -SH -Fn -eD -bh -uL -BV -Mv -KN -HD -XU -ve -ve -ve -LY -oP -oP -oP -oP -oP -Ul -Ke -Ke -yc -oP -Sn -QB -QB -QB -QB -QB -QB -QB -pG -kK -kK -og -MA -DU -DU -DU -DU -DU -lq -lq -lq -lq -lq -QU -"} -(56,1,1) = {" -Rs -LV -LV -LV -LV -LV -Xy -Xy -Xy -Xy -Xy -Xy -LV -LV -LV -LV -pW -LK -sM -Wc -Wc -Wc -jo -Wc -Wc -Wc -Wc -tz -Wc -pW -Xy -XB -TO -Wm -Wm -li -OP -dZ -dZ -dZ -lB -yP -Bw -Cd -OP -dZ -dZ -dZ -lB -Ut -yf -ax -BP -BP -BP -BP -BP -BP -BP -Nh -yg -Ki -Tc -Tc -Tc -Tc -Tc -Tc -Tc -rt -rt -rt -wO -wO -rt -EB -kY -Fn -Vt -hI -Zb -gD -SN -Fn -in -in -yF -yF -Mv -Qn -pn -XU -DU -DU -Pr -hX -hX -DM -DM -DM -hX -hX -Or -Ky -tS -hX -vY -QB -ne -gx -Yv -gx -ya -fA -ci -kK -wa -Lg -LR -DU -DU -DU -DU -DU -lq -lq -lq -lq -lq -QU -"} -(57,1,1) = {" -Rs -LV -LV -LV -LV -pa -OL -OL -OL -OL -OL -VW -pa -LV -LV -LV -pW -IL -Qb -Qw -Qw -Qw -jo -Qw -ja -dP -ja -da -Jw -pW -Xy -dA -sD -dF -rt -Oz -OP -dZ -dZ -dZ -lB -zP -zJ -ku -OP -dZ -dZ -dZ -lB -li -Tc -BQ -BQ -BQ -SO -CB -BQ -BQ -BQ -XK -Pe -AO -Tc -Tc -Tc -Tc -Tc -Tc -Tc -rt -rt -rt -wO -wO -rt -EB -Qp -sC -hU -Gf -tg -SZ -ud -Fn -in -in -XU -zM -qL -yF -nt -Vx -DU -DU -Py -hX -hX -hX -Xh -hX -hX -hX -kT -Ky -tS -wJ -Fk -OI -kK -kK -Lq -kK -kK -kK -rA -Zi -Rg -Ag -LR -DU -DU -DU -DU -DU -DU -DU -lq -lq -lq -QU -"} -(58,1,1) = {" -Rs -LV -LV -LV -LV -pa -Xy -Xy -Xy -Xy -iq -dA -pa -LV -LV -LV -pW -Ze -Qb -Qw -Qw -BF -jo -Qw -ja -dP -ja -da -Jw -pW -ro -Qs -tV -rt -rt -Oz -OP -dZ -dZ -dZ -lB -Oi -YO -WY -OP -dZ -dZ -dZ -lB -li -Tc -BQ -qx -nJ -kW -eh -nJ -qx -BQ -ry -kp -AO -Fm -Fm -Fm -Fm -Fm -Tc -Tc -Tc -rt -rt -wO -Sg -rt -jY -DU -Fn -Fn -Fn -VC -SZ -uW -Fn -in -in -XU -XU -jU -ee -JQ -XU -lq -DU -DU -LT -hX -DM -DM -DM -hX -hX -Or -Ky -tS -hX -sH -iX -iX -xX -DH -dg -iX -uD -rv -QB -Rg -Ag -QB -GI -DU -DU -DU -DU -DU -DU -DU -lq -lq -QU -"} -(59,1,1) = {" -Rs -LV -LV -LV -LV -pa -LV -Xy -Xy -Xy -Xy -zm -pa -LV -LV -LV -pW -IL -Qb -gk -Qw -Bs -jo -Qw -Qw -Qw -Qw -Qw -Jw -pW -Xy -hQ -Nv -jY -rt -li -OP -dZ -dZ -dZ -Ne -Bw -lS -Bw -fr -zy -dZ -dZ -ql -li -Tc -BQ -NY -By -SO -PB -jh -Gr -vC -px -kp -gF -Fm -Yx -gs -Yx -Fm -Tc -Tc -Tc -Tc -rt -wO -wO -rt -rt -DU -Fn -Vt -hI -nA -SZ -ZE -Fn -in -in -Co -XU -Vx -XU -XU -XU -lq -lq -DU -jE -hX -hX -hX -hX -hX -Fx -Or -Or -tS -hX -vY -QB -QB -QB -QB -pG -Rg -iX -uD -pQ -kK -Ag -QB -DU -DU -DU -DU -DU -DU -vT -DU -lq -lq -QU -"} -(60,1,1) = {" -Rs -LV -LV -LV -LV -pa -LV -GT -wE -Xy -XB -dA -sU -wV -XB -Xy -Nw -IL -Qb -gk -Qw -UA -jo -qE -Qw -Qw -Qw -Qw -jG -pW -Xy -SW -bG -EB -jI -li -oh -Nr -Nr -Nr -Mm -yP -mG -uv -XX -iK -Nr -SG -xE -li -Tc -BQ -BQ -BQ -se -PB -BQ -BQ -BQ -IY -CU -AO -Fm -Bg -dJ -FO -Fm -Tc -Tc -Fm -Fm -Fm -MG -Fm -rt -rt -DU -sC -hU -Gf -NW -My -qK -Fn -in -in -qJ -mz -os -vT -DU -lq -lq -lq -lq -DU -jE -Fx -Fx -Fx -Im -DU -DU -DU -tS -hX -Sw -DU -DU -QB -Yc -ci -Bh -ir -iX -kK -mP -xY -QB -DU -DU -ub -DU -vT -kY -FF -Cx -lq -lq -QU -"} -(61,1,1) = {" -Rs -LV -LV -LV -LV -pa -LV -Xy -GU -Xy -Xy -dA -Tq -ym -Xy -Xy -Nw -IL -Qb -Qw -Qw -Qw -jo -Ry -Ry -Qw -Qw -BF -ks -pW -Xy -Xy -sD -EB -vm -li -li -Ac -Ut -Ut -li -li -li -li -li -Ut -Ut -Ac -li -li -Tc -BQ -xb -QH -SO -SO -pB -qx -BQ -mq -pH -AO -Fm -OW -VK -OW -Fm -Fm -Fm -Fm -zW -hS -tP -Fm -rt -rt -DU -Fn -Fn -Fn -Fn -Fn -Fn -Fn -DU -DU -bN -kY -Qp -Qp -DU -lq -lq -lq -lq -lq -lq -Gw -DU -ve -DU -DU -DU -DU -tS -qb -Sw -DU -DU -QB -dL -If -iQ -Ug -iX -kK -Wt -QB -QB -DU -DU -DU -DU -Qp -Du -Ru -Ru -Ru -lq -QU -"} -(62,1,1) = {" -Rs -LV -LV -LV -LV -pa -LV -Xy -Xy -Xy -Xy -Xy -OL -Xy -Xy -Xy -pW -eC -Wv -ei -eE -WI -NB -JO -JO -Qw -Qw -Bs -NI -pW -Xy -dA -EB -EB -sD -rt -rt -rt -yK -vs -EB -uS -ey -ey -bG -vs -vF -EB -sD -EB -EB -vC -gR -xb -SO -SO -xb -xb -vC -ry -kp -VG -nM -dJ -dJ -ac -dJ -dJ -ac -Fm -NQ -tP -gO -Fm -Tc -rt -DU -DU -vT -Du -Gp -Qp -Qp -Qp -DU -DU -Qp -Du -Gp -kY -DU -DU -DU -lq -lq -lq -lq -DU -DU -DU -DU -NP -DU -Vl -tS -hX -Sw -QB -QB -QB -QB -QB -QB -QB -iX -jg -QB -QB -DU -DU -DU -DU -DU -kY -qJ -mz -Ru -Ru -lq -QU -"} -(63,1,1) = {" -Rs -LV -LV -LV -LV -pa -pa -pa -OL -OL -OL -OL -OL -Xy -Xy -Xy -pW -pW -pW -pW -Wc -Wc -NB -Wc -Wc -Wc -Wc -EN -aV -pW -Xy -Xy -jY -tr -rt -rt -rt -rt -jY -EB -sD -vm -vV -bG -tr -It -EB -tr -EB -sD -EB -BQ -BQ -cZ -GZ -tt -cZ -BQ -BQ -ry -Jy -AO -nM -Ob -MQ -Wq -Bg -Wq -HX -Fm -Fm -zX -Fm -Fm -Tc -Tc -Yt -DU -DU -Co -Ru -Gp -kY -Qp -vT -DU -kY -qJ -os -Qp -vT -DU -DU -DU -lq -lq -lq -lq -lq -DU -DU -DU -DU -DU -tS -hX -vY -QB -Vs -gx -gx -GW -gx -kK -DJ -kK -Mw -QB -DU -DU -DU -DU -DU -DU -DU -DU -qJ -mz -lq -QU -"} -(64,1,1) = {" -Rs -LV -LV -LV -LV -LV -LV -LV -ro -Xy -Xy -Xy -Xy -Xy -Xy -wE -pW -mE -Qa -Ia -Pj -Qw -WT -Jf -Jf -Yp -Yp -uy -jG -pW -Xy -Xy -LW -rt -qR -dc -rt -rt -ev -rt -rt -EB -EB -dW -EB -EB -jI -jP -jY -EB -Tc -Tc -BQ -BQ -BQ -BQ -BQ -BQ -rt -ry -kp -AO -nM -Ob -Bg -Wq -fI -Wq -ac -MO -VK -EI -Fm -Tc -Tc -Tc -lq -lq -lq -Jd -Jt -Jd -Jt -Jd -Jt -Jd -Jt -Jd -Jt -Jd -Qu -Qu -Qu -Jd -Jd -Jd -Jd -Jd -Jd -Jd -Jt -Jd -Jt -Jd -tS -hX -sH -UL -kK -kK -kK -kK -kK -Ku -nl -Ku -zu -QB -vT -DU -DU -DU -DU -DU -DU -vT -DU -DU -lq -QU -"} -(65,1,1) = {" -Rs -LV -LV -LV -LV -LV -LV -LV -LV -LV -LV -LV -Xy -Xy -Xy -Xy -Nw -Pb -ec -Ry -Qw -Qw -ae -NA -Qw -Qw -Qw -Uw -mL -Nw -Xy -Xy -rt -rt -Su -Su -rt -rt -rt -rt -jY -rt -rt -rt -jY -rt -Vr -ns -rt -rt -Tc -Tc -Tc -Tc -Tc -Tc -Tc -Tc -rt -ry -kp -AO -Fm -wT -Bg -Wq -fY -oY -dJ -Fm -dJ -yq -Fm -Tc -Tc -Tc -lq -lq -lq -Jd -Zl -Zy -Zl -Zy -Zl -Zy -Zl -Zy -Zl -Jd -Qu -Qu -Qu -Jd -Zl -Zy -Zl -Zy -Zl -Zy -Zl -Zy -Zl -Jd -tS -hX -vY -QB -vh -vB -QB -Ey -pG -Ku -vy -Ku -xo -QB -OQ -kY -DU -DU -GI -DU -DU -ub -DU -DU -lq -QU -"} -(66,1,1) = {" -Rs -LV -LV -LV -LV -LV -LV -LV -LV -LV -LV -LV -LV -GT -Xy -Xy -Nw -Bu -ec -JO -Qw -sc -ae -Qw -Qw -sc -Qw -Uw -Jw -Nw -Xy -Xy -rt -Su -Su -Su -dc -dc -nW -rt -dc -Wm -Wm -cb -Wm -rt -rt -rt -rt -rt -dc -rt -Tc -Tc -Tc -Tc -Tc -Tc -Tc -ry -kp -AO -Fm -Fm -Fm -jq -dJ -dJ -dJ -eR -dJ -TZ -Fm -Tc -Tc -Tc -lq -lq -lq -Jd -Zl -Ud -Zl -Ud -Ud -Ud -Zl -Ud -Zl -Jd -sg -Qu -Qu -Jd -Zl -Ud -Zl -Ud -Ud -Ud -Zl -Ud -Zl -Jd -Us -hX -Sw -LR -vh -kK -Fd -bK -vh -th -Qt -Vn -Ex -QB -Cx -Gp -vT -DU -DU -DU -DU -DU -DU -DU -lq -QU -"} -(67,1,1) = {" -Rs -LV -LV -LV -LV -LV -LV -LV -LV -LV -LV -LV -LV -LV -LV -LV -pW -Pb -ec -Qw -Jc -Vc -Uk -Qw -Fc -GH -Uk -Uw -mL -Nw -Xy -Xy -rt -Su -Su -Su -Su -Su -Su -Su -Su -rt -rt -rt -rt -rt -rt -rt -rt -nW -dc -dc -Tc -Tc -Tc -Tc -Tc -Tc -Tc -ry -kp -AO -nM -ux -Bg -Wq -xM -Wq -dJ -eR -dJ -bb -Fm -rt -Tc -Tc -lq -DU -DU -Jt -Ud -Ud -Pf -Ud -Jd -lA -vj -vj -vj -nz -VA -VA -Qu -Jt -Ud -sJ -Ud -Ud -bX -Ud -Ud -Ud -Ud -SL -Tr -hX -Sw -LR -vh -kK -Lj -kQ -vh -ll -vr -YC -QB -QB -Ru -lq -lq -DU -DU -DU -DU -DU -DU -DU -lq -QU -"} -(68,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -pW -Pb -ec -Qw -sy -hf -zB -Qw -im -ag -ml -Uw -jG -fa -fa -to -to -fa -fa -Su -Su -Su -Su -Su -Su -dc -nW -dc -rt -rt -cg -rt -rt -Su -Su -Su -Su -Su -Su -Su -Su -Su -Tc -ry -kp -AO -nM -Ob -xM -Wq -Bg -Wq -dJ -eR -bC -bb -Fm -rt -Tc -Tc -DU -DU -DU -Jt -Ud -Ud -Ud -Ud -rZ -kk -Ud -Ud -Ud -Ud -QT -la -Qu -Jt -Ud -Ud -Ud -Ud -ZK -IM -Ud -Pf -Ud -Ud -Tr -hX -vx -LR -vh -kK -kK -lV -vh -No -cA -tX -zu -QB -lq -lq -lq -lq -DU -DU -DU -DU -DU -DU -lq -QU -"} -(69,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -pW -Pb -qz -Ry -Ji -Hm -rF -Qw -Cp -Ve -fu -Uw -Jw -fa -ff -TC -fW -VE -fa -Su -Su -Su -Su -Su -Su -Su -Su -Su -rt -rt -rt -rt -rt -Su -Su -Su -Su -Su -Su -Su -Su -EQ -mJ -ry -kp -AO -Fm -Ob -Bg -Wq -Bg -Wq -Fm -Fm -Fm -Fm -Fm -rt -rt -rt -DU -DU -DU -Jd -Zl -Ud -Zl -Ud -Ud -Ud -Zl -Ud -Zl -Jd -sg -VA -Qu -Jd -Zl -sJ -Zl -Pf -Ud -Ud -Zl -Ud -Zl -Jd -Us -hX -Sw -QB -vh -dt -QB -Yu -pG -Ku -DR -Ku -xo -QB -lq -lq -lq -lq -DU -DU -DU -DU -DU -lq -lq -QU -"} -(70,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -pW -Pb -ec -JO -Qw -sc -Qw -Qw -Qw -sc -Qw -Uw -Jw -fa -KJ -pg -pg -VE -fa -Su -Su -Su -Su -Su -Su -Su -Su -Su -rt -rt -rt -rt -rt -Su -Su -Su -Su -Su -Su -Su -Su -cj -rm -ry -kp -AO -Fm -pJ -Nd -ac -EW -EI -Fm -XA -rt -rt -rt -rt -rt -rt -DU -DU -DU -Jd -Zl -CD -Zl -xi -Zl -xi -Zl -xi -NF -Jd -Qu -VA -Qu -Jd -Zl -CD -Zl -xi -Zl -xi -Zl -xi -NF -Jd -tS -hX -Sw -QB -vh -kK -kK -kK -kK -Ku -vy -Ku -zu -QB -lq -lq -lq -DU -DU -DU -DU -DU -DU -lq -lq -QU -"} -(71,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -pW -Pb -ec -Qw -Fc -Gm -Uv -Qw -Fc -GH -Uk -Uw -Jw -fa -KJ -Pg -kq -mp -fa -Ss -Fl -Su -Su -Su -Su -Su -Su -Su -Su -rt -rt -rt -rt -Su -Su -Su -Su -Su -Su -Su -Su -Su -Su -bn -Jy -KL -lY -pU -ac -dJ -dJ -dJ -Do -wO -wO -wO -wO -wO -wO -wO -sN -MC -in -Jd -Jt -Jd -Jt -Jd -Jt -Jd -Jt -Jd -Jt -Jd -Qu -VA -Qu -Jd -Jt -Jd -Jt -Jd -Jt -Jd -Jt -Jd -Jt -Jd -tS -hX -Sw -QB -qU -If -If -Mx -If -If -uD -kK -Wt -QB -lq -lq -DU -DU -DU -DU -DU -DU -DU -lq -lq -QU -"} -(72,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -pW -Ck -ec -Qw -sy -hf -jZ -Qw -Ec -ag -jZ -Uw -jG -fa -KJ -Pg -kq -mp -to -Fl -Fl -Ss -yt -yt -Su -Su -Su -Su -Su -rt -rt -rt -Su -Su -Su -dc -dc -Su -Su -Su -Su -Su -Su -bn -kp -AO -dJ -dJ -Ot -Jp -VK -dJ -dJ -wO -wO -wO -Sg -wO -wO -wO -in -in -in -Ej -Qu -Qu -Qu -Qu -Qu -Qu -Qu -Qu -Qu -Qu -in -sh -MC -in -in -in -in -in -in -in -in -in -in -in -tS -qb -Sw -QB -LR -LR -QB -QB -QB -QB -iX -jg -QB -QB -lq -lq -DU -DU -DU -DU -GI -DU -DU -lq -lq -QU -"} -(73,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -pW -Pb -ec -Qw -nc -Ny -fu -Qw -FN -zx -Qi -mZ -iN -Ih -UT -Nq -kq -mp -to -Fl -Fl -Fl -Fl -Ss -Ss -Su -Su -Su -Su -Fl -Fl -Fl -Su -Su -dc -rt -rt -dc -dc -Su -Su -Su -Su -bn -kp -AO -Fm -Fm -nM -nM -nM -Fm -Fm -Wm -Wm -Gq -jP -rt -rt -rt -DU -in -in -Ej -Qu -Ej -yL -Qu -Qu -Qu -Qu -Qu -Qu -Qu -in -sh -sh -sh -sh -sh -sh -sh -sh -sh -sh -sh -sh -sh -xl -TF -Sw -DU -DU -DU -lq -lq -Xi -rw -Vp -Eo -Xi -lq -lq -lq -lq -lq -DU -DU -DU -vT -lq -lq -lq -QU -"} -(74,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -pW -Pb -ec -Qw -qE -sc -Qw -Qw -Qw -sc -Qw -Qw -Jw -VE -VE -RW -kq -mp -fa -Fl -Fl -cy -Fl -Fl -Fl -Fl -Fl -Su -Fl -Fl -Fl -Fl -Su -Su -rt -Tc -Tc -vH -dc -Su -Su -Su -Su -bn -kp -nZ -Fa -Fa -rt -rt -rt -rt -rt -rt -Gq -Az -Tc -Tc -ao -rt -ub -DU -DU -Qu -Qu -Ej -Qu -Qu -Qu -Qu -Qu -Qu -Qu -Qu -sN -in -in -in -sN -in -in -sN -in -MC -in -in -in -in -xl -wJ -yZ -DU -DU -DU -DU -WA -Xi -rs -Vp -nn -Xi -lq -lq -lq -lq -lq -DU -Qp -Qp -bg -lq -lq -lq -QU -"} -(75,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -pW -Pb -bZ -Qw -Fc -Vc -zT -Qw -Fc -Ya -Uk -Qw -jG -fa -VE -VE -kq -mp -mD -mD -mD -Op -Op -mD -mD -mD -Fl -Fl -Fl -Fl -Fl -Fl -Su -Su -Su -rt -Tc -Tc -Tc -rt -dc -Su -Su -bn -kp -nZ -Fa -Fa -dc -dc -rt -rt -rt -rt -Tc -Tc -Tc -Tc -Tc -rt -fU -fU -DU -Jd -Jt -Jd -Jt -Jd -Jt -Jd -Jt -Jd -Jt -Jd -in -in -ng -ng -Rj -ng -ng -hX -wJ -pz -bc -bc -bc -bc -fR -hX -bt -GI -DU -DU -DU -yA -oX -Eo -Vp -kL -Xi -Xi -Xi -Xi -DU -vT -Ws -Gp -kY -Qp -bg -lq -lq -QU -"} -(76,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -pW -Pb -ec -Qw -Ec -KX -zB -Qw -Pu -hf -ml -Qw -Jw -fa -fa -fa -lh -VE -mD -vQ -lF -lF -lF -lF -Qe -mD -Op -mD -mD -mD -Fl -Ss -Su -Su -Su -Su -rt -rt -rt -rt -rt -Su -Su -Mj -kp -nZ -Fa -Fa -Fa -dc -dc -rt -rt -rt -Tc -Tc -Tc -Tc -Tc -Tc -DU -DU -DU -Jd -Zl -Zy -Zl -Zy -Zl -Zy -Zl -Zy -Zl -Jd -in -in -ng -Dc -Rj -Rj -ng -hX -hX -AU -hX -hX -hX -hx -MJ -hX -fQ -ub -hh -DU -DU -yA -Eo -Le -Vp -SS -Rz -Rz -iu -Xi -DU -Qp -Co -dv -Qp -kY -Qp -lq -lq -QU -"} -(77,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -pW -Pb -ec -Qw -FN -Ny -fu -Qw -mm -VL -fu -Qw -DW -fa -mS -ff -pg -VE -mD -wL -rX -Rh -pV -rX -rX -Nl -Cy -lF -TT -Op -Fl -Ss -Su -Su -Su -Su -dc -dc -dc -rt -Su -Su -Su -CH -kp -nZ -Fa -Fa -Fa -Fa -Fa -Fa -cg -rt -nW -dc -dc -Tc -Tc -Tc -DU -fU -fU -Jd -Zl -Ud -Zl -Ud -Ud -sJ -Zl -Ud -Zl -Jd -sg -in -ng -Rj -uG -Rj -ng -hX -hX -AU -hX -hX -hX -hx -MJ -hX -yZ -dj -kS -er -GI -WA -Xi -XZ -uk -Vp -uk -nj -In -Xi -OQ -Qp -qJ -os -vT -DU -DU -DU -lq -QU -"} -(78,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -pW -lp -nB -He -Xt -nK -nK -nK -nK -Xt -nB -He -Hr -fa -VE -VE -pg -mD -mD -je -av -mD -mD -pS -ER -Op -md -Up -Kv -mD -Fl -Fl -Fl -Su -Su -Su -Su -Su -Su -Su -Su -Su -Su -bn -kp -AO -BU -TA -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -rt -dc -nW -DU -DU -yO -Jt -Ud -Ud -Ud -Ud -bX -Ud -Ud -Ud -Ud -SL -Qu -in -MF -Rj -js -GJ -UI -hX -hX -Za -LE -LE -LE -LE -MJ -hX -yZ -DU -di -Ue -DU -DU -wF -bI -hE -rx -Vp -Le -dz -Xi -kY -Qp -kY -Qp -DU -DU -DU -DU -DU -QU -"} -(79,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -pW -pW -lp -Hv -pW -pW -rI -rI -pW -pW -lp -Hv -pW -fa -RZ -of -pg -mD -pm -uJ -lv -RX -Fy -rX -ER -mD -mD -mD -mD -mD -vc -Fl -Fl -Su -Su -Su -Su -Su -Su -Su -Su -Su -Su -bn -kp -AO -jk -lK -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -rt -rt -rt -DU -DU -kA -Jt -Ud -Ud -Ud -Ud -We -IM -Pf -sJ -Ud -Ud -QT -in -MF -lX -es -Rj -UI -hX -hX -Nb -bc -bc -it -bc -MJ -hX -yZ -DU -DU -DU -DU -DU -Xi -Xi -wF -wF -Vp -vD -Xi -Xi -Xi -Xi -Qp -DU -DU -DU -DU -DU -DU -QU -"} -(80,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -pW -Nw -Nw -pW -IP -jN -EF -IP -pW -Nw -Nw -pW -VE -VE -vu -pu -mD -Vu -rX -gB -po -tK -QX -rX -Nl -rX -vP -NO -mD -ZF -Lk -Fl -Ss -Su -Su -Su -Su -Su -Su -Su -Su -Su -bn -Jy -Tk -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -rt -rt -rt -DU -DU -Fa -Jd -Zl -Pf -Zl -Ud -Ud -Ud -Zl -Ud -Zl -Jd -sg -in -ng -GJ -lZ -Rj -ng -hX -hX -AU -hX -hX -hX -hx -MJ -hX -yZ -Am -yW -yO -DU -DU -yO -Xi -Eu -Eo -BA -Th -Yq -Rz -JL -Xi -Qp -Qp -DU -DU -DU -DU -DU -QU -"} -(81,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -pW -fx -Qw -Qw -AG -Qw -AG -Qw -Qw -Qw -Qw -Zc -VE -VE -pg -hK -mD -kH -KE -Zw -go -MD -Ou -ER -Op -MW -rX -Zn -Op -lo -Lk -Fl -Ss -Su -Su -Su -Su -Su -Su -Su -Su -Su -Iw -wN -ea -XR -PC -Ss -Ss -Ss -Fa -Fa -Fa -Fa -Fa -Fa -Fa -rt -rt -DU -DU -Fa -Jd -Zl -CD -Zl -xi -Zl -xi -Zl -xi -NF -Jd -in -in -ng -Rj -sW -Rj -ng -hX -hX -AU -hX -hX -hX -hx -MJ -hX -eX -Pq -Pq -Pq -Pq -Pq -Pq -Xi -qZ -mu -SU -Vv -iz -ES -TI -Xi -Pq -Pq -Pq -kA -yO -DU -DU -QU -"} -(82,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -pW -Ns -WI -WI -dG -WI -cp -WI -WI -WI -gw -WI -KJ -KJ -lh -VE -mD -bE -ON -WC -bP -gE -DP -uf -mD -iC -Kg -Kv -mD -Xd -ZF -Fl -Ss -Su -Su -Su -Su -Su -Su -yt -Ss -Su -Iw -wN -ea -aS -WU -ZF -Fl -Fl -Fl -Ss -Ss -yt -Fl -Fa -Fl -Fl -Fl -DU -DU -Fa -Jd -Jt -Jd -Jt -Jd -Jt -Jd -Jt -Jd -Jt -Jd -YP -xn -Xp -oJ -oJ -uI -uI -jA -pY -vb -NU -NU -NU -NU -ig -wJ -eX -Pq -Pq -Pq -Pq -Pq -Pq -Xi -pe -Ok -bJ -hT -bJ -iz -iz -Xi -Pq -Pq -Pq -Pq -Pq -Pq -Pq -QU -"} -(83,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -pW -Ad -WI -Qw -Qw -pW -pW -pW -Qw -Qw -Qw -pW -VE -VE -pg -fa -mD -mD -mD -tK -rV -mD -mD -mD -mD -Op -mD -mD -mD -fa -Ij -Ij -fa -Fl -Ss -Fl -Fl -Ss -Ss -Ss -AY -Fs -jV -wN -ea -Lk -OV -lo -Fl -YU -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Pq -Pq -Pq -Pq -Pq -OZ -Pq -Pq -Pq -Pq -Pq -Pq -fy -hX -MT -Pq -Pq -Pq -pD -Rw -Rw -wF -iz -pc -bJ -hT -bJ -CJ -iz -wF -Rw -Rw -pD -Pq -MY -Pq -Pq -QU -"} -(84,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -Fl -pW -pW -sm -Qw -Qw -rN -Ie -JV -Qw -Qw -qE -pW -fa -VE -xT -OD -OD -OD -Vm -OD -sd -Wr -mI -mI -mI -mI -ul -fv -mI -Ks -mI -fW -fa -Fl -Fl -Ss -Ss -Ss -Fl -Fl -KV -um -jV -wN -ea -OV -wR -Xd -Fl -Lk -Lk -ZF -Lk -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Pq -Pq -Pq -Pq -Pq -Pq -Pq -Pq -Pq -Pq -Pq -Pq -fy -hX -eX -Pq -Pq -Pq -pD -sa -sa -wF -iz -pc -bJ -hT -bJ -ES -iz -wF -sa -sa -pD -Pq -Pq -Pq -Pq -QU -"} -(85,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -Fl -pW -Qw -Qw -Qw -kR -Qw -Qw -Qw -Qw -Qw -kR -Qw -fa -VE -VE -fa -VE -RW -VE -KJ -KJ -KJ -KJ -fa -VE -CO -Go -CO -pr -hK -VE -TE -UK -Xn -nV -nV -nV -nV -KR -nV -nV -nV -rc -kI -ea -ef -Lz -sz -Lk -Lk -Lk -Lk -Lk -Fl -Fl -Fl -Fl -Fl -Ss -Fl -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Pq -Pq -Pq -Pq -Pq -Pq -Pq -Pq -Pq -Pq -Pq -Pq -fy -hX -eX -Pq -Pq -Pq -Pq -Pq -Pq -Xi -iz -iz -bJ -Nz -bJ -iz -iz -Xi -Pq -Pq -Pq -Pq -Pq -Pq -Pq -QU -"} -(86,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -Fl -pW -Li -Qj -JP -is -Bb -pW -Bb -Qj -JP -is -no -fa -VE -VE -VE -VE -VE -gC -RO -gC -KW -KJ -KJ -of -KJ -Aa -KJ -EE -KJ -KJ -KJ -oa -Lx -xd -xd -xd -xd -xd -xd -xd -xd -xd -wN -ea -Lk -ZF -Wi -Lk -ZF -Lk -Lk -ZF -Lk -Lk -Wi -Fl -Fl -Fl -Tm -Tm -be -AQ -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Fa -Tm -be -be -Tm -AQ -be -be -Pq -Pq -Pq -be -AQ -JR -Nk -DI -Pq -Pq -Pq -Pq -Pq -Pq -Xi -pZ -pc -eo -bs -iz -pc -Xa -Xi -Pq -Pq -Pq -Pq -Pq -Pq -Pq -zL -"} -(87,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -Fl -pW -Bb -Qj -JP -is -Bb -pW -Bb -Qj -JP -is -Bb -fa -by -VE -fa -Ij -fa -fa -fa -fa -fa -fa -eY -ic -Lo -eY -eY -eY -eY -FY -Lo -eY -jV -Rn -Rn -qA -Rn -Rn -Rn -WM -Kt -cV -wN -ea -Lk -Lk -Lk -Fl -Lk -Lk -OV -lo -Lk -Lk -ZF -Wi -YU -Fl -Tm -zo -Tm -be -be -be -Tm -Tm -be -be -be -Tm -Gu -nk -nk -nk -nk -nk -nk -RH -Tm -Tm -Tm -Tm -Tm -Tm -Tm -be -JR -Nk -hP -IB -be -AQ -be -Tm -Tm -Xi -JU -jO -nq -nj -Es -sQ -tN -Xi -xD -Tm -IQ -be -be -Tm -Tm -zL -"} -(88,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -Fl -pW -pW -pW -Hj -Hj -pW -pW -pW -CR -Hj -Hj -pW -fa -fa -fa -fa -Fl -Fl -lO -lO -lO -lO -lO -eY -ic -FY -Gi -Gi -Gi -Gi -FY -JM -eY -jV -pE -wk -pE -pE -pE -le -ea -Lk -jV -wN -ea -YU -Fl -Nm -Nm -lj -Nm -Nm -wR -lo -Lk -Lk -Lk -Fl -lO -UU -UU -zo -Tm -Tm -IQ -Yb -Yb -Pi -Rd -YM -Yb -HU -gn -rQ -QY -BL -rQ -PK -Nn -TD -TD -sB -sB -TD -TD -Tm -wQ -JR -Nk -MV -Tb -Tb -Tb -oH -Xi -Xi -Xi -Xi -Xi -Eo -vD -Xi -Xi -Xi -Xi -Xi -Xi -YM -Oa -Yb -Tm -Tm -zL -"} -(89,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -YU -ZF -ef -wR -Xd -Lk -ZF -Lk -YU -Fl -Fl -Fl -lO -lO -lO -lO -lO -eY -vn -rT -FY -FY -FY -oW -FY -rT -XT -jV -pE -pE -pE -pE -pE -pE -ea -Lk -jV -wN -ea -Fl -Fl -Nm -RV -ss -sI -Nm -aU -rg -Fl -OV -jx -gH -lO -UU -UU -UU -Tm -Tm -Tm -Oa -Yb -Yb -aQ -sF -Oa -HU -Iq -Iq -Ab -HQ -Ql -Wj -Nn -zV -nL -qT -qT -nL -TD -TD -TD -JR -Nk -Nk -cT -on -Nk -QQ -Xi -Tl -ih -Rz -fw -Le -Eo -NT -Oo -tx -qD -dC -Xi -sF -Yb -Yb -Yb -Tm -zL -"} -(90,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Lk -Lk -ef -sz -Lk -Lk -Lk -cy -Fl -Fl -Fl -Fl -lO -lO -lO -lO -eY -FY -FY -rC -FY -rC -FY -FY -FY -XT -xU -Kt -Kt -Kt -Kt -Kt -Kt -zG -YU -jV -wN -ea -Fl -Fl -Nm -UH -XQ -JE -Nm -rg -Fl -Fl -Fq -kz -lO -lO -UU -UU -UU -UU -Tm -Tm -Tm -Tm -Yb -aQ -Tu -YM -HU -Iq -iS -pw -Kk -ZT -JX -Nn -dM -dn -BS -BS -BS -BS -BS -ep -JR -Nk -rK -cT -Nk -Nk -Nf -oX -Eo -Eo -uj -uj -Ma -Le -Eo -Eo -eN -zb -qD -Xi -dx -Yb -Yb -Oa -IQ -zL -"} -(91,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -ZF -Lk -Lk -Hz -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -lO -lO -lO -lO -eY -eY -Zs -eY -eY -eY -Zs -eY -eY -eY -Fl -Fl -cy -Fl -Fl -Fl -Fl -Fl -Fl -jV -ky -ea -Nm -Nm -Nm -UH -XQ -JE -Nm -lj -lj -Nm -lO -lO -lO -lO -UU -UU -UU -UU -Tm -Tm -Yb -Yb -Oa -jW -Hw -dx -HU -Iq -Iq -Ah -OJ -OJ -Yy -tq -qT -Xo -uR -qT -qT -Ei -dn -qT -Mr -Nk -tl -cT -Nk -Cw -Nf -Eo -Eo -fH -FM -iJ -Eo -Eo -lu -Eo -cP -ih -JL -Xi -Oa -Yb -Yb -Yb -Tm -zL -"} -(92,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -YU -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -lO -lO -lO -eY -cn -NS -Ka -eY -cn -NS -Ka -eY -Fl -Fl -Fl -Fl -lO -lO -Fl -Fl -Fl -Fl -jV -wN -or -lj -MK -LD -wl -XQ -LP -ss -ss -fb -Nm -lO -lO -lO -lO -UU -UU -UU -Tm -Tm -Tm -Tm -Tm -Tm -Tm -IQ -Yb -HU -gn -rQ -Xu -qC -rQ -dp -dI -qT -Ce -ny -oy -TD -qT -bY -TD -NG -Nk -ZW -cT -Nk -Nk -QQ -Xi -Zo -At -jO -jO -At -bm -Vh -Vj -Xi -XC -Le -oX -Yb -wf -rd -Tm -Tm -zL -"} -(93,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -Fl -aR -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -aR -Fl -Fl -Fl -Fl -Fl -cy -lO -lO -lO -eY -ip -Hi -wG -eY -ip -eL -Jh -eY -Fl -Fl -Fl -lO -lO -lO -Fl -Fl -Fl -Fl -jV -kZ -Sq -lj -xm -XQ -XQ -XQ -Nm -py -XQ -Bv -Nm -lO -lO -lO -lO -UU -Tm -Tm -Tm -Tm -Tm -Tm -tG -Tm -Tm -Tm -Tm -pK -bV -Tx -Tx -QF -Tx -Tx -oQ -qT -hG -ny -qT -dd -qT -XF -sB -Dp -Nk -PM -OF -Nk -Nk -hP -Xi -Xi -Xi -Xi -Xi -Xi -Xi -Xi -Ii -Xi -zd -Eo -Eo -Tm -Tm -Tm -Tm -Tm -zL -"} -(94,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -eY -eY -eY -Rl -eY -eY -eY -Rl -eY -Fl -Fl -Fl -lO -lO -lO -lO -Fl -Fl -Fl -tc -fE -ea -Nm -xm -py -py -XQ -Nm -XQ -AC -kc -Nm -Nm -Nm -lO -lO -UU -zo -Tm -Tm -Tm -Tm -Tm -Tm -zo -Tm -Tm -zo -Tm -Tm -Tm -TD -iS -yz -TD -Yk -BS -BS -uR -oy -TD -qT -qT -sB -yu -Nk -Nk -cT -Nk -Nk -hP -Tm -Tm -Tm -Tm -Xi -yV -yI -yI -qg -ct -Eo -Io -Xi -Tm -Tm -Tm -Tm -UU -zL -"} -(95,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -Fl -cy -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -lO -lO -lO -Fl -Fl -Fl -Fl -Fl -eY -Ys -Vy -RD -eY -Ys -Vy -RD -eY -Fl -Fl -Fl -lO -lO -lO -lO -Fl -Fl -Fl -jV -sp -ea -Tv -KH -py -py -XQ -XQ -RT -RT -KH -gd -TN -Nm -lO -lO -UU -Tm -Tm -Tm -UU -UU -xD -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -TD -iS -yz -qT -qT -qT -IX -Wo -ND -IX -Wo -ND -TD -Xc -Nk -Nk -cT -nT -Nk -KK -cR -Tm -Tm -Tm -Xi -GY -Ja -Eo -Eo -Eo -Ja -Io -Xi -UU -UU -UU -UU -UU -zL -"} -(96,1,1) = {" -gi -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -cy -Fl -Fl -Fl -lO -lO -lO -lO -Fl -Fl -Fl -Fl -eY -eY -eY -yC -eY -eY -eY -yC -eY -Fl -Fl -Fl -lO -lO -lO -lO -lO -Fl -Fl -jV -Ft -TK -yS -yS -yS -yj -BE -Nm -dy -pq -XQ -Au -XD -Nm -lO -lO -Tm -Tm -Tm -Tm -UU -UU -UU -UU -UU -UU -Tm -Tm -Tm -Tm -UU -TD -uB -Xl -qT -qT -HP -AM -SB -Pl -AM -SB -Pl -TD -Xc -rK -Nk -cT -Nk -Nk -hP -Tm -Tm -Tm -Tm -Xi -Wg -fS -fS -jO -DV -Ux -jf -Xi -UU -UU -UU -UU -UU -zL -"} -(97,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -cr -PS -cr -cr -PS -PS -PS -Fl -Fl -Fl -lO -lO -lO -lO -Fl -Fl -Fl -Fl -cy -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -lO -lO -lO -lO -lO -Fl -Fl -xU -FE -xL -Nm -XQ -Vf -Nm -Nm -Nm -LJ -jt -BE -hs -oC -Nm -lO -lO -Tm -Tm -Tm -Tm -UU -UU -UU -UU -UU -UU -UU -Tm -Tm -UU -UU -TD -TD -TD -sB -sB -TD -BM -Yf -eH -BM -Yf -kl -TD -yU -ZM -ZM -ZM -ZM -bv -Yo -Tm -Tm -Tm -Tm -Xi -Xi -Xi -Xi -Xi -Xi -Xi -Xi -Xi -mR -mR -mR -mR -mR -Zm -"} -(98,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -cr -PS -PS -PS -PS -PS -PS -Fl -Fl -Fl -lO -lO -lO -lO -lO -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -lO -lO -lO -lO -Fl -cy -Fl -zk -Fl -AA -Nm -eF -eP -jQ -IO -Nm -Nm -Nm -Nm -lj -Nm -Nm -lO -lO -Tm -Tm -Tm -Tm -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -Tm -Tm -TD -TD -TD -TD -TD -TD -TD -TD -Tm -Tm -Tm -Tm -Tm -AZ -Tm -Tm -Tm -Tm -cR -Tm -Tm -Tm -Tm -Tm -Tm -Tm -UU -UU -mR -mR -mR -mR -mR -Zm -"} -(99,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -st -cr -cr -PS -PS -PS -PS -PS -PS -PS -PS -Fl -Fl -Fl -Fl -lO -lO -lO -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -cy -Fl -Fl -Fl -Fl -Fl -lO -lO -lO -lO -Fl -Fl -Fl -Fl -Fl -Fl -Nm -cO -Na -XQ -LP -zQ -UP -fb -Nm -Fl -lO -lO -lO -lO -Tm -Tm -Tm -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -zo -Tm -Tm -Tm -te -te -te -te -te -Tm -Tm -AZ -zo -Vz -Vz -zo -Tm -Tm -Tm -Tm -Tm -Tm -zo -Tm -Tm -Tm -Tm -Tm -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(100,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -Cc -cr -cr -cr -cr -PS -PS -PS -PS -PS -PS -PS -PS -Fl -Fl -Fl -Fl -lO -lO -lO -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -lO -lO -lO -Fl -Fl -Fl -Fl -Fl -Fl -lj -xm -hw -XQ -XQ -vq -Zd -Bv -Nm -Fl -Fl -Fl -Fl -Fl -Tm -Tm -Tm -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -Tm -Tm -Tm -Tm -Tm -Tm -Tm -te -Pz -te -te -te -Tm -Tm -ol -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -cR -Tm -Tm -Tm -Tm -Tm -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(101,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -cr -PS -PS -PS -PS -PS -PS -PS -PS -aR -Fl -Fl -Fl -Fl -aR -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -aR -Fl -Fl -Fl -Fl -lO -lO -lO -Fl -Fl -CK -zk -Fl -Fl -Nm -qB -Hy -mU -XQ -rj -mA -eI -lj -Fl -Fl -Fl -Fl -Fl -Tm -zo -Tm -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -UU -Tm -Tm -Tm -Tm -Tm -Tm -te -aA -VV -VV -gT -VX -Tm -te -Tm -Tm -FD -vk -gN -FD -Jl -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(102,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -sl -Um -Um -Um -Um -Um -Um -Um -sl -PS -PS -PS -PS -PS -PS -PS -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -sx -sx -sx -sx -sx -Fl -Fl -aR -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -zk -AA -Fl -Gl -lj -CT -KH -mT -vg -VQ -YG -UZ -lj -Fl -Fl -Fl -cy -Fl -zo -Tm -IQ -Yb -Yb -Oa -jW -Tu -Tu -Tu -YM -Oa -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -aA -To -el -Km -el -qi -VX -Tm -Tm -PD -PD -KU -qu -Rk -JD -Tm -Tm -Tm -Tm -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(103,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -sl -cr -cr -cr -cr -cr -cr -cr -sl -PS -PS -PS -PS -PS -PS -PS -MN -MN -Fl -Fl -cy -Fl -Fl -Fl -Fl -Fl -Fl -sx -sx -sx -sx -sx -sx -Fl -Fl -Fl -aR -Fl -Fl -Fl -Fl -Fl -Fl -Fl -kr -Fl -aR -Fl -Nm -qB -Hy -mM -om -iw -oG -ay -lj -Fl -Fl -Fl -Fl -Fl -Tm -Tm -Tm -Tm -Tm -Yb -Yb -jW -Hw -Hw -dx -Yb -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -mW -sT -BN -ia -VV -el -Dg -Tm -Tm -PD -Yg -HB -Jk -yH -vS -Tm -Tm -Tm -Tm -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(104,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -sl -cr -cr -cr -cr -cr -cr -cr -sl -PS -PS -PS -PS -PS -PS -PS -MN -MN -MN -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fl -Fl -Fl -Fl -Fl -YU -Fl -Fl -Fl -Fl -Fl -Fl -Sp -Fl -Fl -lj -xm -XQ -XQ -XQ -vq -Dm -Bv -Nm -Fl -Fl -Fl -Fl -Fl -Tm -Tm -Tm -cR -IQ -Yb -Yb -Yb -Oa -Yb -Tm -IQ -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -YV -hm -ia -HW -ia -KP -kN -Tm -Tm -PD -PD -VS -cs -lf -uh -Tm -Tm -Tm -Tm -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(105,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -sl -cr -cr -cr -cr -cr -cU -cr -sl -PS -PS -PS -PS -PS -PS -PS -PS -PS -MN -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fl -YU -Fl -ZF -Lk -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Fl -Nm -ZU -yn -VH -Xm -zR -lN -PY -Nm -Fl -Fl -Fl -Fl -Fl -Tm -Tm -Tm -Tm -Tm -Tm -Yb -Yb -Yb -Rd -ZQ -Tm -Tm -Tm -Tm -Tm -cR -Tm -Tm -Tm -Tm -mW -sT -BN -ia -BN -Hn -VV -Af -Tm -Tm -FD -KF -Kb -FD -Cr -Tm -Tm -Tm -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(106,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -sl -Aj -Pm -cr -cr -cr -cr -Aj -sl -PS -PS -PS -PS -PS -PS -PS -PS -PS -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fl -Lk -Lk -Lk -Lk -Fl -Fl -YU -Fl -Fl -Fl -Fl -Fl -Fl -Nm -Nm -lj -lj -Nm -Nm -Nm -Nm -Nm -Fl -Fl -Fl -Fl -Fl -zo -Tm -Tm -Tm -Tm -zo -kb -Kn -LQ -AT -wP -kb -kb -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -ce -VI -Hn -Oy -Hn -VV -dO -VR -Se -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(107,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -Um -cr -cr -iI -cr -cr -cr -cr -yi -PS -PS -PS -PS -PS -PS -PS -PS -PS -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -wo -Fl -ZF -OV -lo -Lk -Lk -Lk -Fl -Fl -Fl -Fl -aR -Fl -aR -Fl -Fl -Fl -lO -lO -lO -lO -lO -lO -lO -lO -lO -lO -Tm -Tm -Tm -Tm -Tm -Tm -kb -IQ -Tm -Tm -An -Tm -kb -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -ce -df -df -VV -HJ -zw -EH -EH -Tm -TV -Tm -zo -Tm -Tm -Tm -GN -GN -GN -GN -Gd -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(108,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -Um -cr -cr -cr -cr -cr -cr -cr -Um -cr -cr -cr -PS -PS -PS -PS -PS -PS -MN -MN -MN -MN -WR -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -OV -wR -wR -lo -ZF -Lk -Lk -Fl -Fl -Fl -MN -WR -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -UU -UU -UU -UU -UU -zo -kb -cR -Tm -Tm -Tm -cR -kb -Tm -Tm -Tm -Tm -Tm -zo -Tm -Tm -Tm -Tm -Tm -te -UG -te -Tm -VR -Tm -EH -up -Tm -cR -Tm -Tm -Tm -GN -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(109,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -Um -cr -cr -cr -cr -cr -cr -cr -Um -cr -cr -cr -PS -PS -PS -PS -PS -PS -sx -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -cF -xS -sx -sx -sx -MN -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -UU -UU -UU -UU -Tm -kb -Tm -Tm -Tm -Tm -Tm -JY -UU -UU -UU -UU -UU -UU -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -wf -Tm -IJ -Af -Tm -Tm -Tm -GN -GN -GN -GN -DN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(110,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -Um -Um -Um -Um -Um -Um -Um -Um -Um -cr -cr -cr -cr -cr -PS -PS -PS -sx -sx -MN -MN -Px -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -MN -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -UU -UU -UU -UU -UU -JY -UU -Tm -Tm -Tm -Tm -JY -UU -UU -UU -UU -UU -UU -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -cR -Tm -Tm -Tm -Tm -Tm -Tm -mR -mR -mR -GN -GN -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(111,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -cr -cr -cr -Aj -cr -cr -cr -cr -cr -cr -Aj -cr -PS -sx -sx -MN -MN -MN -WR -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -MN -MN -MN -MN -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -UU -UU -UU -UU -UU -JY -JY -JY -JY -JY -JY -JY -UU -UU -UU -UU -UU -UU -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -Tm -mR -mR -mR -mR -GN -GN -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(112,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -cr -PS -PS -PS -PS -PS -cr -cr -cr -iI -cr -cr -PS -sx -sx -MN -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -MN -MN -MN -MN -Xr -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -GN -GN -aH -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(113,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -PS -sx -sx -sx -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -gG -MN -Px -MN -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -Gd -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(114,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -sx -sx -sx -sx -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -MN -MN -MN -MN -MN -MN -WR -MN -MN -MN -sx -sx -sx -sx -sx -sx -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(115,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -sx -sx -sx -sx -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -mR -mR -mR -mR -mR -mR -mR -mR -BH -BH -BH -Wh -Wh -Wh -Wh -Wh -Wh -Wh -Wh -Wh -Wh -BH -BH -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -GN -GN -mx -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(116,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -iI -cr -cr -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -sx -sx -sx -MN -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -MN -MN -MN -MN -Px -MN -MN -MN -MN -Px -MN -Fg -sx -sx -sx -sx -sx -mR -mR -mR -mR -mR -mR -mR -mR -Wh -GN -GN -GN -GN -GN -GN -cY -GN -GN -GN -GN -GN -GN -sR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -GN -GN -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(117,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -cr -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -MN -MN -MN -MN -MN -MN -MN -MN -SV -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -MN -MN -MN -MN -sx -sx -sx -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -mR -mR -mR -mR -mR -GN -GN -GN -sR -GN -GN -GN -Gd -GN -GN -GN -DN -GN -GN -GN -Gd -GN -sR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -GN -GN -mR -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(118,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -cr -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -MN -MN -MN -MN -WR -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -MN -MN -MN -sx -sx -sx -sx -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -mR -mR -mR -mR -mR -GN -DN -GN -sR -GN -XO -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -sR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -GN -mR -mR -mR -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(119,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -cr -cr -cr -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -sx -sx -MN -MN -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -MN -MN -MN -sx -sx -sx -sx -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -mR -mR -mR -mR -mR -mR -mR -GN -sR -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -mR -BH -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -GN -mR -mR -mR -GN -GN -GN -DN -GN -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(120,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -cr -cr -cr -PS -PS -PS -PS -PS -PS -PS -PS -PS -Aj -cr -cr -MN -MN -MN -MN -Px -MN -MN -TM -MN -MN -MN -MN -MN -Px -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -MN -MN -MN -sx -sx -sx -sx -sx -MN -MN -MN -MN -sx -sx -sx -sx -sx -mR -mR -mR -mR -mR -mR -mR -GN -sR -GN -GN -DN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -BH -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -GN -mR -mR -mR -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(121,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -st -cr -cr -cr -cr -cr -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -WR -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -sx -sx -sx -sx -MN -MN -MN -sx -sx -sx -sx -sx -MN -MN -MN -MN -MN -MN -MN -MN -sx -mR -mR -mR -mR -mR -mR -mR -mR -BH -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -BH -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -GN -mR -mR -mR -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(122,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -PS -PS -PS -PS -PS -PS -PS -PS -PS -sx -MN -MN -MN -MN -MN -sx -sx -sx -sx -MN -MN -MN -MN -MN -MN -MN -MN -WR -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -MN -MN -MN -MN -MN -MN -MN -MN -sx -mR -mR -mR -mR -mR -mR -mR -mR -BH -sR -sR -sR -sR -sR -BH -BH -BH -BH -BH -BH -BH -BH -BH -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -GN -GN -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(123,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -cr -iI -cr -cr -cr -cr -cr -cr -iI -cr -cr -PS -PS -PS -cr -MN -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -MN -MN -Px -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -Px -MN -MN -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -MN -MN -MN -TM -MN -MN -MN -MN -MN -mR -mR -mR -mR -mR -mR -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -GN -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(124,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -Aj -cr -cr -cr -cr -Aj -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -MN -WR -MN -MN -Px -sx -sx -sx -sx -sx -sx -MN -MN -MN -MN -sx -sx -sx -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -WR -MN -MN -MN -MN -sx -sx -sx -sx -MN -MN -MN -WR -WR -MN -MN -MN -MN -mR -mR -mR -mR -mR -mR -Gd -GN -GN -GN -mx -GN -Gd -GN -GN -GN -Gd -GN -GN -GN -GN -GN -mR -mR -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -GN -DN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(125,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -MN -MN -MN -MN -sx -sx -sx -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -GN -GN -GN -Gd -GN -Gd -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -mR -GN -GN -GN -GN -GN -GN -GN -mR -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(126,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -WR -MN -MN -MN -MN -MN -MN -MN -MN -WR -MN -MN -MN -MN -Px -MN -MN -MN -MN -MN -MN -MN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -DN -GN -GN -GN -DN -GN -Gd -GN -GN -GN -GN -GN -GN -GN -GN -GN -Gd -GN -GN -GN -GN -GN -GN -GN -Gd -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(127,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -cr -cr -cr -cr -cr -cr -PS -PS -cr -cr -cr -cr -MN -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -Px -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -sx -MN -MN -GN -GN -GN -GN -GN -DN -GN -GN -GN -GN -mR -mR -mR -mR -mR -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(128,1,1) = {" -pt -pt -pt -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -cr -cr -cr -Lb -cr -cr -cr -cr -PS -PS -PS -PS -PS -PS -sx -sx -MN -MN -Px -MN -MN -MN -MN -MN -MN -MN -MN -Px -sx -sx -sx -sx -sx -sx -sx -sx -MN -Px -MN -MN -MN -sx -sx -sx -sx -sx -MN -MN -MN -MN -MN -MN -Px -MN -MN -sx -sx -sx -sx -sx -GN -GN -GN -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -GN -GN -GN -GN -GN -GN -GN -mR -mR -mR -GN -GN -GN -GN -GN -DN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(129,1,1) = {" -pt -zf -pt -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -VB -PS -PS -PS -PS -PS -PS -PS -sx -sx -sx -MN -MN -MN -MN -MN -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -MN -MN -MN -MN -MN -sx -sx -sx -sx -sx -mR -zi -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -GN -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(130,1,1) = {" -pt -pt -pt -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -PS -PS -sx -sx -sx -sx -sx -MN -MN -MN -MN -MN -MN -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -MN -MN -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -MN -MN -MN -sx -sx -sx -sx -sx -sx -sx -mR -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -GN -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(131,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -PS -PS -PS -PS -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -MN -MN -Fg -sx -sx -sx -sx -sx -sx -Fg -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -Is -GN -GN -GN -GN -GN -Gd -mR -mR -mR -mR -mR -mR -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(132,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -VB -Lb -PS -PS -PS -PS -PS -PS -PS -PS -PS -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -qP -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -sx -sx -sx -sx -gG -Fg -Fg -zi -zi -zi -Qz -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -GN -GN -GN -mR -mR -mR -mR -mR -mR -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(133,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -PS -PS -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -sx -sx -sx -Fg -Fg -qP -zi -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -GN -GN -GN -GN -zi -zi -zi -zi -zi -zi -GN -GN -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(134,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -PS -PS -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -sx -sx -sx -Fg -Fg -Fg -mR -mR -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -GN -zi -zi -zi -AR -zi -zi -aM -zi -GN -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(135,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -VB -Lb -Lb -Lb -PS -PS -PS -PS -PS -sx -ua -ua -ua -ua -ua -ua -ua -ua -ua -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -sx -sx -Fg -Fg -Fg -sx -mR -mR -mR -mR -mR -aM -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(136,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -sx -ua -Fg -Fg -Fg -Fg -bR -sx -sx -ua -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -sx -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -BH -BH -BH -Wh -Wh -Wh -Wh -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(137,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -sx -ua -Fg -Fg -Fg -Fg -Fg -Fg -Fg -ua -sx -sx -sx -sx -sx -sx -sx -gG -Fg -Fg -Fg -Fg -Fg -gG -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -sx -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -BH -mR -mR -mR -zi -zi -Wh -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(138,1,1) = {" -LZ -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Fg -YL -Fg -Fg -qP -Fg -Fg -Fg -Fg -ua -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -vI -Fg -Fg -Fg -Fg -gG -Fg -sx -mR -mR -mR -mR -mR -mR -zi -zi -aM -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -BH -mR -mR -mR -zi -zi -Wh -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(139,1,1) = {" -LZ -PS -PS -PS -Lb -VB -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -PS -PS -Lb -jv -Lb -Lb -Lb -VB -jv -Lb -Lb -Lb -Lb -Lb -Fg -YL -Fg -Fg -gG -Fg -Fg -Fg -Fg -ua -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -zi -zi -zi -Wh -zi -zi -zi -zi -zi -Wh -zi -zi -zi -zi -mR -mR -mR -mR -aM -zi -zi -aM -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(140,1,1) = {" -LZ -PS -PS -PS -Lb -jv -Lb -Lb -Lb -Lb -jv -Lb -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -VB -Lb -Lb -Fg -YL -YL -YL -YL -YL -YL -YL -YL -YL -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -qP -Fg -Fg -Fg -Fg -sx -sx -Fg -qP -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -zi -zi -zi -Wh -zi -zi -zi -aM -zi -Wh -zi -zi -zi -zi -mR -mR -mR -mR -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(141,1,1) = {" -LZ -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -gG -Fg -Fg -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -Qz -aM -zi -zi -zi -zi -aM -zi -Qz -Wh -zi -zi -zi -Bj -zi -Wh -zi -zi -zi -zi -mR -mR -mR -mR -zi -zi -zi -zi -zi -mR -mR -mR -mR -zi -zi -zi -mR -mR -mR -mR -mR -Zm -"} -(142,1,1) = {" -LZ -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -Lb -wD -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -sx -Fg -Fg -qP -Fg -Fg -Fg -Fg -Fg -Fg -qP -Fg -Fg -Fg -Fg -Fg -Fg -Ed -Fg -Fg -Fg -sx -sx -sx -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Ed -qP -zi -zi -zi -zi -zi -YJ -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -Wh -zi -zi -zi -zi -zi -Wh -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -zi -zi -aM -zi -zi -mR -mR -mR -mR -Zm -"} -(143,1,1) = {" -LZ -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -VB -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -VB -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -qV -Fg -Fg -Fg -sx -sx -sx -sx -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -zi -zi -zi -zi -zi -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -Qz -Wh -zi -zi -zi -zi -Qz -Wh -zi -zi -zi -aM -Qz -zi -zi -zi -zi -zi -zi -zi -hO -mR -mR -mR -zi -zi -zi -zi -zi -mR -mR -mR -mR -Zm -"} -(144,1,1) = {" -LZ -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -VB -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -sx -sx -Fg -Fg -gG -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -gG -Fg -Fg -sx -sx -sx -sx -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -mR -mR -zi -zi -zi -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -Wh -zi -zi -zi -zi -zi -Wh -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -zi -zi -zi -zi -zi -mR -mR -mR -mR -Zm -"} -(145,1,1) = {" -LZ -PS -PS -PS -Lb -Lb -Lb -VB -Lb -Lb -jv -Lb -Lb -Lb -Lb -Lb -jv -Lb -Lb -Lb -jv -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -sx -sx -Fg -sx -sx -sx -sx -sx -sx -Fg -Fg -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -mR -mR -zi -zi -zi -zi -Wh -Wh -BH -BH -BH -BH -BH -zi -zi -zi -zi -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -mR -mR -zi -zi -zi -zi -zi -mR -mR -mR -mR -Zm -"} -(146,1,1) = {" -LZ -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -mR -mR -mR -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -YJ -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -Zm -"} -(147,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -zj -Lb -Lb -Lb -VB -PS -PS -PS -PS -PS -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -mR -mR -mR -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -aM -zi -zi -mR -mR -mR -mR -mR -mR -Zm -"} -(148,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -Fg -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -mR -mR -mR -mR -zi -zi -aM -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -Zm -"} -(149,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -qP -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -mR -mR -mR -mR -mR -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(150,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(151,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -Lb -Lb -Lb -PS -PS -PS -PS -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -gG -Fg -Fg -gG -Fg -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -AR -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -Zm -"} -(152,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -VB -Lb -Lb -PS -PS -PS -PS -PS -Lb -Lb -Lb -PS -PS -PS -PS -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -ua -ua -ua -ua -YL -YL -YL -ua -ua -ua -ua -ua -ua -ua -BH -BH -BH -BH -mR -mR -mR -mR -mR -zi -zi -zi -aM -zi -mR -mR -mR -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -Qz -zi -zi -zi -Qz -aM -zi -zi -zi -Qz -zi -zi -zi -mR -mR -mR -mR -Zm -"} -(153,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -Lb -VB -Lb -PS -PS -PS -PS -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -ua -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -mR -mR -mR -BH -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -mR -mR -mR -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -Zm -"} -(154,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -PS -PS -PS -PS -Lb -Lb -Lb -PS -PS -PS -PS -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -ua -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -mR -mR -mR -BH -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -mR -mR -mR -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -mR -mR -mR -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -Zm -"} -(155,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -jv -Lb -Lb -Lb -jv -PS -PS -PS -PS -jv -Lb -Lb -Lb -PS -PS -sx -sx -sx -sx -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -ua -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -sx -sx -mR -mR -mR -BH -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -mR -mR -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -mR -mR -mR -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -Zm -"} -(156,1,1) = {" -LZ -PS -sl -sl -sl -sl -sl -sl -sl -sl -sl -sl -sl -sl -sl -sl -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -Lb -Lb -Lb -Lb -PS -PS -sx -sx -sx -sx -qP -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -ua -sx -sx -sx -Fg -Fg -Fg -Fg -qP -Fg -Fg -Fg -Fg -Fg -mR -mR -mR -BH -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -aM -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -zi -zi -aM -mR -mR -mR -mR -mR -Zm -"} -(157,1,1) = {" -LZ -PS -sl -PS -PS -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -sl -sl -sl -yi -Lb -Lb -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -PS -sx -sx -sx -Fg -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -sx -sx -sx -sx -sx -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -ua -sx -sx -sx -Fg -Fg -Fg -lP -lP -lP -lP -lP -Fg -Fg -mR -mR -mR -BH -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -mR -mR -mR -mR -mR -Zm -"} -(158,1,1) = {" -LZ -PS -sl -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -yi -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -VB -Lb -Lb -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -Fg -qP -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -ua -sx -sx -sx -Fg -Fg -Fg -lP -lP -lP -lP -lP -Fg -sx -mR -mR -mR -BH -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -aM -zi -zi -zi -Qz -zi -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -aM -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -mR -mR -mR -mR -mR -Zm -"} -(159,1,1) = {" -LZ -PS -sl -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -yi -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -sx -ua -sx -sx -sx -Fg -Fg -Fg -lP -lP -lP -lP -lP -Fg -sx -mR -mR -mR -BH -mR -mR -mR -zi -zi -zi -zi -zi -Qz -zi -AR -zi -zi -zi -zi -zi -Qz -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -mR -mR -mR -mR -mR -Zm -"} -(160,1,1) = {" -LZ -PS -sl -Lb -Lb -Lb -Lb -Lb -Lb -En -VB -Lb -Lb -PS -PS -PS -PS -PS -yi -Lb -Lb -VB -Lb -Lb -Lb -jv -Lb -Lb -Lb -Lb -Lb -Fg -Fg -Fg -Fg -Fg -Fg -gG -qP -Fg -Fg -Fg -Fg -Fg -Fg -qP -Fg -Fg -Fg -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -sx -ua -sx -sx -sx -Fg -Fg -bF -lP -lP -lP -lP -lP -Fg -Fg -zi -zi -zi -Wh -zi -mR -mR -zi -zi -zi -zi -Qz -zi -zi -zi -mR -mR -zi -zi -zi -zi -Qz -zi -zi -zi -zi -zi -Qz -zi -zi -zi -zi -zi -zi -zi -Qz -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -mR -mR -mR -mR -mR -Zm -"} -(161,1,1) = {" -LZ -PS -sl -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -yi -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -YL -sx -sx -sx -Fg -Fg -gG -qP -Fg -bR -Fg -Fg -Fg -Fg -Qz -zi -zi -Wh -zi -zi -zi -zi -zi -zi -Qz -zi -zi -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -aM -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -zi -aM -zi -mR -mR -mR -mR -mR -Zm -"} -(162,1,1) = {" -LZ -PS -sl -Lb -Lb -Lb -VB -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -yi -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -qP -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -YL -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -zi -zi -zi -Wh -zi -zi -zi -zi -zi -aM -zi -zi -mR -mR -mR -mR -mR -mR -zi -zi -zi -aM -zi -zi -zi -zi -aM -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -Zm -"} -(163,1,1) = {" -LZ -PS -sl -Lb -Lb -Lb -Lb -Lb -jv -Lb -Lb -Lb -Lb -VB -Lb -Lb -Lb -Lb -yi -Lb -jv -Lb -Lb -Lb -Lb -jv -Lb -PS -PS -PS -PS -sx -Fg -Fg -Fg -qP -Fg -gG -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -gG -Fg -Fg -Fg -Fg -Fg -Fg -tb -Fg -Fg -Fg -Fg -YL -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -zi -zi -zi -Wh -zi -aM -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -Zm -"} -(164,1,1) = {" -LZ -PS -sl -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -yi -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -PS -PS -PS -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -YL -qP -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -zi -zi -zi -Wh -zi -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -Qz -zi -aM -zi -zi -zi -zi -zi -zi -Qz -zi -mR -mR -mR -mR -mR -mR -Zm -"} -(165,1,1) = {" -LZ -PS -sl -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -yi -Lb -PS -PS -Lb -Lb -Lb -Lb -PS -PS -PS -PS -PS -sx -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -YL -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -qP -zi -zi -mR -BH -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -aM -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -aM -zi -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -Zm -"} -(166,1,1) = {" -LZ -PS -sl -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -PS -sl -PS -PS -PS -Lb -VB -Lb -Lb -PS -PS -PS -Lb -Lb -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -sx -sx -sx -ua -sx -sx -sx -Fg -Fg -qP -Fg -Fg -Fg -Fg -Fg -Fg -Fg -zi -zi -mR -BH -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -Zm -"} -(167,1,1) = {" -LZ -PS -sl -sl -sl -sl -yi -yi -yi -yi -yi -sl -sl -sl -sl -sl -sl -sl -sl -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -PS -PS -Lb -Lb -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -Fg -Fg -Fg -sx -sx -sx -sx -sx -ua -sx -sx -sx -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Fg -zi -zi -mR -BH -mR -mR -mR -mR -mR -zi -zi -zi -zi -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -aM -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(168,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -Lb -VB -Lb -Fg -Fg -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -ua -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -mR -mR -mR -BH -mR -mR -mR -mR -mR -mR -mR -mR -mR -zi -zi -zi -zi -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(169,1,1) = {" -LZ -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -PS -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Fg -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -sx -ua -ua -ua -ua -ua -ua -ua -ua -ua -ua -ua -ua -ua -ua -BH -BH -BH -BH -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -mR -Zm -"} -(170,1,1) = {" -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -ze -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} diff --git a/_maps/map_files/Campaign maps/patricks_rest/patricks_rest.dmm b/_maps/map_files/Campaign maps/patricks_rest/patricks_rest.dmm deleted file mode 100644 index 607e4402b76..00000000000 --- a/_maps/map_files/Campaign maps/patricks_rest/patricks_rest.dmm +++ /dev/null @@ -1,32872 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ac" = ( -/obj/effect/decal/cleanable/blood/writing{ - desc = "It looks like a writing in blood. It says, 'The gates of Hel are open when this armory is opened.'"; - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonys) -"ae" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonye) -"af" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/surface/building/ore_storage) -"ag" = ( -/obj/machinery/power/apc/drained, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"ah" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"ai" = ( -/turf/closed/mineral/smooth, -/area/patricks_rest/ground/colonysw) -"aj" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/patricks_rest/surface/building/science) -"ak" = ( -/obj/structure/flora/desert/grass/heavy, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyw) -"am" = ( -/turf/open/floor/mainship/terragov/north{ - dir = 9 - }, -/area/patricks_rest/ground/colonys) -"ao" = ( -/turf/open/liquid/water/river, -/area/patricks_rest/ground/river/riverside_south) -"aq" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/ground/colonye) -"ar" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"as" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"at" = ( -/obj/structure/cargo_container/hd_blue{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"au" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/obj/machinery/light, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"av" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"aw" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 1 - }, -/obj/structure/prop/mainship/gelida/railbumper{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"ax" = ( -/obj/structure/sink/bathroom{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"az" = ( -/turf/closed/shuttle/dropship2/edge{ - dir = 1 - }, -/area/patricks_rest/surface/landing_pad) -"aA" = ( -/obj/machinery/door/airlock/multi_tile/mainship/comdoor/free_access{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"aB" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"aC" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"aD" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/surface/building/barracks) -"aE" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"aF" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/patricks_rest/surface/building/storage_depot_south) -"aG" = ( -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/patricks_rest/surface/building/science) -"aI" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"aJ" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"aK" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"aL" = ( -/obj/item/spacecash, -/obj/item/spacecash, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/residential_cent) -"aM" = ( -/obj/structure/bed/stool, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"aN" = ( -/obj/structure/kitchenspike, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/freezer, -/area/patricks_rest/surface/building/residential_cent) -"aO" = ( -/obj/machinery/light, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"aQ" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"aR" = ( -/obj/machinery/door/poddoor/mainship/open, -/obj/effect/turf_decal/warning_stripes/stripedsquare, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"aS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"aU" = ( -/obj/structure/prop/vehicle/crawler, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"aV" = ( -/obj/machinery/computer/telecomms/server, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"aY" = ( -/turf/closed/mineral/smooth/indestructible, -/area/patricks_rest/ground/colonysw) -"bb" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"bc" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"bd" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"be" = ( -/obj/structure/cargo_container/hd, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"bf" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/underground/cave) -"bg" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyne) -"bh" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore_storage) -"bi" = ( -/obj/machinery/vending/snack, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"bj" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyw) -"bk" = ( -/obj/machinery/mineral/unloading_machine/corner, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"bl" = ( -/obj/structure/rack, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/box/drinkingglasses, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"bm" = ( -/turf/closed/mineral/smooth/indestructible, -/area/patricks_rest/ground/colonys) -"bn" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"bo" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/security_post_cargo) -"bp" = ( -/obj/machinery/floodlight/colony, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonys) -"bq" = ( -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonye) -"br" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_engi) -"bs" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyse) -"bt" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonysw) -"bu" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/storage_depot_research) -"bw" = ( -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"by" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"bA" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"bD" = ( -/obj/structure/platform/metalplatform{ - dir = 9 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"bF" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonysw) -"bG" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/command) -"bH" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyw) -"bI" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/residential_cent) -"bJ" = ( -/obj/structure/platform/metalplatform{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"bK" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"bL" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/ground/colonyw) -"bM" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_e) -"bN" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"bO" = ( -/obj/structure/largecrate, -/obj/machinery/light, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"bP" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/platform/metalplatform{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"bQ" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonys) -"bR" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/residential_e) -"bS" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"bT" = ( -/obj/machinery/light, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_barracks) -"bU" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/structure/window/reinforced/windowstake{ - dir = 1 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"bV" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"bW" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"bX" = ( -/obj/structure/platform/metalplatform{ - dir = 5 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"bY" = ( -/obj/effect/ai_node, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/atc) -"bZ" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"cc" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonyn) -"cd" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/cargo_office) -"ce" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"cg" = ( -/obj/effect/ai_node, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"ci" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"cj" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/patricks_rest/ground/colonyse) -"cl" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"cn" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform/metalplatform{ - dir = 5 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"cp" = ( -/obj/structure/kitchenspike, -/turf/open/floor/freezer, -/area/patricks_rest/surface/building/residential_cent) -"cr" = ( -/obj/machinery/vending/snack, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"cs" = ( -/obj/structure/largecrate/random/case/double, -/obj/machinery/light, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/patricks_rest/surface/building/residential_w) -"ct" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/atc) -"cu" = ( -/turf/closed/mineral/smooth/indestructible, -/area/patricks_rest/ground/colonynw) -"cv" = ( -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"cw" = ( -/obj/machinery/door/airlock/multi_tile/mainship/comdoor/free_access, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"cx" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 4 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonye) -"cy" = ( -/turf/open/floor/mainship/terragov/north{ - dir = 10 - }, -/area/patricks_rest/ground/colonys) -"cA" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/cargo_office) -"cB" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/transformer_barracks) -"cC" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonycent) -"cD" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/structure/window/reinforced/windowstake{ - dir = 1 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"cE" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"cF" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"cG" = ( -/obj/structure/dropship_piece/two/engine/leftbottom, -/turf/closed/shuttle/dropship2/engineone{ - dir = 4 - }, -/area/patricks_rest/ground/colonyn) -"cH" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/offices) -"cI" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"cJ" = ( -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"cK" = ( -/obj/structure/platform/metalplatform{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"cL" = ( -/obj/structure/rack, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/atc) -"cM" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"cN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"cP" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"cQ" = ( -/obj/structure/curtain/open, -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/window, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_e) -"cR" = ( -/obj/structure/stairs/seamless/edge{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyn) -"cS" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"cU" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"cV" = ( -/obj/structure/flora/desert/grass, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/hydro) -"cW" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonyn) -"cX" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"cY" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/patricks_rest/ground/colonys) -"cZ" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/residential_w) -"da" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"dc" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/storage_depot_south) -"de" = ( -/obj/structure/platform/metalplatform{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/patricks_rest/surface/building/hydro) -"df" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/medbay) -"dg" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/engineering) -"dl" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"dm" = ( -/obj/structure/stairs/seamless/edge{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyn) -"dp" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"dt" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/baggage) -"du" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/patricks_rest/ground/colonye) -"dv" = ( -/obj/structure/rack, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"dw" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"dx" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/atc) -"dz" = ( -/obj/structure/cable, -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonys) -"dA" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 5 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"dB" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"dC" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform/metalplatform{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"dD" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/command) -"dF" = ( -/obj/structure/largecrate/random/case/double, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"dG" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"dI" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonynw) -"dJ" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonysw) -"dK" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/transformer_barracks) -"dL" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"dM" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/surface/landing_pad) -"dN" = ( -/obj/structure/prop/vehicle/truck{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/engineering) -"dO" = ( -/obj/effect/ai_node, -/obj/item/stack/sheet/metal, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore) -"dP" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"dQ" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"dR" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/security_post_cargo) -"dS" = ( -/obj/machinery/vending/cola, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"dT" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 8 - }, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"dU" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"dV" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/cargo_office) -"dW" = ( -/obj/effect/decal/cleanable/blood/writing{ - desc = "It looks like a writing in blood. It says, 'The gates of Hel are open when this armory is opened.'"; - dir = 4 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonys) -"dX" = ( -/obj/structure/sign/safety/electronics{ - pixel_x = 8; - pixel_y = -5 - }, -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/hydro) -"eb" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/engineering) -"ec" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonyw) -"ee" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/patricks_rest/ground/colonycent) -"ef" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/atc) -"eh" = ( -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"ei" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"el" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"em" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"en" = ( -/obj/structure/closet/crate/mass_produced_crate/supply, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"eo" = ( -/turf/closed/mineral/smooth, -/area/patricks_rest/surface/building/medbay) -"ep" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering/glass, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"eq" = ( -/obj/structure/prop/vehicle/apc/decoration{ - dir = 4 - }, -/obj/structure/prop/vehicle/apc/wheelsone{ - dir = 4 - }, -/obj/structure/prop/vehicle/apc{ - dir = 4 - }, -/obj/structure/prop/vehicle/apc/damagedframe{ - dir = 4 - }, -/obj/structure/prop/vehicle/apc/dualcannonone{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonys) -"es" = ( -/obj/structure/table/reinforced/prison, -/obj/item/tool/kitchen/tray, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"et" = ( -/obj/structure/platform/metalplatform{ - dir = 4 - }, -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/hydro) -"eu" = ( -/obj/structure/toilet/alternate{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_e) -"ev" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/med_data/laptop, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"ew" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"ex" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"ey" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"ez" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/patricks_rest/ground/colonye) -"eA" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"eB" = ( -/obj/structure/rock/variable/basalt, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonycent) -"eC" = ( -/obj/structure/closet/walllocker/hydrant/extinguisher, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_engi) -"eD" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/ore_storage) -"eE" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"eF" = ( -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"eG" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"eH" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_engi) -"eL" = ( -/obj/machinery/showcase/mulebot, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"eM" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/patricks_rest/ground/colonye) -"eN" = ( -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/hydro) -"eO" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyn) -"eP" = ( -/obj/structure/platform/metalplatform{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"eQ" = ( -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"eS" = ( -/obj/structure/prop/brokenvendor/brokenuniformvendor/specialist, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"eT" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/surface/building/storage_depot_south) -"eV" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/residential_engi) -"eW" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"eX" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonyw) -"eY" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"eZ" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"fa" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"fe" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"ff" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/residential_w) -"fg" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"fh" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/engineering) -"fj" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"fk" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyn) -"fl" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"fm" = ( -/obj/structure/table/gamblingtable, -/obj/item/toy/deck, -/obj/item/toy/deck/kotahi, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"fn" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"fo" = ( -/turf/open/liquid/water/river, -/area/patricks_rest/ground/colonycent) -"fr" = ( -/obj/structure/table/reinforced/prison, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"fs" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/platform/metalplatform, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"ft" = ( -/obj/structure/rock/variable/basalt, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonysw) -"fu" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"fw" = ( -/obj/machinery/floodlight/colony, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonycent) -"fx" = ( -/obj/structure/platform/metalplatform{ - dir = 9 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/ground/colonye) -"fy" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"fA" = ( -/obj/machinery/computer3/server/rack, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/mainship/tcomms, -/area/patricks_rest/surface/building/cargo_office) -"fB" = ( -/obj/structure/platform/metalplatform, -/turf/open/floor/plating/plating_catwalk, -/area/patricks_rest/surface/building/hydro) -"fC" = ( -/obj/structure/platform/metalplatform, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"fE" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/patricks_rest/surface/building/science) -"fF" = ( -/obj/structure/prop/vehicle/truck{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/colonyn) -"fG" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyw) -"fH" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_e) -"fI" = ( -/obj/item/stack/sheet/metal, -/obj/structure/platform/metalplatform{ - dir = 10 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"fJ" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/residential_w) -"fK" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/surface/building/residential_w) -"fL" = ( -/obj/structure/platform/metalplatform{ - dir = 6 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"fN" = ( -/obj/structure/fence, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyn) -"fO" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/residential_w) -"fQ" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore_storage) -"fS" = ( -/obj/structure/window{ - dir = 4 - }, -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"fT" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/security_post_cargo) -"fU" = ( -/obj/machinery/mineral/processing_unit_console, -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/ore) -"fV" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonysw) -"fW" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"fY" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/colonyn) -"fZ" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"ga" = ( -/turf/open/floor/plating/ground/concrete/edge, -/area/patricks_rest/surface/building/residential_w) -"gb" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonyne) -"gc" = ( -/obj/machinery/vending/MarineMed/Blood, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"gd" = ( -/obj/structure/bed/chair/sofa/corsat/verticalmiddle, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"ge" = ( -/obj/structure/flora/desert/grass/heavy, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/atc) -"gf" = ( -/obj/machinery/computer3/server/rack, -/obj/structure/window{ - dir = 1 - }, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/mainship/tcomms, -/area/patricks_rest/surface/building/science) -"gi" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"gj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"gk" = ( -/turf/open/liquid/water/river, -/area/patricks_rest/ground/river/riverside_central) -"gl" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"gm" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"gn" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"gp" = ( -/obj/machinery/robotic_fabricator, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"gq" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone, -/turf/closed/mineral/smooth, -/area/patricks_rest/ground/colonynw) -"gr" = ( -/obj/structure/rack, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"gs" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/science) -"gt" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/engineering) -"gu" = ( -/obj/effect/ai_node, -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"gv" = ( -/obj/structure/stairs/seamless/edge, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyn) -"gw" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"gy" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"gz" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"gA" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"gB" = ( -/obj/machinery/photocopier, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"gC" = ( -/obj/effect/turf_decal/riverdecal, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/river/riverside_south) -"gD" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform/metalplatform{ - dir = 10 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"gE" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"gF" = ( -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"gG" = ( -/obj/structure/prop/vehicle/crane, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"gH" = ( -/obj/structure/toilet/alternate{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/cargo_office) -"gI" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"gJ" = ( -/obj/machinery/door/poddoor/mainship/open, -/obj/effect/turf_decal/warning_stripes/stripedsquare, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"gO" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyw) -"gP" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform/metalplatform{ - dir = 6 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"gQ" = ( -/obj/item/bedsheet/medical, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"gS" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"gT" = ( -/obj/effect/ai_node, -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyne) -"gW" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"gY" = ( -/obj/structure/platform/metalplatform{ - dir = 10 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"gZ" = ( -/obj/structure/platform/metalplatform, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"ha" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"hb" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonye) -"hd" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"he" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore_storage) -"hg" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/effect/ai_node, -/turf/open/shuttle/dropship/three, -/area/patricks_rest/surface/landing_pad) -"hh" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/river/riverside_south) -"hi" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/surface/building/residential_w) -"hj" = ( -/obj/machinery/science/incubator, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"hk" = ( -/obj/structure/stairs/seamless/edge_vert{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"hl" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"hn" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonysw) -"ho" = ( -/obj/structure/bed/chair/sofa/corsat/verticalmiddle, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"hp" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/security, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/residential_cent) -"hq" = ( -/turf/closed/shuttle/dropship2/enginethree{ - dir = 8 - }, -/area/patricks_rest/surface/landing_pad) -"hs" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"ht" = ( -/obj/structure/largecrate, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/residential_w) -"hu" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"hv" = ( -/obj/structure/stairs/seamless/edge_vert{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"hy" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/surface/building/residential_w) -"hA" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonye) -"hB" = ( -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/patricks_rest/surface/building/science) -"hC" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/machinery/light, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"hF" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_engi) -"hG" = ( -/obj/structure/platform/rockcliff, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"hI" = ( -/obj/structure/cargo_container/horizontal{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"hK" = ( -/obj/structure/rack, -/obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"hL" = ( -/obj/item/spacecash/c50, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"hM" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"hN" = ( -/obj/structure/platform/rockcliff{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"hO" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/patricks_rest/surface/building/residential_w) -"hP" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"hQ" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"hR" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonys) -"hS" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"hT" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"hU" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 1 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"hV" = ( -/obj/structure/table/mainship, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"hW" = ( -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyse) -"hX" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/colonyw) -"hY" = ( -/obj/structure/sink{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"hZ" = ( -/obj/structure/platform/rockcliff{ - dir = 6 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"ia" = ( -/obj/structure/flora/desert/grass/heavy, -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/hydro) -"ib" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"ic" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonycent) -"id" = ( -/obj/structure/window{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"if" = ( -/obj/structure/largecrate, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/storage_depot_south) -"ig" = ( -/obj/machinery/door/poddoor/mainship/open, -/obj/effect/turf_decal/warning_stripes/stripedsquare, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore) -"ih" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/purple/side, -/area/patricks_rest/surface/building/science) -"ij" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"ik" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonycent) -"il" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore_storage) -"in" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3/laptop, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"ip" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/ground/colonyne) -"iq" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/science, -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"it" = ( -/obj/structure/bed/bunkbed, -/obj/machinery/light, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"iu" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"iv" = ( -/obj/structure/rack, -/obj/item/cell/high, -/obj/item/cell/high, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_residential) -"iw" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"ix" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonynw) -"iy" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyw) -"iA" = ( -/obj/structure/table/mainship, -/obj/machinery/power/apc/drained{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"iB" = ( -/obj/structure/bed/chair/dropship/passenger, -/turf/open/shuttle/dropship/seven, -/area/patricks_rest/surface/landing_pad) -"iD" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"iE" = ( -/obj/structure/largecrate, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/surface/building/residential_w) -"iF" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"iG" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/residential_engi) -"iH" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonynw) -"iI" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/engineering) -"iJ" = ( -/obj/structure/largecrate, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"iM" = ( -/obj/structure/desertdam/decals/road, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/engineering) -"iN" = ( -/turf/closed/shuttle/dropship2/engine_sidealt{ - dir = 4 - }, -/area/patricks_rest/surface/landing_pad) -"iO" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/patricks_rest/ground/colonyn) -"iP" = ( -/obj/item/stack/sheet/mineral/phoron/small_stack, -/obj/machinery/conveyor{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"iQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"iR" = ( -/obj/structure/flora/desert/grass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/atc) -"iS" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonyn) -"iT" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"iV" = ( -/obj/machinery/conveyor, -/obj/item/storage/briefcase, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/baggage) -"iW" = ( -/obj/machinery/bodyscanner, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"iX" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonyse) -"iY" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"ja" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"jb" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"jd" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/ore_storage) -"je" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/surface/building/residential_w) -"jf" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/surface/landing_pad) -"jh" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/landing_pad) -"ji" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/freezer, -/area/patricks_rest/surface/building/residential_cent) -"jk" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonyw) -"jl" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"jm" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/river/riverside_south) -"jn" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"jo" = ( -/turf/closed/mineral/smooth/indestructible, -/area/storage/testroom) -"jp" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/patricks_rest/ground/colonyw) -"jq" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"jr" = ( -/obj/effect/ai_node, -/obj/structure/platform/rockcliff{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"jt" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"jv" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/atc) -"jy" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"jz" = ( -/turf/closed/shuttle/dropship2/engine_sidealt{ - dir = 1 - }, -/area/patricks_rest/surface/landing_pad) -"jA" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"jB" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonyse) -"jD" = ( -/obj/structure/closet/l3closet/security, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"jE" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/cargo_office) -"jF" = ( -/obj/machinery/vending/cola, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"jG" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonye) -"jH" = ( -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_y = 15 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/patricks_rest/surface/building/science) -"jI" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/landing_pad) -"jK" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/atc) -"jL" = ( -/obj/structure/closet/crate/mass_produced_crate/supply, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"jM" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"jN" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonyse) -"jO" = ( -/obj/item/shard, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"jP" = ( -/obj/structure/table/mainship, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"jR" = ( -/obj/structure/prop/turbine, -/obj/structure/platform/metalplatform, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"jS" = ( -/obj/structure/prop/mainship/gelida/propserveralt, -/obj/structure/window, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/tcomms, -/area/patricks_rest/surface/building/science) -"jT" = ( -/obj/structure/prop/vehicle/van, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonycent) -"jU" = ( -/obj/structure/platform/rockcliff{ - dir = 9 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"jV" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"jW" = ( -/obj/structure/table/reinforced/prison, -/obj/structure/sink{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"jZ" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering/glass{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"ka" = ( -/obj/machinery/cic_maptable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/atc) -"kb" = ( -/obj/structure/platform/rockcliff{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"ke" = ( -/obj/effect/ai_node, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"kf" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/patricks_rest/ground/colonys) -"kh" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/underground/cave) -"kk" = ( -/obj/machinery/computer3, -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/atc) -"kl" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonysw) -"km" = ( -/obj/machinery/door/poddoor/mainship/open, -/obj/effect/turf_decal/warning_stripes/stripedsquare, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore) -"ko" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"kp" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonycent) -"ks" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"kt" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"kv" = ( -/obj/machinery/computer/prisoner, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/residential_cent) -"kw" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_engi) -"kx" = ( -/obj/effect/ai_node, -/obj/structure/prop/mainship/gelida/rails{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"ky" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"kz" = ( -/obj/structure/platform/metalplatform{ - dir = 5 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/ground/colonye) -"kB" = ( -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/patricks_rest/surface/building/science) -"kC" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"kD" = ( -/obj/structure/prop/brokenvendor/brokenuniformvendor, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"kE" = ( -/obj/machinery/vending/snack, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"kF" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/storage_depot_research) -"kG" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/residential_engi) -"kJ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonyn) -"kK" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/offices) -"kL" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyw) -"kM" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/camera, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"kN" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic/noglass{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"kO" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/ground/colonyn) -"kP" = ( -/obj/effect/ai_node, -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"kR" = ( -/obj/structure/cargo_container{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/residential_w) -"kS" = ( -/obj/structure/prop/mainship/gelida/propserveralt, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"kT" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonyn) -"kV" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"kW" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/patricks_rest/surface/building/storage_depot_south) -"kX" = ( -/obj/structure/rack, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"kY" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/ground/colonynw) -"lb" = ( -/obj/structure/rack, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"lc" = ( -/obj/structure/table/reinforced, -/obj/machinery/science/pathogenic_incubator, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"ld" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonynw) -"le" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyse) -"lf" = ( -/obj/structure/ore_box, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"lg" = ( -/obj/structure/platform/metalplatform{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/ground/colonye) -"lh" = ( -/obj/structure/platform/metalplatform{ - dir = 1 - }, -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/command) -"li" = ( -/turf/closed/shuttle/dropship2/wallthree, -/area/patricks_rest/surface/landing_pad) -"lj" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/edge, -/area/patricks_rest/ground/colonyw) -"lk" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_residential) -"ll" = ( -/obj/machinery/floodlight/colony, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonynw) -"ln" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"lo" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"lp" = ( -/obj/structure/platform/metalplatform, -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/ore_storage) -"lq" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"lr" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/ground/colonynw) -"lt" = ( -/obj/structure/cable, -/obj/structure/stairs/seamless/edge_vert{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/ore_storage) -"lu" = ( -/obj/structure/table/mainship, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"lv" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"lw" = ( -/obj/structure/dropship_piece/two/engine/leftbottom, -/turf/closed/shuttle/dropship2/engineone, -/area/patricks_rest/surface/landing_pad) -"lx" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"ly" = ( -/obj/machinery/conveyor_switch, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/baggage) -"lz" = ( -/obj/structure/cable, -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyse) -"lA" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyw) -"lC" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyne) -"lD" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonycent) -"lE" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"lG" = ( -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"lJ" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/atc) -"lK" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"lL" = ( -/turf/open/floor/mainship/sterile/purple/corner, -/area/patricks_rest/surface/building/science) -"lM" = ( -/obj/structure/bookcase, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"lN" = ( -/obj/structure/flora/desert/grass/heavy, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/residential_cent) -"lO" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"lP" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"lQ" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/residential_w) -"lR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"lS" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/storage_depot_research) -"lT" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonyn) -"lU" = ( -/obj/structure/largecrate/supply/medicine, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"lV" = ( -/obj/machinery/door/airlock/multi_tile/mainship/secdoor, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"lX" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonys) -"lY" = ( -/obj/structure/table/reinforced/prison, -/obj/item/reagent_containers/food/snacks/soup/meatballsoup, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"ma" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_residential) -"mc" = ( -/obj/effect/ai_node, -/obj/structure/prop/mainship/gelida/rails{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"md" = ( -/obj/machinery/door/poddoor/mainship/open, -/obj/effect/turf_decal/warning_stripes/stripedsquare, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/security_post_cargo) -"mf" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"mg" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyn) -"mh" = ( -/obj/structure/stairs/seamless/edge_vert{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/ore_storage) -"mj" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/transformer_barracks) -"mk" = ( -/obj/machinery/vending/boozeomat, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"ml" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"mm" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/cargo_office) -"mn" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"mo" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/obj/structure/window, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"mr" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"ms" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"mt" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/patricks_rest/ground/colonysw) -"mu" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonysw) -"mv" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/science, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"mw" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_e) -"mx" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/ground/colonys) -"my" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/freezer, -/area/patricks_rest/surface/building/residential_cent) -"mz" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyw) -"mA" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"mB" = ( -/obj/machinery/door/poddoor/mainship/open, -/obj/effect/turf_decal/warning_stripes/stripedsquare, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"mC" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/storage_depot_research) -"mD" = ( -/obj/structure/dropship_piece/two/engine/leftbottom, -/turf/closed/shuttle/dropship2/engineone{ - dir = 4 - }, -/area/patricks_rest/surface/landing_pad) -"mE" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar/stripe, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore_storage) -"mF" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"mG" = ( -/obj/structure/fence, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyse) -"mH" = ( -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"mI" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"mJ" = ( -/obj/item/stack/sheet/metal, -/obj/structure/flora/desert/grass/heavy, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"mK" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"mL" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonye) -"mM" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"mO" = ( -/obj/structure/prop/vehicle/crane/cranecargo, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"mP" = ( -/obj/structure/platform/metalplatform, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"mQ" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"mR" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 2 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"mS" = ( -/turf/closed/wall/mainship/white, -/area/patricks_rest/surface/building/medbay) -"mT" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyne) -"mU" = ( -/obj/structure/cable, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"mV" = ( -/obj/structure/platform/metalplatform{ - dir = 4 - }, -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/residential_w) -"mW" = ( -/obj/machinery/light, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"mX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"mY" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"mZ" = ( -/obj/structure/window/framed/mainship, -/obj/structure/platform/metalplatform{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"na" = ( -/turf/closed/shuttle/dropship2/engineone/alt{ - dir = 4 - }, -/area/patricks_rest/ground/colonyn) -"nb" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_residential) -"nc" = ( -/obj/structure/rack, -/obj/item/stack/sheet/plasteel/small_stack, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"nd" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/science) -"ne" = ( -/turf/open/floor/plating/dmg3, -/area/patricks_rest/surface/landing_pad) -"nf" = ( -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"ng" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/science) -"nh" = ( -/obj/structure/platform/metalplatform{ - dir = 1 - }, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"nj" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/landing_pad) -"nk" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone, -/turf/closed/mineral/smooth, -/area/patricks_rest/surface/building/hydro) -"nl" = ( -/obj/structure/table/mainship, -/obj/structure/paper_bin, -/obj/item/clipboard, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"nm" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"nn" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/underground/cave) -"no" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonynw) -"nq" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"ns" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"nt" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"nu" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/baggage) -"nv" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/colonynw) -"nw" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/obj/effect/ai_node, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"nx" = ( -/turf/closed/shuttle/dropship2/engineone/alt{ - dir = 8 - }, -/area/patricks_rest/surface/landing_pad) -"ny" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"nz" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_e) -"nA" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/patricks_rest/ground/colonycent) -"nB" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/ground/colonye) -"nC" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/transformer_residential) -"nD" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"nE" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/patricks_rest/ground/colonyw) -"nF" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonynw) -"nG" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/residential_cent) -"nH" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/residential_w) -"nI" = ( -/obj/structure/cargo_container{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"nK" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"nL" = ( -/obj/item/spacecash/c1, -/obj/effect/ai_node, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"nN" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonysw) -"nO" = ( -/obj/machinery/computer3/server/rack, -/obj/structure/window{ - dir = 8 - }, -/obj/structure/window, -/turf/open/floor/mainship/tcomms, -/area/patricks_rest/surface/building/offices) -"nP" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyse) -"nQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/ore_storage) -"nR" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"nS" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/surface/building/residential_w) -"nU" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer3/server, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"nV" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"nW" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"nY" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/freezer, -/area/patricks_rest/surface/building/residential_cent) -"nZ" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonynw) -"oa" = ( -/obj/structure/prop/mainship/sensor_computer3, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"ob" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonys) -"oc" = ( -/obj/machinery/science/analyser, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"od" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"oe" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/science) -"of" = ( -/obj/machinery/floodlight/landing, -/obj/structure/platform/metalplatform{ - dir = 9 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"og" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/baggage) -"ok" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_barracks) -"ol" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"om" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonynw) -"on" = ( -/obj/structure/sink/bathroom{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_w) -"oo" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"op" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/effect/turf_decal/warning_stripes, -/obj/effect/turf_decal/warning_stripes/nscenter, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"oq" = ( -/obj/structure/bed/bunkbed, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"or" = ( -/obj/structure/rack, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"os" = ( -/obj/machinery/power/monitor/grid, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_residential) -"ot" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/storage_depot_research) -"ou" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"ov" = ( -/obj/machinery/door/airlock/mainship/engineering, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"ox" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/residential_e) -"oy" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/surface/building/storage_depot_south) -"oB" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyw) -"oC" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/obj/structure/desertdam/decals/road, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/engineering) -"oD" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"oF" = ( -/obj/machinery/vending/coffee, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"oH" = ( -/obj/structure/flora/pottedplant/two, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"oI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"oJ" = ( -/obj/machinery/floodlight/colony, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"oL" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/landmark/weed_node, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"oM" = ( -/obj/structure/prop/vehicle/crawler/crawler_red, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyn) -"oO" = ( -/obj/structure/cable, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"oQ" = ( -/obj/structure/prop/mainship/mission_planning_system, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"oR" = ( -/obj/structure/bed/chair/office/dark, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/residential_cent) -"oS" = ( -/obj/machinery/processor, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"oT" = ( -/obj/machinery/shower, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_w) -"oU" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"oW" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonynw) -"oX" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore_storage) -"oY" = ( -/obj/structure/sink{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/offices) -"pa" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/patricks_rest/surface/building/science) -"pb" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/offices) -"pd" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/obj/structure/cable, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_barracks) -"pf" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"pg" = ( -/obj/structure/flora/pottedplant/twelve, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_e) -"ph" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonysw) -"pi" = ( -/obj/machinery/power/smes/buildable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"pj" = ( -/obj/effect/landmark/start/job/xenomorph, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyse) -"pn" = ( -/obj/effect/ai_node, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore) -"pp" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"pq" = ( -/obj/structure/closet/firecloset/full, -/obj/machinery/light, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"pr" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"ps" = ( -/obj/effect/landmark/weed_node, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"pt" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"pu" = ( -/obj/structure/curtain/open, -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/window, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_e) -"pv" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"pw" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/surface/building/storage_depot_south) -"px" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/residential_w) -"pz" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"pA" = ( -/obj/machinery/door/poddoor/mainship/open, -/obj/effect/turf_decal/warning_stripes/stripedsquare, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"pB" = ( -/obj/structure/rack, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"pC" = ( -/obj/item/stack/sheet/metal, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"pE" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/storage_depot_south) -"pF" = ( -/obj/structure/reagent_dispensers, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"pG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"pH" = ( -/obj/effect/ai_node, -/turf/open/liquid/water/river, -/area/patricks_rest/surface/building/residential_w) -"pI" = ( -/obj/structure/curtain/open, -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_e) -"pJ" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/patricks_rest/ground/colonye) -"pK" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"pM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/residential_cent) -"pN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore) -"pP" = ( -/obj/structure/fence, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/transformer_residential) -"pR" = ( -/obj/machinery/vending/snack, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"pS" = ( -/obj/structure/flora/pottedplant/two, -/obj/machinery/light, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"pT" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"pU" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyn) -"pW" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/ground/colonyn) -"pX" = ( -/obj/structure/holohoop{ - dir = 8; - id = "lvbasketball"; - side = "right" - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"qa" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"qb" = ( -/obj/machinery/door/window{ - dir = 8 - }, -/obj/machinery/door/window, -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"qc" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"qf" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/offices) -"qg" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"qh" = ( -/obj/machinery/computer/security/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 4; - name = "Television set"; - network = null; - pixel_y = 4 - }, -/obj/structure/table/mainship, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"qj" = ( -/obj/structure/closet/secure_closet/medical3, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"qk" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"qm" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"qo" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/colonyw) -"qp" = ( -/obj/structure/desertdam/decals/road/line, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonycent) -"qq" = ( -/obj/structure/rack, -/obj/item/storage/toolbox, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/patricks_rest/surface/building/science) -"qr" = ( -/obj/effect/turf_decal/riverdecal, -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/river/riverside_south) -"qs" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/medbay) -"qt" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"qu" = ( -/obj/machinery/griddle, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"qx" = ( -/obj/structure/rack, -/obj/item/newspaper, -/obj/item/newspaper, -/obj/item/newspaper, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"qy" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 1 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonynw) -"qA" = ( -/obj/structure/sink{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"qB" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonyn) -"qE" = ( -/obj/structure/desertdam/decals/road/stop, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"qF" = ( -/obj/structure/dropship_piece/two/engine/rightbottom, -/turf/closed/shuttle/dropship2/engineone{ - dir = 8 - }, -/area/patricks_rest/surface/landing_pad) -"qG" = ( -/obj/structure/dropship_piece/two/front{ - dir = 1 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"qH" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 1 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonycent) -"qI" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/engineering) -"qL" = ( -/obj/machinery/mineral/unloading_machine, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"qM" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_residential) -"qN" = ( -/obj/machinery/computer/crew, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"qO" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonynw) -"qP" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/patricks_rest/surface/building/science) -"qR" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonysw) -"qS" = ( -/obj/machinery/light, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/atc) -"qV" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/offices) -"qW" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"qX" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyne) -"qZ" = ( -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonynw) -"ra" = ( -/turf/closed/shuttle/dropship2/enginethree{ - dir = 4 - }, -/area/patricks_rest/surface/landing_pad) -"rb" = ( -/obj/machinery/conveyor, -/obj/item/storage/backpack/satchel/withwallet, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/baggage) -"rc" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3/laptop, -/obj/machinery/light, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"re" = ( -/turf/open/floor/mainship/terragov{ - dir = 1 - }, -/area/patricks_rest/ground/colonys) -"rf" = ( -/obj/effect/ai_node, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"rg" = ( -/obj/structure/bed/chair/dropship/passenger, -/obj/effect/ai_node, -/turf/open/shuttle/dropship/six, -/area/patricks_rest/surface/landing_pad) -"ri" = ( -/obj/machinery/vending/snack, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"rj" = ( -/turf/open/shuttle/dropship/floor/alt, -/area/patricks_rest/surface/landing_pad) -"rk" = ( -/turf/closed/shuttle/dropship2/enginethree, -/area/patricks_rest/surface/landing_pad) -"rl" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"rm" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonynw) -"rp" = ( -/obj/structure/rack, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"rs" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/residential_cent) -"ru" = ( -/obj/structure/table/reinforced/prison, -/obj/item/tool/kitchen/tray, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"rv" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"rw" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"ry" = ( -/obj/structure/largecrate/goat, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"rz" = ( -/obj/structure/fence, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/transformer_barracks) -"rA" = ( -/obj/machinery/griddle, -/turf/open/floor/mainship/floor, -/area/patricks_rest/surface/building/residential_cent) -"rB" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"rC" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"rF" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"rH" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/security_post_cargo) -"rI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"rJ" = ( -/obj/effect/ai_node, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"rL" = ( -/obj/structure/dropship_piece/two/front/left{ - dir = 1 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"rM" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"rN" = ( -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"rP" = ( -/obj/structure/table/gamblingtable, -/obj/item/spacecash/c500, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"rR" = ( -/obj/machinery/computer3/server/rack, -/obj/structure/window{ - dir = 8 - }, -/obj/structure/window{ - dir = 1 - }, -/turf/open/floor/mainship/tcomms, -/area/patricks_rest/surface/building/offices) -"rT" = ( -/obj/structure/flora/desert/grass/heavy, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonynw) -"rU" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonye) -"rW" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonynw) -"rX" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonycent) -"rY" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/ground/colonys) -"rZ" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonye) -"sa" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonye) -"sd" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering/glass, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"se" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"sf" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/ground/colonye) -"sg" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"sh" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/landmark/weed_node, -/obj/structure/window/reinforced/windowstake{ - dir = 1 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"sm" = ( -/turf/closed/mineral/smooth/indestructible, -/area/patricks_rest/ground/colonye) -"sn" = ( -/obj/structure/desertdam/decals/road/line, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonyn) -"so" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"sq" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"sr" = ( -/obj/machinery/computer/crew, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_e) -"su" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"sv" = ( -/obj/structure/prop/mainship/protolathe, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/patricks_rest/surface/building/science) -"sw" = ( -/obj/item/reagent_containers/food/snacks/meatball, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"sy" = ( -/obj/structure/dropship_piece/two/cockpit/left{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"sA" = ( -/obj/machinery/vending/cola, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"sB" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"sD" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"sG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"sH" = ( -/obj/machinery/vending/cola, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"sI" = ( -/obj/structure/largecrate/random/secure, -/obj/machinery/light, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/surface/building/residential_w) -"sJ" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_w) -"sL" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"sM" = ( -/obj/structure/table/mainship, -/obj/item/pizzabox/margherita, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_engi) -"sN" = ( -/turf/closed/mineral/smooth, -/area/patricks_rest/ground/colonyn) -"sO" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"sP" = ( -/obj/structure/largecrate, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"sQ" = ( -/obj/structure/sink, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"sR" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"sS" = ( -/obj/structure/bed/bunkbed, -/obj/machinery/light, -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"sT" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/patricks_rest/surface/building/science) -"sV" = ( -/obj/structure/prop/vehicle/crawler/crawler_blue, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"sW" = ( -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"sX" = ( -/obj/structure/sink{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/mainship/floor, -/area/patricks_rest/surface/building/residential_cent) -"sY" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonye) -"sZ" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/atc) -"ta" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/patricks_rest/surface/building/science) -"tb" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk, -/area/patricks_rest/surface/building/hydro) -"tf" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonynw) -"th" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"tk" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/patricks_rest/ground/colonys) -"tl" = ( -/obj/structure/cable, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"tm" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonynw) -"tn" = ( -/obj/effect/ai_node, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"to" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/ore_storage) -"tq" = ( -/obj/machinery/light, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"tr" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"ts" = ( -/obj/machinery/vending/cola, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"tu" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/residential_engi) -"tv" = ( -/obj/structure/cable, -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"tw" = ( -/turf/open/shuttle/dropship/five, -/area/patricks_rest/surface/landing_pad) -"tx" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"ty" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyw) -"tz" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonys) -"tA" = ( -/obj/machinery/light, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"tC" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"tD" = ( -/obj/structure/table/reinforced, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_containers/food/snacks/soup/meatballsoup, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"tE" = ( -/turf/open/floor/mainship/terragov/north, -/area/patricks_rest/ground/colonys) -"tG" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/atc) -"tH" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"tI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"tJ" = ( -/obj/machinery/vending/snack, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"tK" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/security_post_cargo) -"tL" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/offices) -"tM" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/structure/window/reinforced/windowstake{ - dir = 1 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"tO" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"tP" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/cargo_office) -"tQ" = ( -/obj/structure/table/reinforced, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"tS" = ( -/obj/structure/prop/vehicle/truck/truckcargo, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonynw) -"tT" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"tU" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"tW" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/residential_w) -"tX" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonycent) -"tY" = ( -/obj/machinery/conveyor{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"tZ" = ( -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"ua" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"ub" = ( -/turf/open/shuttle/dropship/three, -/area/patricks_rest/surface/landing_pad) -"uc" = ( -/turf/closed/mineral/smooth, -/area/patricks_rest/ground/underground/cave) -"ud" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/residential_w) -"ue" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"uf" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/storage_depot_research) -"ug" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/offices) -"uh" = ( -/turf/open/floor/plating/dmg2, -/area/patricks_rest/surface/landing_pad) -"ui" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonyw) -"uj" = ( -/obj/structure/table/reinforced/prison, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"uk" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/security, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"ul" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/surface/building/storage_depot_south) -"um" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/ore_storage) -"uo" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"up" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyw) -"uq" = ( -/obj/structure/rock/variable/basalt, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonycent) -"ur" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"us" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/residential_engi) -"ut" = ( -/obj/structure/prop/mainship/sensor_computer2, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"uu" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/transformer_residential) -"uv" = ( -/obj/structure/largecrate/random/case, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"ux" = ( -/obj/structure/largecrate, -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/baggage) -"uy" = ( -/obj/machinery/computer3/server/rack, -/obj/structure/window, -/turf/open/floor/mainship/tcomms, -/area/patricks_rest/surface/building/science) -"uz" = ( -/obj/structure/flora/desert/grass/heavy, -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyne) -"uA" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/residential_cent) -"uB" = ( -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"uD" = ( -/obj/structure/table/reinforced, -/obj/structure/window{ - dir = 8 - }, -/obj/structure/window{ - dir = 4 - }, -/obj/item/tool/kitchen/tray, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"uE" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/patricks_rest/ground/colonyne) -"uF" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/storage_depot_south) -"uG" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonys) -"uJ" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/ore_storage) -"uK" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/cargo_office) -"uL" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/security_post_cargo) -"uM" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonycent) -"uN" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/storage_depot_south) -"uO" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"uP" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/landing_pad_2) -"uQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/offices) -"uR" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/atc) -"uT" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/surface/building/residential_w) -"uU" = ( -/obj/structure/fence, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonys) -"uV" = ( -/obj/machinery/power/geothermal, -/obj/machinery/power/geothermal, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"uW" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"uX" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/science) -"uY" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/ground/colonyne) -"va" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"vc" = ( -/obj/machinery/showcase/mulebot, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"ve" = ( -/obj/structure/dropship_piece/two/front/right{ - dir = 1 - }, -/obj/item/stack/sheet/metal, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"vf" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"vg" = ( -/obj/effect/ai_node, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"vh" = ( -/obj/structure/prop/mainship/sensor_computer2, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"vi" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"vk" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/surface/building/engineering) -"vl" = ( -/obj/structure/sink{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"vn" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"vo" = ( -/obj/structure/table/mainship, -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_residential) -"vp" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"vr" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonys) -"vu" = ( -/obj/structure/prop/vehicle/van{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/engineering) -"vv" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar/stripe, -/obj/structure/prop/mainship/gelida/railbumper{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore_storage) -"vw" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/engineering) -"vx" = ( -/obj/machinery/power/monitor/grid, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"vy" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/surface/building/engineering) -"vA" = ( -/obj/structure/prop/mainship/gelida/propserver, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"vB" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/ground/colonye) -"vD" = ( -/obj/structure/largecrate, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"vF" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonycent) -"vI" = ( -/obj/structure/prop/vehicle/crawler/crawler_fuel, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"vJ" = ( -/obj/structure/cargo_container/gorg, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/residential_cent) -"vL" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"vM" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"vN" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/offices) -"vO" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"vP" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/surface/building/ore_storage) -"vQ" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/surface/building/barracks) -"vR" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/baggage) -"vS" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyw) -"vW" = ( -/obj/structure/prop/mainship/gelida/lightstick, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"vX" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonycent) -"vZ" = ( -/obj/structure/table/mainship, -/obj/structure/window{ - dir = 8 - }, -/obj/machinery/computer/emails, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"wa" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/atmos_alert, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_barracks) -"wb" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"wc" = ( -/obj/structure/table/reinforced, -/obj/machinery/light, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"wd" = ( -/obj/structure/table/mainship, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"we" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyse) -"wf" = ( -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/patricks_rest/surface/building/science) -"wh" = ( -/obj/structure/cable, -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"wj" = ( -/obj/structure/rock/variable/basalt, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyw) -"wk" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/colonycent) -"wl" = ( -/obj/structure/dispenser/phoron, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore) -"wm" = ( -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyw) -"wn" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonys) -"wo" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"wp" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"wr" = ( -/obj/structure/rock/variable/basalt, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyw) -"ws" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"wt" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering/glass, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"wu" = ( -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"wx" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"wz" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonys) -"wA" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonyn) -"wC" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"wD" = ( -/obj/structure/window{ - dir = 8 - }, -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"wE" = ( -/obj/structure/prop/mainship/sensor_computer1, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"wF" = ( -/obj/effect/attach_point/crew_weapon/dropship2, -/turf/open/shuttle/dropship/floor, -/area/patricks_rest/surface/landing_pad) -"wG" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/ore_storage) -"wJ" = ( -/obj/structure/desertdam/decals/road/line, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonycent) -"wK" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"wM" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/residential_engi) -"wN" = ( -/obj/machinery/science/centrifuge, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"wO" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonycent) -"wP" = ( -/obj/structure/closet/firecloset/full, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_residential) -"wQ" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonysw) -"wR" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/engineering) -"wS" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"wT" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"wU" = ( -/obj/effect/ai_node, -/obj/machinery/door/poddoor/mainship/open{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/residential_w) -"wV" = ( -/obj/structure/table/reinforced, -/obj/structure/window{ - dir = 8 - }, -/obj/item/reagent_containers/food/snacks/mre_pack/meal4, -/obj/item/reagent_containers/food/snacks/mre_pack/meal4, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"wW" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"wX" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonynw) -"wY" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"wZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"xb" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"xc" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/command) -"xe" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonysw) -"xh" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"xj" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"xk" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonys) -"xl" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_engi) -"xm" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"xn" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"xp" = ( -/obj/structure/cargo_container/hd_blue{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"xq" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"xr" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/patricks_rest/ground/colonynw) -"xt" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"xu" = ( -/obj/structure/prop/mainship/mapping_computer, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"xv" = ( -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_residential) -"xw" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"xy" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/residential_w) -"xz" = ( -/turf/open/floor/mainship/terragov/north{ - dir = 5 - }, -/area/patricks_rest/ground/colonys) -"xB" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/engineering) -"xC" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone, -/turf/closed/mineral/smooth/indestructible, -/area/patricks_rest/ground/colonyw) -"xE" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 4 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"xF" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonyne) -"xG" = ( -/turf/closed/shuttle/dropship2/engine_sidealt, -/area/patricks_rest/surface/landing_pad) -"xH" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"xI" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"xJ" = ( -/obj/machinery/computer/crew, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/residential_cent) -"xK" = ( -/turf/closed/shuttle/dropship2/walltwo, -/area/patricks_rest/surface/landing_pad) -"xL" = ( -/obj/structure/prop/vehicle/truck{ - dir = 1 - }, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"xM" = ( -/obj/machinery/power/monitor/grid, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_barracks) -"xO" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"xP" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyw) -"xQ" = ( -/turf/closed/shuttle/dropship2/engineone/alt, -/area/patricks_rest/surface/landing_pad) -"xR" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/residential_cent) -"xS" = ( -/obj/structure/bed/chair/sofa/left, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"xU" = ( -/obj/structure/flora/desert/grass/heavy, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/storage_depot_south) -"xV" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/security_post_cargo) -"xX" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/transformer_residential) -"xZ" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/ground/colonysw) -"yc" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/offices) -"yd" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"ye" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/engineering) -"yf" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"yj" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/sterile/purple/side, -/area/patricks_rest/surface/building/science) -"yk" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore_storage) -"yl" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"yn" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"yr" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/baggage) -"yt" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/barracks) -"yu" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/ground/colonycent) -"yv" = ( -/obj/structure/table/mainship, -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_barracks) -"yw" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"yy" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_e) -"yB" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/patricks_rest/surface/building/science) -"yD" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/surface/building/residential_w) -"yE" = ( -/obj/structure/prop/vehicle/crane/cranecargo, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"yF" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"yG" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge, -/area/patricks_rest/ground/colonysw) -"yH" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/residential_cent) -"yI" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonys) -"yK" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"yM" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/storage_depot_south) -"yN" = ( -/turf/open/floor/mainship/floor, -/area/patricks_rest/surface/building/residential_cent) -"yP" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/shuttle/dropship/three, -/area/patricks_rest/surface/landing_pad) -"yQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonynw) -"yR" = ( -/obj/structure/flora/pottedplant/nine, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"yT" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonysw) -"yV" = ( -/obj/machinery/mineral/processing_unit, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"yY" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"yZ" = ( -/obj/structure/largecrate, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/ground/colonyn) -"zb" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/security_post_cargo) -"zc" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"ze" = ( -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"zf" = ( -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"zh" = ( -/obj/structure/table/mainship, -/obj/machinery/light, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"zi" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"zl" = ( -/obj/structure/dropship_piece/two/cockpit/right{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"zo" = ( -/obj/structure/largecrate/random/case/double, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"zp" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"zq" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3/laptop, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"zr" = ( -/turf/closed/shuttle/dropship2/enginethree, -/area/patricks_rest/ground/colonyn) -"zt" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/atc) -"zv" = ( -/obj/structure/fence, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonys) -"zw" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"zy" = ( -/obj/structure/closet/swimsuit, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"zz" = ( -/turf/open/floor/plating/dmg1, -/area/patricks_rest/surface/landing_pad) -"zB" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyn) -"zC" = ( -/turf/closed/mineral/smooth, -/area/patricks_rest/ground/colonyse) -"zE" = ( -/obj/machinery/door/poddoor/mainship/open, -/obj/effect/turf_decal/warning_stripes/stripedsquare, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore) -"zF" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_e) -"zH" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"zI" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/four, -/area/patricks_rest/surface/landing_pad) -"zJ" = ( -/obj/structure/cargo_container/horizontal, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"zK" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/security_post_cargo) -"zL" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"zM" = ( -/obj/structure/largecrate, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/residential_w) -"zN" = ( -/obj/machinery/mineral/stacking_machine, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"zQ" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk, -/area/patricks_rest/surface/building/hydro) -"zR" = ( -/obj/machinery/light, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/hydro) -"zU" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"zV" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonye) -"zW" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"zX" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/ground/colonycent) -"zY" = ( -/obj/machinery/science/isolator, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"zZ" = ( -/obj/structure/table/reinforced, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Aa" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"Ab" = ( -/obj/machinery/light, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"Ad" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/storage_depot_south) -"Ae" = ( -/obj/machinery/vending/cola, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"Ah" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/engineering) -"Ai" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"Aj" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"Ak" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/residential_cent) -"Al" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/transformer_residential) -"Am" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"An" = ( -/obj/structure/bed/chair, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"Ap" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"As" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"At" = ( -/obj/structure/table/reinforced/prison, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"Au" = ( -/obj/structure/desertdam/decals/road/line, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyse) -"Av" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"Aw" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"Ax" = ( -/obj/structure/desertdam/decals/road/line, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyse) -"AA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"AB" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/ground/colonynw) -"AC" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"AD" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonynw) -"AE" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering/glass, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"AF" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/storage_depot_research) -"AG" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/three, -/area/patricks_rest/surface/landing_pad) -"AH" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonysw) -"AJ" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"AK" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"AL" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"AM" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/atc) -"AN" = ( -/obj/structure/bed/chair/sofa/corsat, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"AO" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/residential_cent) -"AQ" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/transformer_barracks) -"AT" = ( -/obj/structure/table/reinforced, -/obj/structure/window{ - dir = 8 - }, -/obj/item/reagent_containers/food/snacks/mre_pack/meal2, -/obj/item/reagent_containers/food/snacks/mre_pack/meal2, -/obj/item/reagent_containers/food/snacks/mre_pack/meal2, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"AU" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"AV" = ( -/obj/structure/window, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"AW" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_barracks) -"AY" = ( -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"AZ" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"Ba" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/security_post_cargo) -"Bb" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/underground/cave) -"Bc" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"Be" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/engineering) -"Bf" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_w) -"Bi" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/patricks_rest/surface/building/residential_w) -"Bj" = ( -/obj/structure/cable, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"Bl" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"Bn" = ( -/obj/machinery/conveyor, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/baggage) -"Bo" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/mainship/mono, -/area/patricks_rest/ground/colonyw) -"Bs" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"Bt" = ( -/obj/structure/curtain/medical, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Bu" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/patricks_rest/ground/colonyn) -"Bv" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3/laptop, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"Bw" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/surface/building/storage_depot_south) -"Bx" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"BA" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonyn) -"BB" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/obj/structure/window{ - dir = 4 - }, -/obj/structure/window, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"BC" = ( -/obj/structure/rack, -/obj/item/stack/sheet/metal/small_stack, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"BD" = ( -/obj/machinery/light, -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"BF" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3, -/obj/structure/window, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"BG" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"BI" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"BJ" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonyne) -"BK" = ( -/obj/machinery/door/airlock/multi_tile/mainship/comdoor/free_access, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"BL" = ( -/obj/structure/bed/chair, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"BM" = ( -/obj/effect/ai_node, -/obj/structure/toilet/alternate{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_engi) -"BN" = ( -/obj/structure/prop/mainship/mapping_computer, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/atc) -"BO" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"BP" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonys) -"BQ" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/ground/colonyw) -"BR" = ( -/obj/machinery/door/window{ - dir = 8 - }, -/obj/machinery/door/window, -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/security_post_cargo) -"BS" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/residential_engi) -"BV" = ( -/obj/structure/rock/variable/basalt, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyse) -"BW" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"BX" = ( -/obj/structure/table/reinforced/prison, -/obj/machinery/light, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"BY" = ( -/obj/machinery/door/airlock/hatch/cockpit/two, -/obj/effect/ai_node, -/turf/open/shuttle/dropship/floor, -/area/patricks_rest/surface/landing_pad) -"BZ" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"Cb" = ( -/obj/structure/window{ - dir = 8 - }, -/obj/machinery/shower, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_w) -"Cc" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"Ce" = ( -/obj/structure/closet/secure_closet/freezer, -/turf/open/floor/freezer, -/area/patricks_rest/surface/building/residential_cent) -"Cf" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/surface/building/residential_e) -"Cg" = ( -/obj/machinery/light, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/engineering) -"Cj" = ( -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"Cn" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/surface/landing_pad) -"Co" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/security_post_cargo) -"Cq" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3/laptop, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_engi) -"Cs" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/medbay) -"Ct" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"Cu" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonye) -"Cx" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/patricks_rest/surface/landing_pad) -"Cy" = ( -/obj/structure/table/mainship, -/obj/machinery/microwave, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"Cz" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"CA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"CC" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/patricks_rest/surface/building/hydro) -"CD" = ( -/obj/machinery/door/poddoor/mainship/open, -/obj/effect/turf_decal/warning_stripes/stripedsquare, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"CE" = ( -/obj/machinery/computer3/server/rack, -/obj/structure/window{ - dir = 8 - }, -/obj/structure/window, -/turf/open/floor/mainship/tcomms, -/area/patricks_rest/surface/building/science) -"CF" = ( -/obj/machinery/computer3/server/rack, -/obj/structure/window{ - dir = 4 - }, -/obj/structure/window, -/turf/open/floor/mainship/tcomms, -/area/patricks_rest/surface/building/offices) -"CG" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonye) -"CI" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/cargo_office) -"CK" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore) -"CL" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/transformer_residential) -"CM" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/patricks_rest/surface/building/science) -"CN" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/command) -"CO" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/ground/colonyw) -"CQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"CR" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyw) -"CS" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonyw) -"CV" = ( -/obj/structure/rock/variable/basalt, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonynw) -"CW" = ( -/obj/machinery/mineral/unloading_machine/corner, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"CX" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonye) -"Da" = ( -/obj/structure/fence, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonys) -"Db" = ( -/obj/machinery/chem_dispenser/beer{ - dir = 4 - }, -/obj/structure/table/reinforced, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"Dc" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"Dd" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/patricks_rest/surface/landing_pad) -"De" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/ground/colonys) -"Di" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"Dk" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/barracks) -"Dl" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/residential_cent) -"Do" = ( -/obj/structure/desertdam/decals/road/stop{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"Dp" = ( -/obj/machinery/sleeper, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Dq" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/residential_w) -"Dr" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonycent) -"Ds" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"Du" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"Dv" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"Dw" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"Dx" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/engineering) -"Dy" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/obj/machinery/light, -/turf/open/floor/mainship/sterile/purple/side, -/area/patricks_rest/surface/building/science) -"Dz" = ( -/obj/structure/prop/vehicle/crawler, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"DA" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/surface/landing_pad) -"DB" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"DC" = ( -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_e) -"DD" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonynw) -"DE" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"DF" = ( -/obj/structure/bed/chair/sofa/corsat, -/obj/machinery/light, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"DH" = ( -/obj/structure/largecrate, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonyn) -"DI" = ( -/obj/structure/rack, -/obj/item/stack/sheet/plasteel/small_stack, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"DJ" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/colonysw) -"DM" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"DN" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/colonyse) -"DO" = ( -/obj/structure/stairs/edge{ - dir = 8 - }, -/turf/open/liquid/water/river, -/area/patricks_rest/surface/building/residential_w) -"DR" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"DT" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/landing_pad) -"DU" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/hydro) -"DW" = ( -/obj/structure/filingcabinet, -/obj/machinery/light, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"DX" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"DY" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/residential_w) -"DZ" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/hydro) -"Eb" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"Ec" = ( -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_w) -"Ed" = ( -/turf/closed/shuttle/dropship2/engineone/alt{ - dir = 4 - }, -/area/patricks_rest/surface/landing_pad) -"Ee" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"Ef" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonycent) -"Eg" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"Eh" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"Ei" = ( -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/river/riverside_south) -"Ek" = ( -/turf/open/floor/plating/ground/concrete/edge, -/area/patricks_rest/ground/colonynw) -"En" = ( -/obj/item/shard, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"Ep" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"Er" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonynw) -"Es" = ( -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyne) -"Et" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"Eu" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"Ev" = ( -/turf/closed/mineral/smooth, -/area/patricks_rest/ground/colonynw) -"Ew" = ( -/turf/closed/mineral/smooth/indestructible, -/area/patricks_rest/ground/colonyn) -"Ex" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"Ez" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/obj/structure/cable, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"EA" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore) -"EC" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/cargo_office) -"ED" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 8 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"EE" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"EG" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"EH" = ( -/obj/machinery/light, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"EI" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"EJ" = ( -/obj/machinery/door/poddoor/mainship/indestructible, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyw) -"EM" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"EN" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/surface/building/residential_w) -"EO" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"EP" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyw) -"EQ" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/ground/colonycent) -"ER" = ( -/obj/structure/sink/bathroom{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"ES" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/storage_depot_south) -"EU" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonycent) -"EV" = ( -/obj/structure/flora/pottedplant/twentyone, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"EW" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"EX" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"EY" = ( -/obj/structure/sink/bathroom{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_e) -"EZ" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"Fa" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/patricks_rest/ground/colonynw) -"Fb" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/floor, -/area/patricks_rest/surface/building/residential_cent) -"Fc" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar/stripe, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"Fd" = ( -/obj/machinery/light, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"Fe" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"Fh" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/ground/colonyse) -"Fj" = ( -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_residential) -"Fk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"Fl" = ( -/obj/structure/table/reinforced/prison, -/obj/item/laptop, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"Fm" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"Fo" = ( -/obj/structure/curtain/open, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"Fp" = ( -/turf/open/floor/mainship/terragov/north{ - dir = 4 - }, -/area/patricks_rest/ground/colonys) -"Fq" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"Fs" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_residential) -"Ft" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"Fv" = ( -/obj/structure/table/reinforced, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"Fw" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"Fy" = ( -/obj/structure/table/reinforced, -/obj/structure/window{ - dir = 8 - }, -/obj/item/reagent_containers/food/snacks/mre_pack/meal6, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"Fz" = ( -/obj/structure/toilet/alternate{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_w) -"FA" = ( -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"FB" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone, -/turf/closed/mineral/smooth, -/area/patricks_rest/ground/colonye) -"FC" = ( -/obj/effect/ai_node, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_e) -"FD" = ( -/obj/structure/table/mainship, -/obj/machinery/light, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"FE" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/security_post_cargo) -"FF" = ( -/obj/machinery/door/airlock/mainship/engineering, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"FG" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"FH" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"FI" = ( -/obj/machinery/telecomms/relay/preset/telecomms, -/turf/closed/mineral/smooth/indestructible, -/area/storage/testroom) -"FJ" = ( -/obj/machinery/gibber, -/turf/open/floor/mainship/floor, -/area/patricks_rest/surface/building/residential_cent) -"FL" = ( -/obj/structure/flora/pottedplant/two, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"FO" = ( -/obj/effect/ai_node, -/obj/machinery/conveyor, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/baggage) -"FP" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge, -/area/patricks_rest/ground/colonyn) -"FR" = ( -/obj/effect/ai_node, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"FS" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/storage_depot_research) -"FT" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_engi) -"FV" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"FW" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/patricks_rest/surface/building/science) -"FX" = ( -/obj/structure/table/reinforced, -/obj/structure/prop/mainship/gelida/register{ - dir = 8 - }, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"Ga" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"Gb" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"Gc" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"Gd" = ( -/obj/structure/prop/mainship/gelida/propserveralt, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/tcomms, -/area/patricks_rest/surface/building/science) -"Gf" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/baggage) -"Gg" = ( -/turf/open/floor/plating, -/area/patricks_rest/surface/landing_pad) -"Gh" = ( -/obj/effect/ai_node, -/obj/structure/prop/mainship/gelida/rails{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/underground/cave) -"Gk" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"Gl" = ( -/obj/structure/table/mainship, -/obj/item/flashlight/lamp, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"Gm" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/structure/window/reinforced/windowstake{ - dir = 1 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"Gn" = ( -/obj/machinery/mineral/stacking_unit_console, -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/ore) -"Go" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"Gp" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonyw) -"Gq" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"Gr" = ( -/obj/structure/platform/rockcliff{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"Gs" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/security_post_cargo) -"Gv" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"Gw" = ( -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"Gx" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"Gz" = ( -/obj/machinery/conveyor, -/obj/structure/largecrate/random/case/double, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/baggage) -"GA" = ( -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"GB" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/patricks_rest/ground/colonyw) -"GD" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"GE" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"GF" = ( -/obj/structure/rack, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"GG" = ( -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"GJ" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"GK" = ( -/obj/effect/turf_decal/warning_stripes/nscenter, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"GL" = ( -/turf/closed/shuttle/dropship2/glassthree, -/area/patricks_rest/surface/landing_pad) -"GM" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonye) -"GQ" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonynw) -"GR" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore_storage) -"GS" = ( -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonysw) -"GT" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_w) -"GU" = ( -/obj/structure/table/mainship, -/obj/machinery/microwave{ - pixel_y = 3 - }, -/obj/machinery/microwave{ - pixel_y = 15 - }, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"GW" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonys) -"GX" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonycent) -"GZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"Ha" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"Hc" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"Hd" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/surface/building/residential_w) -"He" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/residential_engi) -"Hf" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"Hg" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Hh" = ( -/turf/open/floor/mainship/terragov/north{ - dir = 1 - }, -/area/patricks_rest/ground/colonys) -"Hj" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes, -/obj/effect/turf_decal/warning_stripes/nscenter, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"Hk" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonynw) -"Hl" = ( -/obj/machinery/chem_dispenser/soda{ - dir = 4 - }, -/obj/structure/table/reinforced, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"Hm" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer3/server, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"Hn" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"Hp" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Hq" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"Hr" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/transformer_residential) -"Hs" = ( -/obj/structure/rack, -/turf/open/floor/freezer, -/area/patricks_rest/surface/building/residential_cent) -"Hu" = ( -/obj/machinery/computer/body_scanconsole, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"Hw" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Hx" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/surface/building/residential_w) -"Hy" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"HA" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/colony_floodlight_switch{ - pixel_x = 32 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"HB" = ( -/obj/structure/curtain/open, -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/window, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_e) -"HD" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/storage_depot_south) -"HE" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyse) -"HF" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonysw) -"HH" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_engi) -"HI" = ( -/obj/structure/flora/desert/grass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyse) -"HK" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonycent) -"HL" = ( -/turf/closed/shuttle/dropship2/enginethree{ - dir = 4 - }, -/area/patricks_rest/ground/colonyn) -"HM" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"HO" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/ground/colonycent) -"HP" = ( -/obj/machinery/vending/robotics, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"HQ" = ( -/turf/open/floor/mainship/sterile/purple/side, -/area/patricks_rest/surface/building/science) -"HR" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/patricks_rest/ground/colonysw) -"HS" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"HT" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 9 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"HU" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/patricks_rest/ground/colonys) -"HV" = ( -/obj/machinery/mech_bay_recharge_port, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"HW" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/residential_w) -"HX" = ( -/turf/open/liquid/water/river, -/area/patricks_rest/surface/building/residential_w) -"HY" = ( -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"Ia" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"Id" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone, -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/residential_w) -"Ie" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"If" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/surface/building/residential_e) -"Ig" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonyn) -"Ii" = ( -/turf/closed/shuttle/dropship2/glassfour, -/area/patricks_rest/surface/landing_pad) -"Ik" = ( -/obj/structure/bed/bunkbed, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"Il" = ( -/obj/machinery/vending/snack, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"Iq" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/transformer_barracks) -"Ir" = ( -/obj/machinery/vending/snack, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"Is" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 4 - }, -/area/patricks_rest/surface/building/science) -"It" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"Iu" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"Iv" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/ground/colonyse) -"Iw" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/surface/building/residential_w) -"Ix" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/ground/colonyw) -"Iy" = ( -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonycent) -"Iz" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"IA" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/liquid/water/river, -/area/patricks_rest/surface/building/residential_w) -"IC" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/hydro) -"ID" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyw) -"IG" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonysw) -"IH" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyne) -"II" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/residential_cent) -"IJ" = ( -/turf/closed/mineral/smooth, -/area/patricks_rest/ground/colonyw) -"IK" = ( -/obj/machinery/gibber, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"IM" = ( -/obj/structure/desertdam/decals/road/line, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonynw) -"IN" = ( -/obj/effect/turf_decal/riverdecal, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/river/riverside_south) -"IP" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_barracks) -"IQ" = ( -/obj/structure/sink{ - dir = 1 - }, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"IR" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/surface/building/residential_w) -"IT" = ( -/obj/structure/table/mainship, -/obj/structure/paper_bin, -/obj/item/tool/pen, -/obj/item/tool/pen, -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"IU" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"IV" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/floor, -/area/patricks_rest/surface/building/residential_cent) -"IW" = ( -/obj/structure/table/reinforced, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"IX" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonye) -"IZ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/patricks_rest/surface/building/hydro) -"Jb" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"Jc" = ( -/obj/machinery/floodlight/colony, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonye) -"Jd" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/patricks_rest/ground/colonyw) -"Jf" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54" - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonysw) -"Jg" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/hydro) -"Ji" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 8 - }, -/area/patricks_rest/surface/building/science) -"Jj" = ( -/obj/machinery/computer3, -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/atc) -"Jk" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/atc) -"Jm" = ( -/obj/structure/flora/desert/grass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/river/riverside_south) -"Jo" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"Jq" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyse) -"Jr" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"Js" = ( -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/patricks_rest/surface/building/science) -"Jt" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/offices) -"Ju" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/residential_w) -"Jv" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/residential_w) -"Jx" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"Jz" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonye) -"JA" = ( -/turf/closed/shuttle/dropship2/enginetwo{ - dir = 1 - }, -/area/patricks_rest/surface/landing_pad) -"JB" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/transformer_residential) -"JC" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 9 - }, -/obj/structure/prop/mainship/gelida/rails{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"JD" = ( -/obj/structure/largecrate, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"JE" = ( -/obj/effect/ai_node, -/obj/structure/flora/desert/grass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonycent) -"JF" = ( -/obj/structure/cargo_container/hd{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"JG" = ( -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"JH" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/storage_depot_south) -"JK" = ( -/obj/structure/table/mainship, -/obj/machinery/light, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"JL" = ( -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_barracks) -"JM" = ( -/obj/structure/fence, -/obj/structure/fence, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/transformer_residential) -"JN" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/atc) -"JO" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/residential_cent) -"JP" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"JQ" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"JS" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"JV" = ( -/obj/structure/prop/mainship/sensor_computer2, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"JW" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"JX" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"JY" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/multi_tile/mainship/comdoor/free_access, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"JZ" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Ka" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/ground/colonycent) -"Kb" = ( -/obj/structure/dropship_piece/two/corner/rearright{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/landing_pad) -"Kd" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3/laptop, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"Ke" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"Kf" = ( -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"Kg" = ( -/obj/structure/window{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"Kh" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Ki" = ( -/obj/structure/sink/bathroom{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_w) -"Kj" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonycent) -"Kk" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/engineering) -"Kl" = ( -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"Km" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonys) -"Kn" = ( -/obj/structure/displaycase/destroyed, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"Ko" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonye) -"Kp" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"Kq" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore) -"Ks" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"Kt" = ( -/obj/structure/prop/vehicle/crane{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/engineering) -"Ku" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"Kv" = ( -/obj/structure/prop/vehicle/truck, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/ore_storage) -"Kw" = ( -/obj/item/book/manual/engineering_guide, -/obj/structure/table/mainship, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"Kx" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/residential_cent) -"Kz" = ( -/obj/machinery/photocopier, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"KA" = ( -/obj/structure/stairs/seamless/edge{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyn) -"KB" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/residential_w) -"KD" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyw) -"KE" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/transformer_barracks) -"KF" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/surface/landing_pad) -"KG" = ( -/obj/effect/ai_node, -/turf/open/floor/freezer, -/area/patricks_rest/surface/building/residential_cent) -"KH" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonysw) -"KI" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/residential_e) -"KL" = ( -/turf/open/floor/freezer, -/area/patricks_rest/surface/building/residential_cent) -"KM" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"KN" = ( -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"KO" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"KP" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonynw) -"KQ" = ( -/turf/closed/shuttle/dropship2/engine_sidealt{ - dir = 8 - }, -/area/patricks_rest/surface/landing_pad) -"KR" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/surface/building/ore_storage) -"KS" = ( -/turf/closed/shuttle/dropship2/engineone/alt, -/area/patricks_rest/ground/colonyn) -"KU" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/ground/colonycent) -"KV" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonye) -"KW" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/science) -"KX" = ( -/obj/structure/rack, -/obj/item/storage/toolbox, -/obj/item/storage/toolbox, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/patricks_rest/surface/building/science) -"KY" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"KZ" = ( -/obj/structure/window{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"La" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/patricks_rest/ground/colonynw) -"Lc" = ( -/turf/open/liquid/water/river, -/area/patricks_rest/surface/building/hydro) -"Ld" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyw) -"Lg" = ( -/obj/structure/largecrate, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"Lh" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"Lj" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"Lk" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/surface/building/storage_depot_south) -"Ll" = ( -/obj/structure/curtain/medical, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"Lm" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"Ln" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"Lo" = ( -/obj/structure/largecrate/supply/medicine, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Lp" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonyn) -"Lq" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/ground/colonys) -"Lr" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/colonys) -"Ls" = ( -/obj/machinery/door/poddoor/mainship/open, -/obj/effect/turf_decal/warning_stripes/stripedsquare, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"Lv" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyw) -"Lw" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_e) -"Lx" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"Ly" = ( -/obj/machinery/light, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"Lz" = ( -/obj/structure/desertdam/decals/road/line, -/obj/structure/prop/vehicle/truck/truckcargo, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonycent) -"LB" = ( -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"LD" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonye) -"LE" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/ground/colonysw) -"LF" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"LG" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/mainship/mono, -/area/patricks_rest/ground/colonycent) -"LH" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"LI" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonycent) -"LN" = ( -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"LO" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/patricks_rest/ground/colonyse) -"LP" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"LQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/platform/metalplatform, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"LR" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonycent) -"LS" = ( -/obj/machinery/power/geothermal, -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"LU" = ( -/obj/structure/flora/desert/grass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonysw) -"LV" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/residential_w) -"LW" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/storage_depot_south) -"LX" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonynw) -"Md" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/patricks_rest/surface/building/residential_w) -"Me" = ( -/obj/structure/window/framed/mainship/white, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"Mf" = ( -/obj/effect/ai_node, -/obj/machinery/conveyor, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/baggage) -"Mg" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"Mh" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/patricks_rest/ground/colonysw) -"Mi" = ( -/obj/structure/prop/mainship/sensor_computer2, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"Mj" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/surface/building/residential_w) -"Mk" = ( -/obj/structure/table/mainship, -/obj/structure/flora/pottedplant/eleven, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"Ml" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/three, -/area/patricks_rest/surface/landing_pad) -"Mn" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonycent) -"Mo" = ( -/obj/structure/table/mainship, -/obj/structure/window, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"Mp" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonynw) -"Mq" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore) -"Mr" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyne) -"Ms" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"Mu" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonye) -"Mv" = ( -/obj/structure/cargo_container/green{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"Mx" = ( -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/medbay) -"My" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/mainship/sterile/purple/side, -/area/patricks_rest/surface/building/science) -"Mz" = ( -/obj/machinery/computer3/server/rack, -/obj/structure/window{ - dir = 1 - }, -/turf/open/floor/mainship/tcomms, -/area/patricks_rest/surface/building/science) -"MA" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/ground/colonyn) -"MB" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonys) -"MD" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"ME" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonycent) -"MF" = ( -/obj/structure/sink/bathroom{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_e) -"MH" = ( -/obj/structure/prop/mainship/gelida/miner, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"MI" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/science) -"MJ" = ( -/turf/closed/mineral/smooth, -/area/patricks_rest/ground/colonyne) -"MK" = ( -/obj/machinery/mineral/processing_unit_console, -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/ore_storage) -"ML" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"MM" = ( -/obj/structure/table/mainship, -/obj/machinery/light, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"MN" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"MO" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/colonyse) -"MP" = ( -/obj/machinery/vending/marineFood, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"MQ" = ( -/turf/closed/shuttle/dropship2/engineone/alt{ - dir = 8 - }, -/area/patricks_rest/ground/colonyn) -"MR" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"MS" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/ground/colonyn) -"MT" = ( -/obj/structure/table/mainship, -/obj/structure/paper_bin, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"MU" = ( -/obj/machinery/door/window{ - dir = 8 - }, -/obj/machinery/door/window, -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/science) -"MZ" = ( -/obj/structure/cargo_container/hd_blue{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"Nb" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/storage_depot_research) -"Ne" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"Ng" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonynw) -"Nh" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_engi) -"Ni" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonys) -"Nk" = ( -/obj/structure/cable, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"Nl" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"Nm" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"Nn" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"No" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"Np" = ( -/obj/structure/window/framed/mainship, -/obj/structure/platform/metalplatform, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/ore_storage) -"Nq" = ( -/obj/structure/bed/chair/sofa/left{ - dir = 1 - }, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"Ns" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"Nt" = ( -/turf/closed/shuttle/dropship2/enginethree{ - dir = 8 - }, -/area/patricks_rest/ground/colonyn) -"Nx" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/residential_cent) -"Ny" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonyne) -"Nz" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/security_post_cargo) -"NB" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"ND" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/surface/building/residential_w) -"NE" = ( -/obj/item/toy/beach_ball/holoball, -/obj/effect/turf_decal/warning_stripes/nscenter, -/obj/effect/turf_decal/warning_stripes, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"NG" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"NH" = ( -/turf/closed/mineral/smooth, -/area/patricks_rest/surface/building/hydro) -"NJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"NK" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"NL" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/transformer_barracks) -"NN" = ( -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"NO" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"NP" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 1 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonye) -"NQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"NR" = ( -/obj/structure/table/mainship, -/obj/machinery/door/window{ - dir = 2 - }, -/obj/machinery/door/window{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"NS" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"NT" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/surface/building/residential_w) -"NU" = ( -/obj/structure/bed/chair, -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"NV" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"NW" = ( -/obj/structure/flora/desert/grass/heavy, -/obj/effect/ai_node, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonycent) -"NX" = ( -/obj/structure/bed/chair/sofa/right, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"NY" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/eight, -/area/patricks_rest/surface/landing_pad) -"NZ" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 8 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyw) -"Ob" = ( -/turf/open/floor/mainship/tcomms, -/area/patricks_rest/surface/building/science) -"Od" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"Oe" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonycent) -"Of" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/baggage) -"Oh" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"Oi" = ( -/obj/machinery/door/airlock/multi_tile/mainship/secdoor/glass{ - dir = 2 - }, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"Oj" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/residential_cent) -"Ok" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/residential_cent) -"Ol" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/security_post_cargo) -"On" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/transformer_residential) -"Oo" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"Oq" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/landing_pad) -"Or" = ( -/obj/machinery/optable, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Ot" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonyw) -"Ou" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonye) -"Ow" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"Oz" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyw) -"OB" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyn) -"OE" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_e) -"OF" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"OH" = ( -/obj/effect/ai_node, -/obj/structure/prop/mainship/gelida/rails{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"OI" = ( -/obj/machinery/cic_maptable, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"OK" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/hydro) -"OM" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/surface/building/engineering) -"ON" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"OO" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"OP" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"OQ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"OR" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 6 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"OS" = ( -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"OT" = ( -/obj/structure/table/gamblingtable, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"OU" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"OV" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"OW" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"OX" = ( -/obj/structure/prop/vehicle/crawler/crawler_cargo, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"OY" = ( -/turf/open/floor/mainship/terragov/north{ - dir = 6 - }, -/area/patricks_rest/ground/colonys) -"OZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/baggage) -"Pa" = ( -/obj/structure/largecrate, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/patricks_rest/surface/building/storage_depot_south) -"Pc" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"Pd" = ( -/obj/effect/ai_node, -/obj/structure/bed/stool, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"Pe" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/surface/building/barracks) -"Pg" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonycent) -"Pi" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54" - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonycent) -"Pj" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/baggage) -"Pk" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/patricks_rest/ground/colonycent) -"Pl" = ( -/turf/closed/shuttle/dropship2/enginetwo{ - dir = 8 - }, -/area/patricks_rest/surface/landing_pad) -"Pm" = ( -/obj/machinery/floodlight/colony, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyse) -"Po" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/meatball, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"Pp" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"Pq" = ( -/obj/structure/curtain/open, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_w) -"Pr" = ( -/obj/structure/rock/variable/basalt, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonynw) -"Ps" = ( -/obj/machinery/vending/cola, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"Pv" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/residential_e) -"Pw" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/atmos_alert, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_residential) -"Px" = ( -/obj/machinery/door/airlock/mainship/security/glass{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/security_post_cargo) -"Py" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonys) -"Pz" = ( -/obj/structure/curtain/open, -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/window, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_e) -"PA" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 1 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyw) -"PB" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 4 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyw) -"PC" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/offices) -"PD" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"PE" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/command) -"PF" = ( -/turf/closed/mineral/smooth/indestructible, -/area/patricks_rest/ground/colonyne) -"PI" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"PJ" = ( -/obj/effect/ai_node, -/obj/machinery/conveyor, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/baggage) -"PK" = ( -/obj/effect/ai_node, -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyw) -"PL" = ( -/turf/closed/mineral/smooth, -/area/patricks_rest/ground/colonycent) -"PN" = ( -/obj/structure/table/reinforced, -/obj/machinery/science/pathogenic_Isolator, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"PO" = ( -/obj/structure/bed/chair, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"PP" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/surface/building/residential_w) -"PQ" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonys) -"PR" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/ground/colonyse) -"PT" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/storage_depot_research) -"PU" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/residential_cent) -"PV" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"PW" = ( -/obj/structure/table/mainship, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/patricks_rest/surface/building/science) -"PY" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_e) -"Qa" = ( -/obj/structure/closet/fireaxecabinet, -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/transformer_residential) -"Qc" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"Qd" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonysw) -"Qe" = ( -/obj/structure/bed/chair/sofa/corsat, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"Qg" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/colonycent) -"Qj" = ( -/turf/closed/shuttle/dropship2/engineone/alt{ - dir = 1 - }, -/area/patricks_rest/surface/landing_pad) -"Qk" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"Ql" = ( -/obj/machinery/scoreboard{ - id = "lvbasketball"; - pixel_y = 10 - }, -/obj/effect/turf_decal/warning_stripes/nscenter, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"Qm" = ( -/obj/vehicle/train/cargo/engine{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonyn) -"Qn" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore) -"Qq" = ( -/obj/structure/prop/brokenvendor/brokenuniformvendor/specialist, -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"Qr" = ( -/obj/structure/flora/pottedplant/twentyone, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Qs" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"Qt" = ( -/obj/machinery/photocopier, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"Qu" = ( -/obj/effect/ai_node, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"Qv" = ( -/obj/machinery/door/airlock/mainship/security/glass{ - dir = 1 - }, -/turf/open/floor/mainship/red/full, -/area/patricks_rest/surface/building/science) -"Qx" = ( -/obj/structure/rack, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"Qy" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/security_post_cargo) -"Qz" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonycent) -"QA" = ( -/obj/effect/ai_node, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"QB" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/engineering) -"QC" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonyse) -"QD" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/residential_e) -"QE" = ( -/obj/structure/table/mainship, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"QG" = ( -/obj/structure/flora/desert/grass/heavy, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"QH" = ( -/obj/structure/closet/crate/mass_produced_crate/supply, -/obj/machinery/light, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"QI" = ( -/obj/machinery/conveyor, -/obj/item/storage/briefcase, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/baggage) -"QJ" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/patricks_rest/ground/colonysw) -"QK" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/security_post_cargo) -"QL" = ( -/obj/structure/desertdam/decals/road, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/engineering) -"QM" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore) -"QN" = ( -/obj/structure/prop/mainship/sensor_computer1, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"QO" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_barracks) -"QP" = ( -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/patricks_rest/surface/building/science) -"QQ" = ( -/obj/machinery/door/airlock/multi_tile/mainship{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"QR" = ( -/obj/machinery/light, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"QS" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonynw) -"QT" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/medbay) -"QU" = ( -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/atc) -"QW" = ( -/obj/structure/stairs/seamless/edge_vert, -/turf/open/floor/mainship/mono, -/area/patricks_rest/ground/colonye) -"Ra" = ( -/turf/closed/shuttle/dropship2/singlewindow{ - dir = 1 - }, -/area/patricks_rest/surface/landing_pad) -"Rb" = ( -/obj/machinery/vending/engineering, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"Rc" = ( -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"Re" = ( -/obj/structure/girder/displaced, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/medbay) -"Rf" = ( -/obj/structure/prop/mainship/research/circuit_imprinter, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/patricks_rest/surface/building/science) -"Rg" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonysw) -"Rj" = ( -/obj/structure/largecrate, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/storage_depot_south) -"Rk" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/light, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Rl" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"Rm" = ( -/obj/structure/bed/chair/sofa/corsat, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"Rp" = ( -/obj/structure/prop/brokenvendor/brokenuniformvendor, -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"Rr" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyse) -"Rs" = ( -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/security_post_cargo) -"Rt" = ( -/obj/structure/prop/mainship/sensor_computer2, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"Ru" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonyse) -"Rv" = ( -/obj/machinery/conveyor, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/baggage) -"Rw" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Ry" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonye) -"Rz" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"RA" = ( -/obj/machinery/computer3/server/rack, -/obj/structure/window{ - dir = 4 - }, -/obj/structure/window{ - dir = 1 - }, -/turf/open/floor/mainship/tcomms, -/area/patricks_rest/surface/building/offices) -"RB" = ( -/obj/structure/table/reinforced/prison, -/obj/structure/sink{ - dir = 1 - }, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"RC" = ( -/obj/structure/flora/desert/grass/heavy, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonynw) -"RD" = ( -/obj/machinery/door/poddoor/mainship/open, -/obj/effect/turf_decal/warning_stripes/stripedsquare, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/security_post_cargo) -"RE" = ( -/obj/structure/rack, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"RF" = ( -/obj/structure/dropship_piece/two/corner/rearleft{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/landing_pad) -"RG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"RH" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"RJ" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"RK" = ( -/obj/structure/table/reinforced/prison, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"RL" = ( -/obj/structure/closet/crate/mass_produced_crate/supply, -/obj/item/stack/sheet/glass/large_stack, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"RN" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"RO" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyne) -"RP" = ( -/obj/structure/flora/desert/grass/heavy, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/residential_w) -"RQ" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/engineering) -"RR" = ( -/obj/structure/table/reinforced, -/obj/structure/prop/mainship/gelida/register, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"RS" = ( -/obj/machinery/light, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"RT" = ( -/obj/effect/ai_node, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"RX" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/transformer_residential) -"RY" = ( -/obj/structure/bed/bunkbed, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/green/full, -/area/patricks_rest/surface/building/barracks) -"RZ" = ( -/obj/item/storage/donut_box, -/obj/structure/table/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"Sa" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 10 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"Sb" = ( -/obj/machinery/floodlight/landing, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyse) -"Sc" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"Se" = ( -/obj/structure/cargo_container{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/surface/building/residential_w) -"Sh" = ( -/obj/structure/table/reinforced, -/turf/open/floor/mainship/sterile/purple/side, -/area/patricks_rest/surface/building/science) -"Si" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonys) -"Sj" = ( -/obj/machinery/door/airlock/multi_tile/mainship/secdoor{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"Sl" = ( -/turf/closed/mineral/smooth/indestructible, -/area/patricks_rest/ground/colonyw) -"Sm" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"Sn" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"Sp" = ( -/obj/structure/bed/chair/sofa/right{ - dir = 1 - }, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"Sq" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"Ss" = ( -/obj/structure/urinal{ - pixel_x = -18 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/offices) -"St" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 2 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"Su" = ( -/obj/machinery/computer/security/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 4; - name = "Television set"; - network = null; - pixel_y = 4 - }, -/obj/structure/table/mainship, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/residential_cent) -"Sv" = ( -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"Sw" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/surface/building/storage_depot_south) -"Sy" = ( -/obj/vehicle/train/cargo/trolley, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonyn) -"Sz" = ( -/obj/machinery/power/monitor/core, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"SA" = ( -/obj/structure/flora/desert/grass/heavy, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonye) -"SB" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/patricks_rest/surface/landing_pad) -"SC" = ( -/obj/structure/filingcabinet, -/obj/machinery/light, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"SD" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"SG" = ( -/obj/structure/platform/rockcliff{ - dir = 10 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"SH" = ( -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"SJ" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/security/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 4; - name = "Television set"; - network = null; - pixel_y = 4 - }, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"SK" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"SM" = ( -/obj/machinery/vending/security, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"SN" = ( -/obj/structure/dispenser/phoron, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"SO" = ( -/obj/structure/flora/desert/grass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonys) -"SP" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/surface/building/barracks) -"ST" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/colonye) -"SU" = ( -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"SV" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/storage_depot_south) -"SW" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonycent) -"Ta" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"Tf" = ( -/turf/closed/shuttle/dropship2/enginetwo{ - dir = 4 - }, -/area/patricks_rest/surface/landing_pad) -"Tg" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_south) -"Th" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"Ti" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/gloves, -/obj/item/storage/surgical_tray, -/obj/item/reagent_containers/spray/surgery, -/obj/machinery/light, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Tj" = ( -/obj/structure/flora/desert/grass/heavy, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonycent) -"Tk" = ( -/obj/machinery/processor, -/turf/open/floor/mainship/floor, -/area/patricks_rest/surface/building/residential_cent) -"Tl" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"Tm" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/residential_engi) -"Tn" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"Tp" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/medbay) -"Tq" = ( -/turf/open/shuttle/dropship/floor, -/area/patricks_rest/surface/landing_pad) -"Tr" = ( -/obj/structure/prop/vehicle/crane, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_w) -"Tt" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/cargo_office) -"Tu" = ( -/obj/machinery/vending/engineering, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"Tv" = ( -/obj/item/stack/sheet/metal, -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"Tw" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"Tx" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"TA" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/residential_w) -"TB" = ( -/turf/closed/shuttle/dropship2/enginetwo, -/area/patricks_rest/ground/colonyn) -"TC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"TD" = ( -/obj/structure/largecrate/cow, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"TE" = ( -/obj/structure/prop/mainship/mission_planning_system, -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/atc) -"TJ" = ( -/obj/effect/ai_node, -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"TM" = ( -/obj/machinery/iv_drip, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"TN" = ( -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/transformer_residential) -"TO" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"TP" = ( -/obj/effect/turf_decal/arrows, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"TR" = ( -/obj/structure/flora/desert/grass/heavy, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyse) -"TS" = ( -/obj/structure/table/reinforced, -/obj/structure/window{ - dir = 8 - }, -/obj/item/reagent_containers/food/snacks/mre_pack/meal5, -/obj/item/reagent_containers/food/snacks/mre_pack/meal5, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"TU" = ( -/turf/open/floor/plating/ground/concrete/edge, -/area/patricks_rest/ground/colonyw) -"TX" = ( -/obj/structure/table/mainship, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/barracks) -"TY" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"Uc" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"Ud" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyn) -"Ue" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"Ug" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonynw) -"Uh" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/residential_w) -"Ui" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"Uj" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/patricks_rest/ground/colonyn) -"Uk" = ( -/obj/structure/holohoop{ - dir = 4; - id = "lvbasketball"; - side = "left" - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 8 - }, -/obj/effect/turf_decal/warning_stripes, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"Ul" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/transformer_residential) -"Up" = ( -/turf/closed/mineral/smooth, -/area/patricks_rest/ground/colonys) -"Uq" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/ground/colonyne) -"Ur" = ( -/obj/machinery/light, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Ut" = ( -/obj/machinery/power/geothermal, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"Uu" = ( -/obj/structure/prop/mainship/sensor_computer2, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"Uv" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/residential_cent) -"Uw" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/storage_depot_south) -"Ux" = ( -/obj/machinery/door/airlock/multi_tile/mainship/secdoor, -/obj/structure/cable, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"Uy" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad_2) -"Uz" = ( -/obj/structure/table/mainship, -/obj/item/book/manual/atmospipes, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_engi) -"UA" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonyw) -"UB" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"UC" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/underground/cave) -"UE" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 8 - }, -/obj/structure/prop/mainship/gelida/railbumper{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore_storage) -"UF" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54" - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyw) -"UI" = ( -/obj/structure/cargo_container/green, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"UJ" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"UK" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonycent) -"UM" = ( -/obj/structure/table/mainship, -/obj/machinery/computer3/server, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"UN" = ( -/obj/structure/sink{ - dir = 8 - }, -/turf/open/floor/mainship/floor, -/area/patricks_rest/surface/building/residential_cent) -"UO" = ( -/obj/structure/sink{ - dir = 8 - }, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"UP" = ( -/turf/open/floor/plating/ground/concrete/edge, -/area/patricks_rest/ground/colonys) -"UQ" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"UR" = ( -/obj/structure/flora/desert/grass/heavy, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonys) -"US" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/transformer_residential) -"UT" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/engineering) -"UU" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/ore) -"UW" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"UX" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonys) -"UZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"Vb" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/ground/colonys) -"Vc" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"Vd" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#7a8c54" - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"Vf" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"Vh" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/surface/building/residential_w) -"Vk" = ( -/obj/structure/flora/desert/grass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyn) -"Vm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"Vp" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonye) -"Vr" = ( -/obj/structure/displaycase/destroyed, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"Vs" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 9 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyw) -"Vt" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"Vu" = ( -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"Vv" = ( -/turf/closed/mineral/smooth, -/area/patricks_rest/ground/colonye) -"Vw" = ( -/obj/structure/table/reinforced, -/obj/machinery/science/isolation_centerfuge, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/patricks_rest/surface/building/science) -"Vx" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonysw) -"Vy" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonys) -"Vz" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/residential_cent) -"VA" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyw) -"VB" = ( -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/residential_cent) -"VC" = ( -/obj/structure/flora/desert/grass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyw) -"VD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_e) -"VE" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/mainship/sterile/purple, -/area/patricks_rest/surface/building/science) -"VF" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonynw) -"VG" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/ground/colonys) -"VI" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/residential_cent) -"VK" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/patricks_rest/surface/building/science) -"VM" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"VN" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/colonye) -"VO" = ( -/obj/structure/bed, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"VP" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 2 - }, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"VQ" = ( -/obj/structure/table/mainship, -/obj/structure/window{ - dir = 4 - }, -/obj/machinery/computer/emails, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"VR" = ( -/obj/structure/flora/desert/grass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/storage_depot_south) -"VS" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/science) -"VV" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/turf/open/shuttle/dropship/floor, -/area/patricks_rest/surface/landing_pad) -"VW" = ( -/obj/structure/flora/desert/grass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonynw) -"VX" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/patricks_rest/surface/building/science) -"VY" = ( -/obj/machinery/door/poddoor/timed_late/containment/landing_zone, -/turf/closed/mineral/smooth, -/area/patricks_rest/ground/colonys) -"VZ" = ( -/obj/structure/largecrate/random/case/small, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"Wa" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"Wb" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/residential_w) -"Wd" = ( -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"Wg" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonys) -"Wh" = ( -/obj/structure/prop/oresilo, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"Wi" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/transformer_barracks) -"Wk" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyw) -"Wl" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"Wm" = ( -/obj/machinery/mineral/stacking_machine, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"Wn" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/colonyn) -"Wp" = ( -/obj/structure/bed/chair/dropship/passenger, -/turf/open/shuttle/dropship/floor, -/area/patricks_rest/surface/landing_pad) -"Wr" = ( -/obj/structure/rock/variable/basalt, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonysw) -"Wu" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore) -"Wv" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/machinery/reagentgrinder, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"Ww" = ( -/obj/structure/largecrate, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"Wx" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/underground/cave) -"Wz" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/obj/structure/window{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"WA" = ( -/obj/structure/toilet/alternate{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/offices) -"WB" = ( -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/patricks_rest/surface/building/science) -"WE" = ( -/obj/effect/decal/cleanable/blood/writing{ - desc = "It looks like a writing in blood. It says, 'The gates of Hel are open when this armory is opened.'"; - dir = 4 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/medbay) -"WF" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_e) -"WG" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/command) -"WH" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/barracks) -"WI" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"WJ" = ( -/obj/structure/table/mainship, -/turf/open/floor/mainship/red, -/area/patricks_rest/surface/building/science) -"WK" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/science) -"WM" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/barracks) -"WN" = ( -/obj/structure/prop/mainship/mapping_computer, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"WO" = ( -/obj/structure/curtain/open, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_e) -"WP" = ( -/obj/structure/largecrate, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/patricks_rest/surface/building/residential_w) -"WR" = ( -/obj/item/bedsheet/medical, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"WS" = ( -/obj/structure/bed/chair/office/dark, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"WT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"WU" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"WV" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/security_post_cargo) -"WW" = ( -/obj/structure/prop/vehicle/truck/truckcargo, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonycent) -"WX" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"WY" = ( -/obj/machinery/computer/sleep_console, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Xa" = ( -/obj/effect/ai_node, -/obj/structure/table/mainship, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"Xb" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/hydro) -"Xc" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"Xd" = ( -/obj/item/spacecash/c500, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"Xe" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/yellow/full, -/area/patricks_rest/surface/building/residential_w) -"Xi" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/patricks_rest/ground/colonyn) -"Xj" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 8 - }, -/obj/structure/prop/mainship/gelida/railbumper{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"Xk" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonyn) -"Xm" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"Xn" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"Xo" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/residential_w) -"Xp" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/patricks_rest/ground/colonysw) -"Xq" = ( -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/offices) -"Xs" = ( -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/residential_e) -"Xt" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"Xu" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/surface/building/barracks) -"Xw" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"Xx" = ( -/obj/structure/table/mainship, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_e) -"Xy" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/residential_e) -"Xz" = ( -/obj/structure/rack, -/obj/item/cell/high, -/obj/item/cell/high, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/transformer_barracks) -"XB" = ( -/obj/structure/bed/bunkbed, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_e) -"XC" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/surface/building/science) -"XD" = ( -/obj/machinery/vending/cola, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"XE" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"XG" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/colonyn) -"XI" = ( -/obj/structure/largecrate, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/surface/building/residential_w) -"XJ" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"XK" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/baggage) -"XM" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_cent) -"XO" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"XP" = ( -/turf/closed/shuttle/dropship2/enginetwo, -/area/patricks_rest/surface/landing_pad) -"XQ" = ( -/obj/effect/ai_node, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/cargo_office) -"XR" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/transformer_residential) -"XT" = ( -/obj/structure/flora/desert/grass/heavy, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonysw) -"XU" = ( -/obj/effect/ai_node, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonyn) -"XV" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/landing_pad) -"XX" = ( -/obj/item/book/manual/engineering_construction, -/obj/structure/table/mainship, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"XY" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 6 - }, -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/ground/colonyn) -"XZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"Ya" = ( -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"Yb" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/barracks) -"Yd" = ( -/obj/structure/flora/pottedplant/twentyone, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"Yf" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/window, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"Yg" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/patricks_rest/surface/building/medbay) -"Yh" = ( -/obj/machinery/light, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"Yk" = ( -/obj/structure/cable, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"Ym" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/patricks_rest/ground/colonyne) -"Yn" = ( -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 1 - }, -/area/patricks_rest/surface/building/science) -"Yo" = ( -/obj/structure/window/framed/mainship/white, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Yp" = ( -/obj/structure/closet/fireaxecabinet, -/turf/closed/wall/mainship, -/area/patricks_rest/surface/building/residential_engi) -"Yq" = ( -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyw) -"Yr" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"Ys" = ( -/obj/structure/flora/desert/grass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyne) -"Yt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/transformer_barracks) -"Yu" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/mainship/mono, -/area/patricks_rest/ground/colonyw) -"Yv" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/surface/building/security_post_cargo) -"Yw" = ( -/turf/closed/mineral/smooth/indestructible, -/area/patricks_rest/ground/colonyse) -"Yy" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/patricks_rest/ground/colonyse) -"Yz" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/surface/building/storage_depot_research) -"YB" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"YC" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/surface/building/security_post_cargo) -"YD" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/transformer_residential) -"YE" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/security_post_cargo) -"YJ" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"YK" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/residential_cent) -"YL" = ( -/obj/structure/bed/chair/sofa/corsat, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"YM" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"YN" = ( -/obj/machinery/light, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"YO" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_engi) -"YR" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"YS" = ( -/turf/open/floor/mainship/terragov/north{ - dir = 8 - }, -/area/patricks_rest/ground/colonys) -"YT" = ( -/obj/structure/table/mainship, -/obj/machinery/microwave, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_engi) -"YV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"YW" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/freezer, -/area/patricks_rest/surface/building/residential_cent) -"YY" = ( -/obj/structure/table/reinforced, -/obj/structure/window{ - dir = 8 - }, -/obj/item/tool/kitchen/tray, -/turf/open/floor/grayscale/black, -/area/patricks_rest/surface/building/residential_cent) -"YZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_e) -"Za" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/ground/colonysw) -"Zb" = ( -/obj/structure/cable, -/turf/open/floor/prison/darkpurple/full, -/area/patricks_rest/surface/building/residential_e) -"Zc" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/flora/desert/grass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/surface/building/residential_w) -"Zd" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonynw) -"Zg" = ( -/obj/structure/largecrate, -/obj/machinery/light, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"Zh" = ( -/obj/machinery/vending/engineering, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"Zk" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 1 - }, -/turf/open/floor/wood, -/area/patricks_rest/surface/building/residential_w) -"Zl" = ( -/obj/structure/flora/desert/grass/heavy, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyne) -"Zm" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/prison/red/full, -/area/patricks_rest/surface/building/security_post_cargo) -"Zn" = ( -/obj/machinery/power/apc/drained, -/obj/structure/cable, -/turf/open/floor/prison/blue/plate{ - dir = 1 - }, -/area/patricks_rest/surface/building/command) -"Zo" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"Zp" = ( -/turf/open/floor/plating/ground/mars/random/sand, -/area/patricks_rest/surface/building/offices) -"Zq" = ( -/obj/machinery/cic_maptable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"Zr" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/patricks_rest/ground/colonyn) -"Zs" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/sterilewhite, -/area/patricks_rest/surface/building/residential_cent) -"Zt" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/patricks_rest/ground/colonye) -"Zu" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/hydro) -"Zv" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/patricks_rest/ground/colonysw) -"Zw" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/ore_storage) -"Zy" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"Zz" = ( -/obj/item/defibrillator, -/obj/item/defibrillator, -/obj/machinery/recharger, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/structure/rack, -/turf/open/floor/mainship/sterile, -/area/patricks_rest/surface/building/medbay) -"ZA" = ( -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyne) -"ZB" = ( -/obj/machinery/floodlight/colony, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyw) -"ZC" = ( -/obj/structure/closet/crate/miningcar, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/patricks_rest/ground/underground/cave) -"ZE" = ( -/obj/machinery/power/port_gen/pacman, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/hydro) -"ZF" = ( -/turf/closed/shuttle/dropship2/enginethree{ - dir = 1 - }, -/area/patricks_rest/surface/landing_pad) -"ZG" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt/cement, -/area/patricks_rest/surface/building/cargo_office) -"ZH" = ( -/obj/machinery/door/poddoor/mainship/open, -/obj/effect/turf_decal/warning_stripes/stripedsquare, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/residential_w) -"ZI" = ( -/obj/structure/table/mainship, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/engineering) -"ZJ" = ( -/obj/structure/kitchenspike, -/obj/machinery/light, -/turf/open/floor/freezer, -/area/patricks_rest/surface/building/residential_cent) -"ZL" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/residential_engi) -"ZM" = ( -/obj/structure/flora/desert/grass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonye) -"ZO" = ( -/obj/structure/flora/desert/grass/heavy, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonyw) -"ZP" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/command) -"ZQ" = ( -/obj/structure/window{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/offices) -"ZR" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 10 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonynw) -"ZS" = ( -/obj/effect/ai_node, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/patricks_rest/ground/colonyne) -"ZT" = ( -/obj/machinery/computer3, -/obj/structure/table/mainship, -/turf/open/floor/prison/darkyellow/full, -/area/patricks_rest/surface/building/cargo_office) -"ZU" = ( -/obj/structure/cargo_container/hd{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/patricks_rest/ground/colonyn) -"ZV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown/full, -/area/patricks_rest/surface/building/ore_storage) -"ZW" = ( -/obj/machinery/vending/cola, -/turf/open/floor/prison/whitegreenfull2, -/area/patricks_rest/surface/building/offices) -"ZX" = ( -/obj/structure/largecrate/random/case/double, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/patricks_rest/surface/building/storage_depot_research) -"ZY" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#7a8c54"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonycent) -"ZZ" = ( -/obj/structure/flora/desert/grass, -/turf/open/ground/grass/weedable/patch/grassyellow, -/area/patricks_rest/ground/colonycent) - -(1,1,1) = {" -jo -jo -jo -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -xC -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -Sl -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -aY -"} -(2,1,1) = {" -jo -FI -jo -Ev -Ev -Ev -Ev -Ev -Ev -RC -KP -KP -OK -OK -OK -OK -OK -OK -OK -OK -OK -OK -OK -OK -OK -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -EJ -EJ -EJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(3,1,1) = {" -jo -jo -jo -Ev -Ev -Ev -Ev -Ev -Ev -KP -VW -zR -OK -Sz -rN -Eh -OK -pi -pi -pi -rN -eZ -XX -Kw -OK -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -IJ -IJ -IJ -IJ -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -IJ -IJ -IJ -Ot -ID -qo -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(4,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -RC -ZR -GQ -KP -KP -DU -AE -rN -sg -rN -mY -tb -tb -tb -rN -aS -aS -au -OK -NH -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -IJ -IJ -IJ -bL -vw -or -NN -NN -Ui -hS -vw -iM -vu -QL -vw -dN -QL -Ah -Kt -vw -vw -IJ -IJ -Ot -ID -qo -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(5,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -RC -qZ -KP -KP -KP -DU -sg -rN -da -by -by -by -by -by -by -qk -xH -by -ep -Jg -ix -no -Ev -Ev -Ev -Ev -Ev -Ev -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -GF -NN -Vu -NN -jl -hS -vw -QL -Ah -QL -vw -Ah -QL -Ah -Ah -Ah -vw -IJ -IJ -Ot -ID -qo -IJ -IJ -IJ -IJ -IJ -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(6,1,1) = {" -cu -KP -KP -RC -KP -KP -KP -KP -KP -KP -RC -zR -OK -ZE -sg -by -HA -zQ -zQ -zQ -rN -sg -sg -rN -sg -DZ -ix -tf -Ev -Ev -Ev -Ev -Ev -Ev -vw -xw -NN -TY -NN -NN -NN -Ap -iJ -xh -gS -Rt -LH -NN -NN -TY -NN -sd -NN -Vu -Vu -EH -vw -vw -vw -oC -gt -oC -vw -fh -oC -gt -gt -eb -vw -wR -up -Ot -ID -qo -IJ -IJ -IJ -IJ -IJ -Xs -qh -mw -nz -Xs -FV -Ku -FV -Xs -qh -mw -nz -Xs -FV -FV -lM -lM -pS -Xs -MF -EY -DC -Xs -cQ -Pz -cQ -pI -Xs -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(7,1,1) = {" -cu -ao -ao -ao -KP -KP -AD -IN -ao -ao -ao -ao -OK -Ex -rN -by -OK -pi -pi -pi -rN -rN -SK -hC -OK -IC -ix -tf -AD -Ev -Ev -Ev -Ev -vw -vw -Sn -Vu -Vu -Vu -Vu -Vu -Vu -Vu -Fe -gS -xw -cN -Vu -Lx -Vu -NN -Vu -NN -Vu -Lx -NN -NN -PI -gS -vk -dg -dg -dg -dg -Be -dg -dg -dg -dg -dg -ui -Jd -Ld -qo -up -IJ -IJ -IJ -IJ -Xs -vf -yy -XB -Xs -lq -VD -FV -Xs -vf -yy -XB -Xs -UQ -Lw -mw -yy -OS -WF -DC -Xy -DC -DC -DC -DC -DC -DC -Xs -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(8,1,1) = {" -cu -ao -ao -ao -ao -jm -gC -IN -ao -ao -ao -ao -OK -dX -sg -gm -OK -OK -OK -OK -wT -rN -OK -OK -OK -KP -ix -tf -KP -VW -AD -AD -AD -gS -od -NJ -Vu -Vu -MD -MD -wd -Vu -Vu -NN -wt -NN -Vu -Lx -Vu -Vu -NN -vw -Sn -cN -Vu -Vu -Vu -JS -gS -OM -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Ah -ID -ID -ID -qo -up -iy -iy -IJ -IJ -Xs -Xs -fH -Xs -Xs -OS -mw -OS -Xs -Xs -fH -Xs -Xs -FV -mw -mw -mw -OS -Xs -zF -Xs -zF -Xs -DC -DC -DC -DC -Xs -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(9,1,1) = {" -cu -ao -ao -ao -ao -jm -gC -gC -ao -ao -ao -ao -OK -CC -by -xH -xH -LS -et -Lc -eP -rN -fs -KP -KP -VW -ix -tf -tf -tf -tf -tf -tf -gS -vx -NJ -Vu -Vu -MD -MD -ZI -dB -dB -KM -KM -KM -dB -Vu -Vu -Vu -kS -gS -hS -Vu -Vu -Vu -Vu -JS -vw -vy -qI -qI -qI -qI -qI -qI -qI -qI -qI -qI -Gp -jp -ID -qo -up -ZO -iy -IJ -IJ -Xs -OS -yy -mw -mw -yy -mw -mw -mw -mw -yy -mw -pg -mw -mw -mw -yy -hl -Xs -eu -Xs -eu -Xs -HB -pu -HB -WO -Xs -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(10,1,1) = {" -cu -ao -ao -ao -ao -hh -hh -gC -gC -ao -ao -ao -ao -de -by -sg -sg -jR -Lc -Lc -de -rN -fB -ao -ao -KP -ix -qO -ix -ix -ix -ix -no -vw -vw -wE -Vu -Vu -Vu -Vu -dB -Vu -oI -hS -gS -hS -sB -Vu -Vu -Vu -kS -gS -od -cN -Vu -Vu -Vu -NN -wt -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Ah -vw -wR -up -Ot -ID -qo -up -Yq -iy -IJ -IJ -Xs -OS -Xm -OS -OS -zW -gd -AL -OS -OS -Xm -OS -OS -OS -OS -mw -mw -hu -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(11,1,1) = {" -cu -ao -ao -ao -ao -hh -jm -jm -gC -ao -ao -ao -ao -de -by -sg -sg -jR -Lc -Lc -de -rN -fB -ao -ao -KP -KP -KP -RC -KP -Pr -ix -tf -KP -vw -ut -or -or -NN -iu -KM -NN -Nl -hS -gS -od -iA -NN -NN -iu -kS -vw -NN -NN -em -NN -iu -em -NN -Ah -Ah -iI -RQ -Ah -RQ -Ah -iI -vw -vw -iy -up -Ot -ID -qo -up -Yq -iy -IJ -IJ -Xs -Xs -Xs -Xs -OE -OE -Xs -Xs -Xs -Xs -Xs -Xs -Xs -Xs -FV -mw -mw -mW -Xs -EE -EE -EE -EE -Xs -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(12,1,1) = {" -cu -ao -ao -ao -ao -IN -gC -hh -ao -ao -ao -ao -OK -IZ -aJ -xH -xH -Ut -eN -Lc -eP -rN -fC -ao -ao -ao -ll -RC -KP -KP -KP -ix -tf -KP -vw -vw -vw -vw -vw -vw -KM -UT -vw -vw -vw -vw -vw -Vu -wb -vw -vw -vw -vw -vw -vw -vw -vw -FF -vw -vw -vw -vw -gS -gS -vw -vw -vw -vw -iy -iy -up -Ot -ID -qo -up -Yq -Yq -wr -Yq -iy -ak -up -BQ -ui -Qd -Qd -LE -Xs -zW -AL -zW -AL -Xs -ce -bM -mw -OS -Wa -OS -mw -mw -mW -Xs -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(13,1,1) = {" -cu -ao -ao -ao -ao -IN -IN -hh -ao -ao -ao -ao -OK -IZ -by -xH -xH -uV -et -Lc -eP -MR -fC -ao -ao -ao -ao -KP -KP -RC -Pr -ix -tf -RC -KP -Cg -vw -NN -NN -TY -KM -NN -TY -NN -vw -NN -NN -NN -NN -NN -NN -NN -NN -NN -NN -NN -vw -NN -NN -NN -vw -Vu -zc -MD -vw -iy -wr -Yq -iy -iy -up -Ot -ID -qo -up -Yq -Yq -Yq -Yq -Yq -wr -up -Ot -ID -bt -bt -If -Xs -iQ -mw -mw -OS -Xs -Fm -YZ -yy -OS -OS -OS -yy -mw -OS -Xs -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(14,1,1) = {" -cu -ao -ao -ao -ao -AD -AD -AD -AD -AD -ao -ao -ao -de -by -sg -sg -jR -Lc -Lc -de -rN -fB -ao -ao -ao -ao -ao -AD -KP -KP -ix -no -tf -tf -Dx -wt -NN -Vu -Vu -uW -Vu -Vu -NN -NN -NN -Vu -Vu -Lx -Vu -Vu -Vu -Vu -Vu -Lx -NN -vw -NN -Vu -NN -vw -Vu -pG -jP -vw -iy -Yq -ZO -Yq -iy -up -Ot -ID -qo -up -Yq -Yq -Yq -Yq -Yq -iy -up -Ot -ID -mu -bt -Cf -Wa -OS -Xx -mw -mW -Xs -LB -bM -mw -mW -Xs -EE -EE -EE -EE -Xs -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(15,1,1) = {" -cu -AD -AD -AD -AD -AD -AD -AD -AD -AD -KP -ao -ao -de -by -sg -sg -jR -Lc -Lc -de -rN -fB -ao -ao -ao -ao -ao -AD -AD -KP -ix -ix -ix -ix -Kk -KM -KM -dB -dB -dB -dB -dB -KM -KM -KM -dB -dB -dB -dB -dB -dB -dB -dB -dB -NN -vw -em -Vu -NN -Vu -Vu -Lx -Vu -vw -IJ -PB -kL -Yq -Yq -up -Ot -ID -qo -lA -Yq -VC -Yq -Yq -Yq -Yq -up -Ot -ID -bt -mu -Cf -OS -OS -PY -FC -OS -Wa -OS -bM -yy -OS -Xs -Xs -Xs -Xs -Xs -Xs -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(16,1,1) = {" -cu -AD -AD -AD -AD -AD -AD -AD -AD -AD -KP -KP -AB -CC -by -xH -xH -LS -eN -Lc -eP -rN -LQ -ao -ao -ao -ao -ao -ao -KP -KP -KP -KP -AD -AD -xB -vw -NN -NN -iu -NN -NN -NN -NN -vw -NN -NN -NN -NN -Vu -Mg -ho -pz -HP -dB -NN -vw -NN -Vu -NN -vw -vw -vw -vw -vw -IJ -IJ -gO -kL -wj -up -Ot -ID -qo -up -up -up -up -up -up -up -up -Ot -mz -nN -nN -If -Xs -iQ -sr -mw -OS -OS -OS -bM -mw -mW -Xs -EE -EE -EE -EE -Xs -QD -qR -qR -qR -qR -qR -qR -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(17,1,1) = {" -cu -Ev -Ev -AD -AD -AD -AD -AD -OK -OK -OK -OK -OK -dX -xH -eW -OK -OK -OK -OK -aE -rN -OK -OK -ao -ao -ao -ao -ao -KP -KP -RC -KP -AD -vw -vw -vw -vw -vw -vw -NN -UT -vw -vw -vw -vw -vw -vw -gE -Vu -vw -vw -vw -vw -dB -NN -vw -oU -Vu -NN -vw -hS -hS -hS -vw -IJ -IJ -IJ -IJ -Yq -up -Ot -ID -GB -ui -ui -ui -ui -ui -ui -ui -ui -Jd -ID -bt -bt -Cf -Xs -OS -mw -mw -mW -Xs -oF -bM -yy -OS -Wa -OS -yy -mw -OS -OE -Pv -qR -qR -qR -qR -qR -Vx -Vx -Vx -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(18,1,1) = {" -cu -Ev -Ev -AD -AD -AD -KP -QS -OK -fl -rN -rN -SN -Cj -by -rN -yF -ws -ws -OK -rN -UW -eZ -OK -ao -ao -ao -ao -ao -ao -ao -KP -AD -AD -vw -oa -NJ -NN -Fe -zo -NN -NN -vw -hS -JS -pF -pq -vw -Qe -Vu -Vu -Vu -Vu -Vu -dB -KM -nt -KM -dB -KM -NN -NN -NN -gE -vw -IJ -IJ -IJ -IJ -IJ -up -Ot -ID -ID -ID -ID -ID -ID -ID -ID -ID -ID -ID -ID -bt -bt -DJ -Xs -OS -mw -mw -OS -Xs -sA -bM -mw -OS -OS -OS -mw -mw -mW -Xs -QD -qR -qR -qR -Vx -Vx -LU -Vx -XT -qR -qR -qR -ai -ai -ai -qR -qR -Vx -ai -ai -ai -ai -ai -ai -ai -ai -aY -"} -(19,1,1) = {" -cu -Ev -Ev -AD -om -LX -KP -KP -OK -Ae -rN -sg -sg -NQ -xH -sg -sg -An -MM -OK -ag -sg -pK -OK -ao -ao -ao -ao -ao -ao -ao -KP -AD -vw -vw -od -Vu -Vu -Aj -Vu -Vu -NN -vw -sQ -Vu -Lx -NN -gS -nw -Vu -Vu -NN -NN -NN -Lx -NN -Vu -em -Vu -uW -Vu -Vu -Vu -AN -vw -IJ -IJ -IJ -IJ -IJ -up -Ot -ID -lj -Gp -Gp -Gp -ec -Gp -Gp -Gp -Gp -Gp -Gp -Mh -mu -DJ -Xs -zW -AL -zW -AL -Xs -ri -Zb -OS -mW -Xs -EE -EE -EE -EE -Xs -Pv -qR -qR -qR -Vx -XT -Vx -Vx -Vx -qR -qR -qR -qR -ai -qR -qR -Vx -Vx -XT -XT -ai -ai -ai -ai -ai -ai -aY -"} -(20,1,1) = {" -cu -Ev -Ev -Ev -Ev -Hk -dI -KP -OK -OK -ke -xH -xH -xH -qk -sg -sg -sg -rN -rM -rN -da -EG -OK -ao -ao -ao -ao -ao -ao -ao -RC -AD -gS -od -NJ -Vu -Vu -Vu -Vu -Vu -NN -NN -NN -Vu -Vu -NN -vw -NN -gB -sH -dU -vw -Ir -lx -Rb -vw -NN -NN -KM -Vu -NN -iu -Iz -vw -IJ -IJ -IJ -Yq -wj -up -Ot -Ld -qo -up -up -up -up -up -up -up -up -up -up -Zv -bt -DJ -Xs -Xs -Xs -OE -OE -Xs -Xs -Zb -VP -Xs -Xs -Xs -Xs -Xs -Xs -Xs -wQ -fV -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -fV -wQ -wQ -wQ -wQ -wQ -wQ -wQ -ai -ai -ai -ai -aY -"} -(21,1,1) = {" -cu -Ev -Ev -Ev -Ev -Hk -qy -KP -OK -Zh -rN -by -rN -rN -rN -rN -rN -rN -rN -sg -rN -sg -OK -OK -ao -ao -ao -ao -ao -ao -ao -KP -KP -gS -vx -NJ -Vu -Vu -Vu -NN -QA -NN -Vu -Vu -Vu -em -NN -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -KM -Vu -NN -vw -vw -vw -IJ -IJ -ZO -Yq -Yq -up -Ot -ID -qo -up -Yq -IJ -IJ -IJ -Yq -Yq -ZO -up -up -Zv -bt -Xp -Qd -Qd -Qd -Qd -Qd -bR -KI -ox -bR -KI -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -LE -wQ -ai -ai -ai -ai -aY -"} -(22,1,1) = {" -cu -Ev -Ev -Ev -Ev -Hk -iH -KP -OK -cr -sg -by -OK -OK -ov -OK -OK -fe -bb -OK -aE -rN -rN -OK -ao -ao -ao -ao -ao -ao -ao -RC -KP -vw -vw -bw -Vu -Vu -Vu -or -vw -xu -cN -Vu -oI -hS -vw -vw -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -IJ -vw -KM -NN -NN -vw -IJ -IJ -IJ -ZO -Yq -Yq -Yq -up -Ot -ID -qo -up -Yq -IJ -IJ -IJ -wj -ZO -Yq -up -up -Zv -mu -bt -bt -bt -bt -bt -mu -Ak -Ak -AO -bI -Ak -bt -bt -bt -mu -bt -bt -bt -bt -bt -mu -bt -bt -bt -bt -bt -bt -bt -bt -bt -mu -bt -bt -bt -bt -bt -mu -DJ -wQ -ai -ai -ai -ai -aY -"} -(23,1,1) = {" -cu -Ev -Ev -Ev -Ev -Hk -Ug -KP -OK -rN -sg -by -NR -Bc -sg -sg -OK -Fq -Vt -OK -OK -rN -rN -OK -ao -ao -ao -ao -ao -ao -ao -KP -KP -AD -vw -Mi -NJ -NN -or -or -vw -bw -NN -Gw -od -hS -vw -Ev -IJ -IJ -IJ -IJ -IJ -iy -iy -IJ -IJ -IJ -BS -Yk -hF -KN -BS -IJ -IJ -Yq -wj -Yq -Yq -Yq -up -Ot -ID -qo -up -IJ -IJ -IJ -IJ -iy -Yq -ZO -up -up -Za -hn -hn -hn -nG -VI -Ok -VI -VI -aL -Uv -VI -nG -hn -hn -hn -hn -hn -hn -hn -hn -hn -hn -hn -hn -hn -hn -hn -hn -hn -hn -hn -hn -hn -hn -hn -hn -Mh -bt -DJ -wQ -ai -ai -ai -ai -aY -"} -(24,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ug -AD -KP -OK -rN -sg -by -tO -sg -sg -Wl -OK -YJ -rv -OK -NH -sg -Zu -OK -ao -ao -ao -ao -ao -ao -ao -KP -KP -AD -vw -vw -vw -vw -vw -vw -vw -vw -vw -vw -gS -gS -vw -Ev -IJ -ZB -ZO -Yq -Yq -iy -iy -IJ -IJ -IJ -BS -Fk -hF -aO -BS -IJ -IJ -Yq -Yq -Yq -ZO -Yq -up -Ot -ID -qo -up -IJ -IJ -IJ -IJ -iy -iy -Yq -up -up -wQ -wQ -wQ -Nx -Nx -qb -Xt -Xt -Nx -Nx -oo -sq -Nx -Nx -Nx -Nx -Nx -Nx -Nx -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -Zv -bt -DJ -wQ -ai -ai -ai -ai -aY -"} -(25,1,1) = {" -cu -Ev -Ev -KP -KP -AD -AD -AD -OK -gw -rN -by -OK -sg -cE -cE -OK -dF -Fq -OK -nk -ia -DU -cV -KP -KP -ao -ao -ao -ao -ao -KP -qZ -RC -KP -qZ -Ev -Ev -Ev -Ev -Ev -Ev -Ev -QB -ye -ye -QB -KP -Yq -Yq -Yq -Yq -iy -iy -iy -IJ -IJ -IJ -BS -Yk -hF -KN -BS -IJ -IJ -Yq -Yq -Yq -VC -Yq -up -Ot -ID -qo -up -IJ -IJ -IJ -IJ -ZO -ZO -Yq -up -up -wQ -wQ -wQ -Nx -xJ -YK -VB -pM -Nx -Ee -tl -Ya -Ya -Nx -Ce -Hs -Hs -Hs -Nx -Vx -Vx -Vx -LU -XT -Vx -LU -ai -ai -ai -Vx -Vx -Vx -LU -Vx -ai -qR -wQ -Zv -bt -DJ -wQ -ai -ai -ai -ai -aY -"} -(26,1,1) = {" -cu -Ev -Ev -AD -KP -KP -AD -AD -OK -OK -sg -jZ -OK -OK -OK -OK -OK -OK -OK -OK -Ev -AD -AD -KP -KP -KP -ao -ao -ao -ao -ao -ao -KP -KP -KP -KP -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -AD -QS -KP -KP -Yq -Yq -iy -iy -iy -iy -iy -IJ -IJ -IJ -BS -Yk -hF -KN -BS -IJ -IJ -IJ -Yq -iy -iy -Yq -up -Ot -ID -qo -up -IJ -IJ -IJ -wm -up -up -up -up -up -wQ -HF -wQ -Nx -kv -ou -ou -pM -Nx -At -Bj -BL -BX -Nx -YW -KL -KL -cp -Nx -II -II -II -II -ai -ai -ai -ai -ai -ai -Vx -Wr -Vx -Vx -ai -ai -ai -wQ -Zv -bt -DJ -wQ -ai -ai -ai -ai -aY -"} -(27,1,1) = {" -cu -Ev -Ev -AD -KP -KP -AD -AD -AD -Xb -DZ -Jg -Xb -RC -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -AD -KP -KP -KP -ao -ao -ao -ao -ao -ao -ao -ao -ao -KP -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -KP -KP -qZ -KP -Yq -Yq -iy -iy -BS -BS -BS -BS -BS -BS -BS -Yk -hF -KN -BS -BS -BS -BS -BS -BS -iy -iy -up -Ot -ID -qo -up -Yq -iy -iy -Yq -up -Nx -Nx -Nx -ou -TJ -Nx -Nx -Nx -VB -ou -DM -JO -Xt -ij -Bj -BL -uj -Nx -ji -KL -KL -ZJ -Nx -Nx -Nx -Xt -Xt -Nx -Nx -Nx -ai -ai -ai -Vx -Vx -Vx -Vx -ai -ai -ai -wQ -Zv -bt -DJ -fV -ai -ai -ai -ai -aY -"} -(28,1,1) = {" -cu -AD -AD -AD -AD -AD -AD -KP -KP -KP -tf -ix -KP -KP -Ev -Ev -Ev -gq -Ev -Ev -Ev -AD -AD -AD -KP -KP -ll -KP -Pr -ao -ao -ao -ao -ao -ao -qZ -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -AD -AD -KP -KP -ZO -Yq -iy -BS -BS -LP -LP -LP -BW -KN -KN -Yk -KN -KN -KN -KN -LP -LP -LP -BS -BS -iy -up -Ot -ID -qo -up -up -up -up -up -up -Nx -Vz -vJ -ou -ou -TD -Nx -Su -VB -ou -VB -PU -Xt -Ya -Bj -BL -uj -Nx -ji -KL -KL -KL -KL -Nx -IV -yN -yN -UN -sX -Nx -ai -ai -LU -LU -Vx -Vx -Vx -ai -ai -ai -wQ -Zv -bt -DJ -wQ -qR -ai -ai -ai -aY -"} -(29,1,1) = {" -cu -KP -KP -KP -KP -KP -KP -KP -KP -RC -tf -ix -KP -KP -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -AD -KP -KP -KP -VW -KP -KP -ao -ao -ao -ao -ao -ao -KP -qZ -AD -AD -Ev -Ev -Ev -Ev -Ev -AD -AD -KP -KP -Yq -iy -wM -BS -Ik -KN -Rz -KN -Rz -KN -KN -zp -KN -KN -KN -Rz -KN -Rz -KN -it -BS -kG -up -Ot -ID -qo -up -up -up -up -up -up -Nx -uA -uA -ou -ou -DX -Nx -Kx -rJ -ou -Oj -Nx -Nx -Ee -Bj -AY -Ya -Nx -KL -KG -KL -KL -KL -OP -yN -yN -Fb -yN -Tk -Nx -ai -ai -XT -XT -Vx -Vx -Vx -ai -ai -ai -wQ -Zv -bt -DJ -wQ -qR -qR -ai -ai -aY -"} -(30,1,1) = {" -cu -RC -RC -KP -KP -KP -KP -qZ -KP -KP -no -ix -KP -KP -Ev -Ev -Ev -Ev -Ev -Ev -AD -AD -KP -KP -VW -KP -KP -KP -KP -ao -ao -ao -ao -ao -ao -ao -KP -AD -AD -Ev -Ev -Ev -Ev -Ev -Ev -Ev -qZ -DD -kL -iy -iG -kw -LP -Rz -sM -eH -hF -aO -BS -eC -hF -Nh -BS -Et -eH -eH -Rz -LP -kw -tu -up -Ot -Ld -qo -up -up -up -up -up -up -Nx -XJ -Xn -ou -ou -ry -Nx -Su -VB -VB -oR -hp -Nx -uj -Bj -BL -uj -Nx -nY -KL -KL -KL -KL -Nx -rA -rA -yN -yN -FJ -Nx -ai -ai -qR -qR -Vx -Vx -LU -Vx -ai -ai -wQ -Zv -bt -DJ -wQ -qR -qR -ai -ai -aY -"} -(31,1,1) = {" -cu -Ev -Ev -Ev -KP -KP -KP -RC -RC -KP -tf -ix -KP -RC -Ev -Ev -Ev -Ev -Ev -Ev -QS -KP -KP -qZ -KP -KP -KP -KP -KP -KP -qZ -ao -ao -ao -ao -ao -KP -AD -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -KP -nZ -PA -iy -iG -kw -LP -KN -eH -Cq -hF -aO -Yp -br -hF -Nh -BS -Et -eH -Uz -KN -LP -kw -iG -up -Ot -ID -GB -ui -ui -Ix -up -up -up -Nx -Jb -XJ -ou -ou -DX -Nx -Nx -ou -Sj -Nx -Nx -Nx -Zs -Bj -BL -BX -Nx -Nx -aQ -Nx -Nx -Nx -Nx -Nx -Nx -yN -Nx -Nx -Nx -Nx -Nx -Nx -Nx -qR -qR -Vx -Vx -Vx -ai -wQ -Zv -bt -DJ -wQ -Vx -ft -ai -ai -aY -"} -(32,1,1) = {" -cu -Ev -Ev -Ev -RC -KP -KP -KP -KP -KP -tf -ix -KP -KP -Ev -Ev -Ev -Ev -Ev -Ev -AD -KP -VW -AD -KP -Pr -KP -KP -VW -KP -KP -KP -ao -ao -ao -ao -KP -RC -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -KP -ZR -KD -iy -wM -BS -Ik -KN -KN -KN -KN -KN -KN -Yk -KN -KN -KN -KN -KN -KN -KN -it -BS -kG -up -Ot -ID -ID -ID -ID -qo -up -up -yH -Nx -Nx -Nx -Gb -ou -nW -Nx -Gb -ou -ou -ou -DR -Nx -Ya -Bj -BL -uj -Nx -bl -AY -Wv -Hl -Db -mk -Nx -Kn -AY -AY -IU -Nx -OU -FR -Ya -Xt -Pv -qR -GS -Vx -Vx -Vx -wQ -Zv -mu -DJ -wQ -Vx -qR -ai -ai -aY -"} -(33,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -Ev -RC -kK -pb -cH -Jt -pb -VW -Ev -Ev -Ev -Ev -Ev -Ev -KP -KP -KP -KP -AD -AD -KP -KP -KP -KP -RC -KP -ao -ao -ao -KP -KP -KP -Ev -Ev -Ev -Ev -Ev -AD -AD -KP -KP -KP -Yq -Yq -Yq -BS -BS -LP -LP -LP -KN -KN -KN -Yk -KN -KN -KN -KN -LP -LP -LP -BS -BS -iy -up -Ot -Ld -ID -ID -ID -qo -up -Lv -rs -XM -ou -ou -ou -dG -ou -ou -ou -dG -ou -ou -ou -XM -Ya -Bj -rf -aM -RR -hL -nL -Ya -Ya -Ct -AY -Nx -Vr -Ya -Ya -AY -Nx -jF -AY -Ya -Xt -Pv -qR -Vx -Vx -Vx -Vx -wQ -Zv -bt -DJ -wQ -Vx -Vx -ai -ai -aY -"} -(34,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -Ev -Ev -qV -qV -As -YR -qV -qV -qV -qV -qV -qV -qV -qV -bd -bd -qV -qV -qV -qV -KP -KP -VW -RC -RC -KP -AD -AD -ao -KP -KP -AD -Ev -Ev -Ev -AD -AD -AD -AD -VW -KP -KP -ZO -Yq -Yq -iy -BS -BS -BS -BS -Et -BS -BS -Yk -hF -KN -BS -BS -BS -BS -BS -BS -iy -iy -up -Ot -ID -ID -ID -ID -qo -up -EP -xR -oo -oo -uv -oo -oo -oo -oo -oo -oo -oo -oo -oo -oo -tl -Bj -AY -aM -mF -Xd -AY -AY -AY -Ya -AY -Nx -AY -sw -Ya -AY -Nx -tJ -AY -Ya -Nx -Pv -qR -qR -Vx -Vx -qR -wQ -Zv -bt -DJ -wQ -Vx -XT -ai -ai -aY -"} -(35,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -Ev -Ev -qV -eh -eh -GA -qV -Qk -lR -eh -ar -Qk -qV -eh -eh -eh -eh -qx -lb -qV -qV -qV -KP -KP -KP -KP -KP -AD -ao -KP -RC -Ev -Ev -Ev -Ev -AD -AD -QS -KP -KP -QS -KP -Yq -Yq -Yq -bj -iy -BS -YT -vp -KN -xt -BS -mn -hF -KN -BS -BM -BS -BM -BS -iy -iy -iy -up -Ot -ID -ID -ID -ID -qo -up -EP -Nx -Nx -Nx -Nx -Nx -ou -kN -Nx -Nx -Xt -Xt -Nx -Nx -Nx -Nx -WU -AY -aM -Fv -mF -Nx -Nx -mF -vL -AY -Nx -FX -tD -Po -AY -Nx -Nx -AY -Ab -Nx -Pv -qR -qR -Vx -Vx -qR -wQ -Zv -bt -DJ -wQ -Vx -ai -ai -ai -aY -"} -(36,1,1) = {" -cu -Ev -qV -qV -qV -qV -qV -qV -qV -eh -As -JG -qV -lu -GG -As -GG -lu -qV -SD -As -tH -As -As -eh -ko -eh -qV -qV -uQ -AD -KP -KP -KP -ao -KP -KP -Ev -Ev -Ev -Ev -Ev -Ev -AD -KP -AD -Ev -Ev -IJ -Yq -Yq -Yq -iy -BS -vp -ZL -KN -Rm -BS -Fk -hF -KN -BS -HH -BS -HH -BS -iy -iy -iy -up -Ot -ID -ID -ID -ID -qo -up -EP -Nx -ji -KL -KL -Nx -YM -AY -IK -oS -AY -AY -IU -AT -Ya -Ee -Bj -rf -Ya -aM -aM -Ya -Ya -aM -Pd -Ya -Ya -Ya -Ct -Ya -Ya -Ya -Ya -rf -Ya -Nx -ai -ai -ai -KH -LU -qR -wQ -Zv -bt -DJ -wQ -XT -ai -ai -ai -aY -"} -(37,1,1) = {" -cu -Ev -qV -Ss -Ss -Ss -oY -oY -qV -eh -tH -GA -JW -eh -As -tH -As -eh -Ue -eh -tH -rR -nO -As -As -As -eh -DE -bd -Zp -QS -KP -RC -KP -KP -KP -qZ -Ev -Ev -Ev -Ev -Ev -Ev -AD -KP -AD -Ev -Ev -IJ -gk -gk -Yq -iy -BS -JP -hF -KN -dL -BS -Yk -hF -KN -BW -KN -ER -KN -BS -kG -iy -iy -up -Ot -ID -ID -ID -ID -qo -up -EP -Nx -my -KG -KL -OP -rf -Ya -Ya -Ya -Ct -Ya -AY -wV -Ya -fr -gA -AY -AY -AY -AY -AY -AY -AY -AY -AY -AY -rI -rI -rI -AY -AY -AY -fr -Bl -Nx -ai -ai -ai -bF -KH -qR -wQ -Zv -bt -DJ -wQ -kl -Rg -ai -ai -aY -"} -(38,1,1) = {" -cu -Ev -qV -qf -Xq -Xq -Xq -Xq -yc -eh -As -GA -tU -GA -tU -tU -As -eh -eh -eh -As -qV -qV -Hc -As -As -As -zq -bd -Zp -AD -RC -RC -KP -KP -KP -AD -Ev -Ev -Ev -Ev -Ev -AD -AD -KP -KP -Ev -Ev -IJ -gk -gk -Yq -iy -BS -cU -hF -aO -BS -BS -Yk -YO -FT -FT -YO -FT -zp -xl -us -EP -EP -EP -jk -Oz -VA -VA -VA -hX -EP -UA -Nx -ji -KL -KL -Nx -YM -Ya -AY -AY -AY -Ya -AY -Fy -Ya -cl -tl -Hy -uj -Nx -NX -RK -Ya -lY -Sp -Nx -Ya -uj -lY -uj -Ya -AY -es -fr -Bl -Nx -ai -ai -ai -bF -dJ -qR -wQ -Zv -bt -DJ -wQ -Jf -Rg -ai -ai -aY -"} -(39,1,1) = {" -cu -Ev -qV -Xq -Xq -Xq -Xq -Xq -qV -SD -As -JG -qV -Wz -ZQ -tU -KZ -vZ -qV -SD -eh -RA -CF -RZ -As -tH -eh -DE -bd -Zp -QS -KP -KP -AD -AD -KP -CV -Ev -Ev -Ev -Ev -Ev -AD -AD -KP -Ev -Ev -Ev -IJ -gk -gk -Yq -Yq -BS -cM -hF -Rz -KN -KN -Rz -KN -KN -KN -Hq -KN -KN -hF -eV -up -up -up -Ot -ID -ID -ID -ID -qo -up -up -Nx -Hs -KL -KL -Nx -qu -Ya -AY -Nx -YM -Ya -AY -YY -Ya -AY -tl -Hy -uj -Nx -xS -ru -Ya -Fl -Nq -Nx -Ya -ij -ij -ij -Ya -AY -ij -kC -Ya -Nx -ai -ai -ai -dJ -XT -qR -wQ -Zv -mu -DJ -wQ -Jf -Rg -ai -ai -aY -"} -(40,1,1) = {" -cu -Ev -qV -ug -qV -ug -qV -ug -qV -eh -As -GA -qV -DE -eh -GA -eh -DE -qV -qV -eh -As -As -As -eh -eh -ko -qV -qV -uQ -AD -KP -RC -AD -rT -AD -AD -Ev -Ev -Ev -Ev -Ev -AD -AD -KP -Ev -Ev -Ev -gk -gk -gk -Yq -Yq -BS -cM -KN -KN -Hq -KN -KN -KN -BS -BS -BS -BS -BS -BS -Tm -Yq -Yq -up -Ot -ID -TU -Gp -Gp -nE -up -up -Nx -aN -cp -cp -Nx -qu -Ya -IQ -Nx -GU -Ya -AY -TS -Ya -AY -Bj -AY -AY -AY -AY -AY -AY -AY -AY -AY -AY -fr -es -fr -AY -RB -Nx -Nx -Nx -Nx -ai -ai -Vx -Vx -Vx -qR -wQ -Zv -bt -DJ -wQ -Jf -ai -ai -ai -aY -"} -(41,1,1) = {" -cu -Ev -qV -WA -qV -WA -qV -WA -qV -eh -As -GA -qV -qV -qV -NO -qV -qV -qV -zf -eh -As -As -As -eh -qV -qV -qV -AD -AD -KP -KP -KP -AD -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -KP -KP -AD -gk -gk -gk -gk -gk -Yq -Yq -BS -BS -BS -BS -BS -kw -kw -kw -BS -iy -UF -fG -oB -iy -Yq -VC -Yq -up -Ot -ID -qo -lA -up -up -up -up -Nx -Nx -Nx -Nx -Nx -qu -AY -IQ -Nx -GU -AY -mM -uD -Ya -tl -zH -Ya -Ya -FL -Ya -Ya -Ya -Ya -Yr -oH -Ya -ij -kC -ij -Ya -jW -Nx -ai -ai -ai -ai -ai -XT -Vx -Vx -Vx -wQ -Zv -bt -DJ -wQ -ai -ai -ai -ai -aY -"} -(42,1,1) = {" -cu -Ev -qV -qV -qV -qV -qV -qV -qV -eh -As -GA -qV -Mk -eh -eh -eh -nl -qV -Uu -lR -As -WT -fy -Qk -qV -AD -AD -AD -VW -DD -dI -KP -AD -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -KP -VW -AD -gk -gk -gk -gk -gk -Yq -Yq -VC -Yq -Yq -Yq -He -iG -iG -iG -He -iy -CR -NZ -KD -iy -VC -ZO -Yq -up -Ot -Ld -qo -up -Yq -Yq -Yq -wm -iy -up -up -up -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Ya -gl -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Kp -Kp -Kp -Nx -Nx -Nx -Nx -Nx -ai -ai -ai -ai -Vx -XT -Vx -Vx -Wr -wQ -Zv -bt -DJ -wQ -ai -ai -ai -ai -aY -"} -(43,1,1) = {" -cu -Ev -qV -Xq -Xq -Xq -oY -oY -qV -eh -As -GA -qV -fS -id -As -Kg -VQ -qV -Qk -eh -eh -Qk -DE -DE -qV -AD -AD -RC -KP -nZ -qy -RC -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -KP -KP -AD -gk -gk -gk -gk -gk -wm -Yq -Yq -Yq -Yq -Yq -Yq -iy -bj -iy -iy -iy -Yq -Yq -Yq -Yq -Yq -Yq -Yq -up -Ot -ID -qo -up -ZO -IJ -IJ -Yq -Yq -Yq -Yq -ZO -iy -ft -ai -ai -ai -ai -ff -TA -jn -Ke -fZ -jn -Ke -mO -ff -RP -XT -Vx -Vx -Dl -lN -II -II -Dl -XT -Vx -Vx -Vx -Vx -ai -ai -ai -Vx -Vx -qR -qR -qR -wQ -Zv -bt -DJ -wQ -ai -ai -ai -ai -aY -"} -(44,1,1) = {" -cu -Ev -qV -qf -Xq -Xq -Xq -Xq -yc -eh -As -GA -bd -Qt -As -As -As -YN -qV -qV -AK -qV -qV -qV -qV -qV -qV -AD -AD -AD -ZR -GQ -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -KP -KP -KP -KP -AD -AD -AD -gk -gk -gk -gk -gk -Yq -Yq -Yq -gk -Yq -VC -Yq -wm -Yq -Yq -ZO -Yq -Yq -Yq -Yq -Yq -Yq -up -Ot -Ld -qo -up -iy -IJ -IJ -wm -Yq -Yq -wm -Yq -Yq -qR -ai -ai -ai -ai -ff -Dq -Ke -Ke -fZ -Ke -Ke -Aw -ff -ud -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -Zv -bt -DJ -fV -ai -ai -ai -ai -aY -"} -(45,1,1) = {" -cu -Ev -qV -Xq -Xq -Xq -Xq -Xq -qV -SD -tH -GA -bd -eh -As -tH -As -eh -tC -eh -ko -eh -eh -eh -ko -eh -qV -qV -qV -Zp -KP -KP -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -AD -qZ -KP -VW -QS -AD -gk -gk -gk -gk -gk -gk -gk -gk -gk -Yq -Yq -Yq -Yq -Yq -Yq -Yq -Yq -Yq -Yq -IJ -Yq -Yq -up -Ot -ID -qo -up -Yq -IJ -IJ -Yq -Yq -Yq -Yq -Yq -Yq -qR -ai -ai -ai -ai -ff -lQ -Ke -ND -Jv -HW -HW -HW -fJ -HW -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -mt -bt -DJ -wQ -ai -ai -ai -ai -aY -"} -(46,1,1) = {" -cu -Ev -qV -ug -qV -ug -qV -ug -qV -eh -eh -JG -qV -wD -ZQ -As -KZ -vZ -qV -JV -As -As -As -As -As -eh -zq -FD -qV -uQ -AD -VW -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -DD -dI -KP -AD -AD -wr -gk -gk -gk -gk -gk -gk -gk -gk -gk -Yq -Yq -Yq -Yq -Yq -Yq -Wk -xP -IJ -IJ -IJ -Yq -up -Ot -ID -qo -up -Yq -IJ -IJ -IJ -IJ -ZO -ty -vS -iy -ai -ai -ai -ai -ai -ff -kR -Ke -uT -Ju -cZ -lQ -lQ -wU -lQ -bt -bt -bt -bt -bt -bt -bt -bt -bt -mu -bt -bt -bt -bt -bt -mu -bt -bt -bt -mu -bt -bt -bt -mu -DJ -wQ -ai -ai -ai -ai -aY -"} -(47,1,1) = {" -cu -Ev -qV -WA -qV -WA -qV -WA -qV -eh -eh -GA -qV -DE -eh -eh -eh -DE -qV -Qk -lR -eh -AV -Yf -tH -As -As -eh -bd -Zp -QS -KP -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Mp -dI -KP -AD -iy -gk -gk -gk -gk -gk -gk -gk -gk -gk -Yq -Yq -Yq -Yq -VC -iy -UF -fG -IJ -IJ -IJ -IJ -up -Ot -ID -qo -up -Yq -ty -IJ -IJ -IJ -Yq -CR -IJ -IJ -ai -ai -ai -ai -ai -ff -lQ -Ke -je -px -px -px -px -Xo -px -yT -yT -yT -yT -yT -yT -yT -yT -QJ -AH -yG -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -QJ -bt -DJ -wQ -ai -ai -ai -ai -aY -"} -(48,1,1) = {" -cu -Ev -qV -qV -qV -qV -qV -qV -qV -qV -eh -GA -qV -qV -bd -bd -qV -qV -qV -qV -qV -qV -qV -mo -Vm -tH -WT -eh -bd -Zp -AD -KP -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Hk -qy -KP -KP -iy -gk -gk -gk -gk -gk -gk -gk -gk -gk -wj -Yq -Yq -Yq -Yq -iy -bH -IJ -IJ -IJ -IJ -IJ -up -Ot -ID -qo -up -ZO -UF -IJ -IJ -Yq -Yq -Yq -IJ -ff -ff -ff -ff -ff -ff -ff -ff -ff -ex -fZ -Ke -Ke -Aw -ff -ud -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -Zv -bt -DJ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -ph -bt -DJ -wQ -ai -ai -ai -ai -aY -"} -(49,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -qV -Gx -eh -eh -eh -GA -qV -tL -Zp -Zp -tL -Zp -KP -AD -AD -AD -qV -qV -Qk -eh -Qk -DE -qV -uQ -KP -KP -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Hk -iH -KP -KP -iy -gk -gk -gk -gk -gk -gk -gk -gk -gk -Yq -Yq -wm -Yq -Yq -iy -bj -IJ -IJ -IJ -IJ -IJ -up -Ot -ID -qo -up -Yq -UF -fG -IJ -Yq -Yq -Yq -IJ -ff -Ki -on -Ec -ff -FA -RN -wu -ei -fZ -fZ -Ke -Ke -Ke -ff -ff -ff -ff -ff -ff -ff -ff -ff -wQ -Zv -bt -DJ -wQ -JB -JB -JB -JB -JB -JB -pP -JB -JB -wQ -ph -bt -DJ -wQ -ai -ai -ai -ai -aY -"} -(50,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -qV -ZW -eh -As -As -GA -qV -AD -AD -AD -KP -KP -KP -KP -AD -KP -AD -qV -qV -bd -bd -qV -qV -kK -KP -KP -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -nF -Ug -KP -VW -Yq -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -Yq -Yq -Yq -Yq -iy -iy -IJ -IJ -IJ -IJ -IJ -up -Ot -ID -qo -up -iy -UF -fG -IJ -Yq -Yq -Yq -IJ -ff -Ec -sJ -Ec -GT -FA -gi -FA -Ke -Ke -Ke -fW -Ke -Ke -ff -HX -IA -HX -HX -HX -IA -HX -ff -wQ -Zv -bt -DJ -wQ -JB -wP -xv -xv -xv -JB -TN -TN -JB -wQ -ph -bt -DJ -wQ -qR -ai -ai -ai -aY -"} -(51,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -qV -qV -SD -vN -tH -JG -qV -AD -KP -KP -KP -KP -KP -RC -VW -KP -KP -KP -KP -KP -KP -ZR -GQ -VW -KP -KP -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -AD -KP -KP -Yq -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -Yq -Yq -Yq -Yq -iy -iy -iy -wr -IJ -IJ -IJ -up -Ot -ID -qo -up -iy -bH -NZ -KD -Yq -Yq -Yq -IJ -ff -Bf -ff -Bf -ff -FA -fZ -tA -ff -Hx -WP -ff -yD -sI -ff -HX -pH -HX -HX -HX -pH -HX -ff -KB -Zv -bt -DJ -wQ -JB -lk -uu -uu -xv -JB -RX -TN -pP -wQ -ph -bt -DJ -wQ -qR -ai -ai -ai -aY -"} -(52,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -qV -Tu -eh -tH -As -GA -qV -KP -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -AD -KP -Yq -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -Yq -Yq -Yq -ZO -Yq -iy -iy -iy -IJ -IJ -IJ -up -Ot -Ld -qo -up -iy -iy -iy -Yq -ZO -Yq -bj -IJ -ff -Fz -ff -Fz -ff -FA -wu -FA -ff -XI -EN -ff -uT -fK -ff -HX -HX -HX -HX -HX -HX -HX -ff -KB -Zv -bt -DJ -wQ -JB -vo -XR -uu -xv -Fs -TN -TN -TN -Qd -HR -bt -DJ -wQ -qR -ai -ai -ai -aY -"} -(53,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -qV -Il -eh -GA -GA -GA -qV -KP -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -AD -KP -Yq -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -Yq -ZO -ZO -iy -iy -iy -iy -iy -IJ -IJ -up -Ot -ID -qo -up -ZO -iy -iy -Yq -Yq -Yq -iy -IJ -ff -ff -ff -ff -ff -ff -wu -ff -ff -je -Md -ff -Vh -Md -ff -HX -DO -HX -HX -HX -DO -HX -ff -KB -Zv -bt -DJ -wQ -Qa -ma -Hr -Ul -ma -ma -xX -nC -xX -AH -AH -mu -DJ -wQ -xe -qR -ai -ai -aY -"} -(54,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -qV -qV -qV -Du -qV -qV -qV -KP -tf -no -KP -KP -uR -sZ -sZ -sZ -bY -KP -KP -qZ -RC -VW -KP -KP -qZ -KP -KP -KP -qZ -tf -tf -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Er -AD -VW -Yq -Yq -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -Yq -Yq -Yq -iy -iy -iy -iy -iy -iy -IJ -up -Ot -ID -qo -up -ZO -iy -Yq -Yq -Yq -iy -iy -IJ -IJ -ai -ai -ai -ff -Dv -wu -Dv -ff -ff -ff -ff -ff -ff -ff -nf -FA -nf -nf -nf -FA -nf -ff -KB -Zv -bt -DJ -wQ -JB -qM -uu -uu -xv -JB -RX -TN -TN -hn -QJ -bt -DJ -wQ -qR -qR -ft -ai -aY -"} -(55,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -qV -eh -BF -GA -eh -dP -bd -VW -tf -tf -KP -dx -dx -jv -jv -jv -dx -dx -Ev -KP -ll -KP -Ev -Ev -Ev -Ev -AD -KP -KP -tf -tf -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -AD -KP -Yq -Yq -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -Yq -Yq -Yq -iy -iy -Wk -xP -vS -iy -Yq -up -Ot -ID -qo -up -ZO -Yq -Yq -Yq -iy -IJ -IJ -IJ -IJ -ai -ai -ai -ff -FA -fZ -FA -FA -FA -Dv -FA -FA -Yd -ff -FA -Ke -zy -zy -zy -Ke -FA -ff -wQ -Zv -bt -DJ -wQ -CL -iv -uu -uu -xv -JB -TN -TN -pP -wQ -ph -bt -DJ -wQ -Vx -qR -qR -ai -aY -"} -(56,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -qV -ar -Mo -tU -eh -Cz -bd -AD -tf -tf -qS -dx -TE -jK -ka -lJ -ka -dx -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -AD -KP -tf -tf -RC -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -AD -KP -Yq -Yq -Yq -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -Yq -Yq -Yq -PK -fG -fG -Vs -Yq -Yq -up -CS -ID -qo -up -IJ -Yq -wr -iy -iy -IJ -IJ -IJ -IJ -ai -ai -ai -ff -FA -gi -fZ -fZ -fZ -fZ -Ke -fW -tA -ff -FA -Ke -ff -ff -ff -Ke -FA -ff -wQ -Zv -mu -DJ -wQ -CL -xv -uu -uu -xv -JB -TN -TN -pP -wQ -ph -bt -DJ -wQ -Vx -qR -qR -ai -aY -"} -(57,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -qV -eh -BB -tU -eh -qV -qV -AD -tf -tf -ge -jv -BN -Jk -JN -ct -JN -dx -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -LX -KP -tf -tf -KP -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -QS -AD -Yq -VC -wm -Yq -Yq -gk -gk -gk -gk -gk -gk -gk -gk -Yq -Yq -Yq -bH -IJ -IJ -IJ -Yq -VC -up -Ot -Ld -qo -up -IJ -Yq -iy -IJ -IJ -IJ -IJ -IJ -IJ -ai -ai -ai -ff -Yd -FA -FA -FA -FA -fZ -Ke -Ke -th -FA -FA -fW -Ke -jn -Ke -fW -FA -ff -wQ -Zv -bt -DJ -wQ -CL -os -YD -uu -nb -JB -TN -TN -pP -wQ -ph -bt -DJ -fV -XT -qR -qR -qR -aY -"} -(58,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -qV -eh -As -Nm -eh -dP -bd -AD -tf -tf -tG -jv -QU -jK -lJ -zt -dx -dx -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -iH -RC -tf -tf -KP -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -AD -AD -ZO -Yq -Yq -Yq -Yq -gk -gk -gk -gk -gk -gk -gk -gk -gk -Yq -Yq -iy -IJ -IJ -IJ -IJ -Yq -up -Ot -ID -qo -up -IJ -IJ -IJ -IJ -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -xb -fZ -Ke -Ke -FA -FA -FA -Ke -Ke -Ke -Ke -Ke -FA -ff -wQ -Zv -bt -DJ -wQ -JB -Fj -lk -nb -Pw -JB -TN -TN -pP -wQ -ph -bt -DJ -wQ -GS -Vx -xe -qR -aY -"} -(59,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -qV -yR -eh -GA -eh -Cz -bd -RC -tf -tf -iR -jv -Jj -Jk -lJ -lJ -cL -dx -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -iH -KP -tf -tf -KP -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -AD -ZO -ZO -Yq -Yq -Yq -gk -gk -gk -gk -gk -gk -gk -gk -gk -Yq -Yq -iy -iy -IJ -IJ -IJ -Yq -up -Ot -ID -qo -up -IJ -IJ -IJ -IJ -ff -xq -Dv -FA -Gm -Gq -Uk -Gq -Ds -FA -RG -FA -ff -dS -fZ -Ke -Ke -tA -ff -FA -FA -FA -FA -FA -FA -FA -ff -wQ -Zv -bt -DJ -wQ -JB -JB -JB -JB -JB -JB -TN -TN -pP -wQ -ph -bt -DJ -wQ -ai -XT -qR -qR -aY -"} -(60,1,1) = {" -cu -Ev -Ev -Ev -Ev -Ev -qV -qV -eh -BZ -qV -qV -qV -KP -tf -tf -qS -dx -kk -jK -lJ -lJ -AM -dx -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ug -KP -tf -tf -KP -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -AD -AD -ZO -Yq -Yq -Yq -Yq -Yq -gk -gk -gk -gk -gk -gk -gk -gk -Yq -ZO -iy -iy -wr -IJ -IJ -IJ -up -Ot -ID -qo -up -IJ -IJ -IJ -IJ -ff -xq -Ke -Ke -Gm -oL -Rc -yY -Ds -Ke -OV -tA -ff -bi -fZ -Ke -Ke -FA -ff -ff -ff -ff -ff -FA -mR -ff -ff -wQ -Zv -bt -DJ -wQ -pP -On -uu -uu -uu -US -TN -TN -pP -wQ -ph -bt -DJ -wQ -ai -ai -qR -qR -aY -"} -(61,1,1) = {" -cu -Ev -Ev -AD -AD -tf -cH -PC -cH -Jt -PC -cH -cH -tf -tf -tf -tf -dx -dx -jK -ef -dx -dx -dx -AD -AD -AD -Ev -Ev -Ev -Ev -Ev -Er -AD -KP -tf -tf -KP -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -PB -kL -Yq -Yq -VC -iy -gk -gk -gk -gk -gk -gk -gk -gk -Yq -Yq -Yq -Yq -iy -IJ -IJ -IJ -up -Ot -ID -qo -up -IJ -IJ -IJ -IJ -ff -xq -Ke -Ke -tM -bN -Hj -ny -St -Ke -OV -FA -FA -FA -fZ -Ke -Ke -Zo -ff -oT -Pq -FA -rC -FA -FA -wS -ff -wQ -Zv -bt -DJ -wQ -JM -TN -uu -uu -uu -uu -TN -TN -pP -wQ -ph -bt -DJ -wQ -ai -ai -qR -qR -aY -"} -(62,1,1) = {" -cu -Ev -Ev -AD -AD -tf -tf -tf -tf -ix -ix -ix -ix -ix -ix -ix -ix -ix -oW -ix -tf -yQ -tf -tf -AD -ll -AD -AD -Ev -Ev -Ev -AD -AD -KP -KP -tf -tf -KP -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -gO -gO -kL -Yq -Yq -iy -iy -iy -iy -gk -gk -gk -gk -gk -gk -Yq -Yq -Yq -iy -iy -iy -Yq -up -Ot -ID -qo -up -ZO -IJ -IJ -IJ -ff -xq -fW -Ke -tM -Rc -Rc -Rc -St -fW -Oo -wu -wu -wu -fZ -Ke -fW -GD -ff -Cb -Pq -Ke -fW -Ke -fW -wS -ff -wQ -Zv -bt -DJ -wQ -pP -TN -TN -Al -TN -TN -TN -Al -pP -wQ -ph -bt -DJ -wQ -ai -ai -Vx -qR -aY -"} -(63,1,1) = {" -cu -Ev -Ev -AD -AD -tf -lr -rW -rW -rW -rW -rW -rW -rW -rW -kY -tf -tf -tf -ix -ix -ix -ix -ix -ix -ix -ix -ix -ix -ix -ix -ix -ix -ix -ix -ix -ix -ix -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -Ev -IJ -gO -KD -Yq -Yq -Yq -Yq -iy -iy -gk -gk -gk -gk -gk -gk -gk -wm -ZO -Yq -iy -iy -ZO -Lv -Ot -ID -qo -up -Yq -IJ -IJ -IJ -ff -xq -Ke -Ke -tM -Rc -Rc -ps -St -Ke -Oo -tA -ff -rB -fZ -Ke -Ke -FA -ff -Cb -Pq -Ke -Ke -Ke -Ke -FA -ff -wQ -Zv -bt -DJ -wQ -JB -TN -TN -TN -TN -TN -TN -TN -JB -wQ -ph -bt -DJ -wQ -ai -ai -Vx -qR -aY -"} -(64,1,1) = {" -cu -Ev -Ev -AD -AD -tf -Zd -VF -VF -tm -VF -VF -VF -tm -VF -La -rW -rW -rW -rW -rW -rW -rW -ld -rW -rW -rW -rW -rW -rW -rW -rW -rW -rW -ld -rW -kY -ix -RC -KP -Ev -Ev -Ev -KP -RC -KP -Ev -Ev -NZ -KD -iy -iy -iy -iy -iy -iy -bL -bL -bL -bL -Yu -Yu -bL -bL -bL -bL -Yq -Yq -Yq -ZO -up -Ot -ID -qo -up -iy -IJ -IJ -IJ -ff -xq -Ke -Ke -cD -Eu -Eu -Eu -dl -Ke -fZ -FA -ff -fj -wu -FA -FA -FA -ff -Cb -Pq -FA -FA -Ga -Od -Od -ff -wQ -Zv -bt -DJ -wQ -JB -JB -pP -pP -pP -pP -pP -JB -JB -wQ -ph -bt -DJ -wQ -XT -ai -Vx -Vx -aY -"} -(65,1,1) = {" -cu -Ev -Ev -AD -AD -tf -Zd -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -VF -nv -ix -tf -tf -tf -tf -tf -tf -tf -tf -tf -tf -up -up -up -up -up -up -up -up -bL -CO -CO -CO -Bo -CO -CO -CO -CO -bL -up -up -up -up -up -Ot -ID -qo -up -iy -IJ -IJ -IJ -ff -ff -Ke -Ke -Ql -GK -NE -GK -GK -Ke -fZ -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -FA -mR -ff -ff -ff -ff -wQ -Zv -bt -DJ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -wQ -ph -bt -DJ -wQ -wQ -wQ -wQ -fV -aY -"} -(66,1,1) = {" -cu -Ev -AD -AD -AD -tf -Zd -VF -VF -VF -VF -VF -VF -VF -VF -Ek -wX -wX -wX -wX -wX -wX -wX -wX -wX -wX -wX -tS -wX -wX -wX -wX -wX -wX -xr -VF -Fa -Ng -rW -rW -rW -rW -IM -rW -rW -rW -rW -rm -ui -ui -eX -ui -ui -ui -ui -ui -ui -ui -ui -ui -ui -ui -ui -ui -ui -ui -ui -ui -ui -ui -ui -Jd -ID -qo -up -iy -IJ -IJ -IJ -ff -xq -Ke -Ke -sh -Rc -Rc -Rc -St -Ke -fZ -FA -ff -Kd -wS -ff -XZ -XZ -ff -Jo -RG -FA -FA -Dv -xq -rP -ff -wQ -Zv -bt -Xp -Qd -Qd -Qd -Qd -Qd -Qd -IG -IG -IG -IG -IG -HR -bt -Xp -Qd -Qd -Qd -xZ -wQ -aY -"} -(67,1,1) = {" -Ew -sN -zB -zB -zB -fk -cc -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -XG -oM -fk -fk -fk -fk -fk -fk -fk -fk -fk -fk -fk -fk -fk -fk -fk -fk -fk -XU -AZ -AZ -va -AZ -AZ -AZ -AZ -Do -gW -AZ -AZ -AZ -qE -Qz -wO -Qz -Qz -Qz -Qz -Qz -wO -Qz -Qz -Qz -Qz -Qz -wO -Qz -Qz -Qz -Qz -Qz -Qz -Qz -Qz -wO -Qz -wO -wk -Pg -ME -PL -PL -PL -ff -xq -Ke -Ke -tM -Rc -Rc -Rc -St -Ke -Oo -FA -ff -FA -el -ff -Ke -FA -ff -Jo -OV -Ke -Ke -fW -PO -OT -No -KB -tz -bQ -Km -Km -Km -Km -Km -bQ -Km -uG -Km -bQ -Km -Km -Km -bQ -Km -Km -Km -bQ -Lr -wz -bm -"} -(68,1,1) = {" -Ew -sN -zB -zB -zB -fk -Zr -cW -cW -cW -cW -cW -cW -cW -cW -Xi -fk -Ow -Ow -Ow -Ow -Ow -Vk -Ow -Ow -mJ -Ow -Ow -QG -Ow -fN -fN -fN -fN -cc -va -FP -qB -qB -qB -qB -qB -sn -WV -YC -YC -WV -Xk -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -ee -ik -ME -LI -PL -PL -ff -xq -fW -Ke -tM -Rc -ps -Rc -St -fW -Oo -FA -FA -FA -Ke -fW -Ke -FA -FA -FA -Ke -Ke -fW -Ke -PO -fm -No -KB -tz -Km -UP -Wg -Wg -Wg -Wg -Wg -Wg -yI -Wg -Wg -Wg -Wg -Wg -Wg -Wg -Wg -tk -Km -Lr -wz -bm -"} -(69,1,1) = {" -Ew -sN -zB -zB -QG -fk -fk -fk -fk -fk -fk -fk -KA -gv -fk -fk -fk -zB -zB -KS -zr -TB -cG -Ow -Ow -Ow -QG -QG -Ow -QG -fN -yZ -wA -pW -cc -va -XG -AZ -AZ -xp -AZ -va -Co -Co -BR -QK -Co -Co -Co -Co -Co -Co -Co -Co -Pg -Pg -KU -Ka -Ka -Ka -LG -Ka -Ka -Ka -Ka -KU -Pg -Pg -Pg -Pg -Pg -Pg -Pg -Pg -Pg -Tj -Pi -Ef -PL -ff -xq -Ke -Ke -tM -bV -op -se -St -fZ -Oo -FA -FA -FA -Ke -Ke -Ke -FA -FA -FA -Ke -Ke -Ke -Aw -ff -ff -ff -ud -tz -Km -Lr -wz -wz -wz -wz -wz -wz -Py -wz -wz -wz -wz -wz -wz -wz -wz -tz -Km -Lr -wz -bm -"} -(70,1,1) = {" -Ew -sN -sN -zB -Ow -Ow -QG -QG -Ow -bD -cv -cv -FH -FH -cv -cv -dp -cv -cv -Qj -ZF -Pl -qF -fI -Ow -zB -zB -zB -Ow -Ow -fN -cc -JD -fY -cc -va -XG -AZ -AZ -at -AZ -va -Co -qN -wZ -eF -OQ -Co -Uc -Uc -jD -eF -SM -Co -uL -Pg -KU -KU -KU -KU -HO -HO -KU -KU -KU -KU -ME -uq -GX -GX -GX -GX -GX -GX -GX -GX -LR -vF -PL -ff -xq -Ke -Ke -bU -Zk -Rc -yY -jb -fZ -OV -FA -ff -rB -Ke -Ke -Ke -tA -ff -Jo -OV -Ke -Ke -Ke -Ke -vA -ff -KB -tz -Km -Lr -wz -wz -wz -ES -ES -SV -JH -ES -ES -SV -ES -ES -wz -wz -wz -tz -Km -Lr -wz -bm -"} -(71,1,1) = {" -Ew -sN -sN -zB -Ow -Ow -Ow -of -cv -FH -uo -FH -FH -uo -FH -FH -Sv -uo -FH -Gg -ne -FH -FH -FH -gu -gD -zB -zB -Ow -Ow -fN -kO -BA -Bu -cc -va -XG -AZ -AZ -MZ -AZ -Rs -Co -IT -zb -zb -DW -Co -zL -zb -zb -zb -eF -lV -FE -Pg -GX -GX -gk -gk -gk -gk -gk -gk -gk -ME -ME -ME -GX -GX -ZZ -GX -ic -ZY -GX -GX -GX -ME -PL -ff -xq -ms -FA -bU -tx -pX -tx -lE -wu -CA -FA -ff -FA -FA -FA -FA -FA -ff -Jo -CA -FA -FA -ms -FA -vA -ff -wz -tz -Km -Lr -wz -Ni -VR -Ad -Ad -Ad -pA -Ls -Ls -Ad -Ad -Ad -pE -SO -wz -tz -Km -Lr -wz -bm -"} -(72,1,1) = {" -Ew -sN -sN -Ow -QG -Ow -bD -FH -FH -FH -FH -FH -FH -FH -FH -FH -lv -FH -FH -Gg -ne -FH -uh -ne -ne -Gg -gY -zB -zB -Ow -fN -MA -DH -MS -XU -va -XG -AZ -AZ -AZ -AZ -Nz -Ux -Nk -zK -YE -Nk -Px -Nk -Nk -yf -eF -eF -eF -FE -EU -ME -GX -GX -GX -gk -gk -gk -gk -gk -ME -GX -ME -ME -ME -GX -Tj -rX -qH -GX -GX -GX -uq -PL -Id -ff -ff -ff -ff -ff -ff -ff -ff -Vf -ff -ff -ff -ff -ZH -ZH -ZH -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -wz -tz -Km -Lr -wz -Ni -pE -Ad -Dc -ks -ey -NG -NG -gr -gr -Ad -VR -Ni -wz -tz -Km -Lr -wz -bm -"} -(73,1,1) = {" -Ew -sN -sN -Ow -Ow -Ow -bJ -FH -FH -jf -Gg -xQ -rk -XP -mD -Oq -Oq -Oq -Oq -Oq -Oq -Oq -Cn -FH -FH -FH -gZ -zB -Ow -Ow -fN -cc -AZ -fY -cc -va -XG -AZ -AZ -AZ -AZ -Gs -eF -eF -jq -uk -ml -Co -Co -Co -Nk -eF -Co -Co -tK -ME -ME -GX -Tj -GX -gk -gk -gk -gk -gk -GX -GX -GX -Tj -GX -GX -GX -SW -lD -GX -GX -ME -ME -PL -PL -PL -PL -PL -PL -Up -Up -ff -HY -mU -Tw -HY -HY -Xe -HY -Pp -HY -Xe -HY -HY -Pp -HY -iE -HW -PP -ff -UR -wz -tz -Km -Lr -wz -xU -Ad -Ad -HS -ey -ey -NG -Tg -NG -Tg -Ad -Ad -pE -wz -tz -Km -Lr -wz -bm -"} -(74,1,1) = {" -Ew -sN -sN -Ow -Ow -rL -sy -GL -jf -nj -nj -Qj -ZF -Pl -qF -zz -Gg -nj -SB -nj -nj -nj -Dd -Cn -FH -FH -gZ -Ow -Ow -QG -fN -Zr -cW -Bu -cc -va -XG -AZ -AZ -AZ -AZ -Yv -Co -Co -Co -Co -Co -Co -PL -Co -Nk -Oi -Co -PL -LI -Dr -Mn -ME -Tj -GX -gk -gk -gk -gk -gk -GX -GX -GX -Tj -GX -GX -ZZ -GX -GX -ZZ -ME -ME -ME -PL -PL -PL -PL -PL -PL -Up -Up -ff -pp -Ke -fZ -HY -ff -HY -Ke -CQ -Ke -HY -ff -HY -Ke -HY -uT -zM -EN -ff -SO -wz -tz -Km -Lr -wz -pE -Ad -NG -ul -if -oy -NG -Ta -NG -NG -NG -Ad -pE -wz -tz -Km -Lr -wz -bm -"} -(75,1,1) = {" -Ew -sN -sN -Ow -pC -qG -Ra -Tq -zz -Gg -nj -xK -xG -iN -xK -Tq -xK -nj -nj -jI -xK -RF -nj -KF -uo -FH -gZ -fk -fk -fk -fN -AZ -AZ -AZ -cc -va -Wn -hI -zJ -AZ -AZ -AZ -sN -sN -sN -sN -sN -sN -Co -Co -Nk -eF -Co -Co -PL -Ef -uM -ME -GX -GX -gk -gk -gk -gk -gk -gk -gk -gk -GX -GX -GX -GX -Iy -GX -GX -ME -cC -ME -ME -PL -PL -PL -PL -PL -Up -Up -ff -HY -Tr -fZ -HY -ff -HY -Rl -QE -SJ -HY -ff -HY -Ke -HY -Vh -DY -Md -ff -Ni -vr -tz -Km -Lr -ES -Ad -Ad -NG -pw -HD -Sw -Ad -Ks -EZ -NG -Jx -Ad -Ad -ES -tz -Km -Lr -wz -bm -"} -(76,1,1) = {" -Ew -sN -sN -QG -Ow -ve -zl -Ii -DA -Gg -Gg -nj -nj -az -rg -ub -AG -hg -ne -ne -zI -rj -nj -KF -FH -uo -TP -hk -AZ -AZ -AZ -AZ -AZ -AZ -XU -va -XG -AZ -AZ -AZ -AZ -AZ -sN -sN -sN -sN -sN -sN -Co -dQ -Nk -eF -uk -Co -PL -Ef -vX -ME -ME -GX -gk -gk -gk -gk -gk -gk -gk -gk -GX -GX -GX -GX -GX -GX -GX -GX -ME -ME -ME -PL -PL -PL -PL -PL -Up -Up -ff -HY -Ke -fZ -HY -mV -mV -mZ -mZ -mZ -mV -mV -HY -Ke -HY -ND -ht -hy -ff -UR -wz -tz -Km -Lr -ES -Ad -ey -ey -Bw -LW -kW -Ad -Ms -Ln -NG -NG -NG -Ad -ES -tz -Km -Lr -wz -bm -"} -(77,1,1) = {" -Ew -sN -sN -Ow -Ow -zB -bP -lv -DA -nj -jh -nj -VV -BY -tw -Wp -wF -Tq -Tq -Tq -tw -rj -nj -KF -lv -Sv -TP -hs -AZ -AZ -AZ -AZ -AZ -AZ -cc -va -Wn -hI -zJ -AZ -AZ -AZ -sN -sN -sN -sN -sN -sN -Co -YL -YE -Ba -rc -Co -PL -vX -ME -ME -ME -GX -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -GX -GX -GX -GX -GX -GX -ME -ME -ME -PL -PL -PL -PL -PL -Up -Up -ff -HY -Tr -fZ -mP -lQ -IR -HW -HW -HW -hi -lQ -nh -Ke -HY -uT -lQ -EN -ff -Ni -wz -tz -bQ -Lr -yM -Ad -EI -NG -ey -Ad -Ad -Ad -Ad -Ad -NG -NG -NG -Ad -uF -tz -bQ -Lr -wz -bm -"} -(78,1,1) = {" -Ew -sN -sN -Ow -Ow -zB -bJ -FH -DA -nj -nj -Gg -zz -zz -iB -ub -Ml -yP -Ml -Ml -NY -rj -nj -KF -FH -FH -TP -hv -AZ -AZ -AZ -AZ -AZ -AZ -cc -va -XG -AZ -AZ -AZ -AZ -gW -AZ -AZ -sN -sN -sN -sN -Co -lP -YE -zb -wo -Co -PL -cC -ME -ME -cC -GX -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -Tj -GX -eB -ZZ -GX -GX -ME -ME -ME -PL -PL -PL -PL -PL -Up -Up -ff -HY -Ke -fZ -mP -lQ -uT -lQ -lQ -lQ -Hd -lQ -nh -Ke -HY -je -xy -cs -ff -Ni -wz -tz -Km -Lr -ES -Ad -NG -NG -Pa -Uw -oy -Ad -Ms -Ms -NG -NG -NG -Ad -ES -tz -Km -Lr -wz -bm -"} -(79,1,1) = {" -Ew -sN -sN -Ow -zB -zB -bJ -FH -DA -nj -nj -nj -nj -nj -zz -Tq -li -li -jz -KQ -li -Kb -nj -KF -FH -FH -gZ -fk -fk -fk -fN -yZ -wA -pW -XU -va -XG -AZ -AZ -AZ -AZ -AZ -gW -AZ -sN -sN -sN -sN -Co -EV -YE -zb -eF -Co -PL -ME -uq -ME -ME -GX -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -GX -GX -GX -GX -GX -GX -GX -GX -uq -PL -PL -PL -PL -PL -Up -Up -ff -HY -Ke -fZ -mP -lQ -Se -lQ -lQ -lQ -NT -lQ -nh -RS -ff -ff -ff -ff -ff -lX -wz -tz -Km -Lr -ES -Ad -Ad -nK -eT -Rj -Sw -Ad -Ta -EZ -NG -Jx -Ad -Ad -ES -tz -Km -Lr -wz -bm -"} -(80,1,1) = {" -Ew -sN -sN -Ow -na -Nt -Tf -lw -dM -uh -nj -nj -nj -jI -nj -nj -Gg -Ed -hq -Tf -lw -nj -uh -Cx -FH -FH -gZ -zB -zB -Ow -fN -cc -JD -fY -cc -va -XG -AZ -AZ -AZ -AZ -fk -AZ -AZ -sN -sN -sN -sN -Co -uk -Qy -zb -tq -Co -PL -ME -ME -ME -ME -GX -GX -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -GX -GX -ZZ -GX -GX -ME -ME -PL -PL -PL -PL -Up -Up -ff -pp -Ke -fZ -mP -lQ -uT -lQ -lQ -lQ -nS -lQ -nh -Ke -ci -Pc -ff -lX -lX -lX -wz -tz -Km -Lr -wz -pE -Ad -nK -Lk -uN -aF -NG -Ln -NG -NG -NG -Ad -xU -wz -tz -Km -Lr -wz -bm -"} -(81,1,1) = {" -Ew -sN -sN -Ow -MQ -HL -JA -qF -zz -zz -DT -nj -nj -nj -nj -Gg -Gg -nx -ra -JA -qF -DT -Gg -FH -Gg -FH -gZ -zB -zB -QG -fN -kO -BA -Bu -cc -va -XG -AC -AC -AZ -AZ -fk -AZ -AZ -sN -sN -sN -sN -Co -wo -Nk -eF -eF -Co -PL -PL -ME -ME -GX -GX -GX -GX -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -GX -GX -GX -GX -ME -ME -ME -PL -PL -PL -PL -Up -Up -ff -HY -Ke -fZ -mP -lQ -uT -lQ -lQ -lQ -nS -lQ -nh -Ke -Ke -Bx -ff -lX -lX -lX -wz -tz -Km -Lr -wz -VR -Ad -Ad -Ns -ey -ey -NG -Tg -NG -Tg -Ad -Ad -pE -wz -tz -Km -Lr -wz -bm -"} -(82,1,1) = {" -Ew -sN -sN -Ow -Ow -Ow -bX -FH -Lj -FH -FH -FH -FH -FH -uo -FH -lv -FH -FH -FH -FH -FH -FH -FH -uo -FH -fL -Ow -QG -QG -fN -MA -DH -MS -cc -va -XG -WI -WI -AZ -nI -fk -AZ -AZ -sN -sN -sN -sN -Co -Co -Nk -eF -Co -Co -PL -PL -ME -uq -GX -Tj -GX -GX -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -GX -GX -PL -PL -PL -PL -PL -PL -Up -Up -ff -HY -Ke -fZ -mP -lQ -uT -lQ -lQ -lQ -Hd -lQ -nh -Aw -ff -ff -ff -lX -lX -lX -wz -tz -Km -Lr -wz -Ni -VR -Ad -NG -nK -ey -NG -NG -gr -gr -Ad -VR -SO -wz -tz -Km -Lr -vr -bm -"} -(83,1,1) = {" -Ew -sN -sN -Ow -Ow -Ow -Ow -cn -cK -FH -FH -FH -FH -Tv -FH -FH -Sv -FH -XV -XV -FH -XV -FH -XV -cK -gP -Ow -Ow -Ow -Ow -fN -Ig -AZ -XG -cc -va -XG -AZ -AZ -AZ -AZ -fk -AZ -AZ -sN -sN -sN -sN -PL -Co -Nk -Oi -Co -PL -PL -PL -ME -ME -GX -GX -GX -GX -GX -GX -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -gk -GX -GX -GX -PL -PL -PL -PL -PL -PL -Up -Up -ff -Dz -Ke -fZ -mP -lQ -uT -lQ -lQ -lQ -NT -lQ -nh -HY -as -Sq -ff -lX -lX -lX -wz -tz -Km -Lr -wz -Ni -VR -Ad -Ad -Ad -pA -Ls -Ls -Ad -Ad -Ad -pE -Ni -wz -tz -Km -Lr -wz -bm -"} -(84,1,1) = {" -Ew -sN -sN -zB -zB -Ow -Ow -Ow -Ow -bX -cK -cK -FH -FH -cK -cK -dC -cK -cK -cK -cK -cK -cK -fL -zB -zB -zB -Ow -Ow -Ow -fN -Zr -kT -Bu -XU -va -XG -AZ -AZ -AZ -AZ -fk -gW -AZ -Co -Co -Co -Co -Co -Co -Nk -eF -Co -PL -PL -PL -PL -Tj -Tj -GX -GX -ME -ME -GX -GX -Tj -GX -gk -gk -gk -gk -gk -gk -gk -gk -GX -GX -GX -PL -PL -PL -PL -PL -PL -Up -Up -ff -HY -Ke -fZ -mP -lQ -uT -lQ -lQ -lQ -nS -lQ -nh -Ke -Ke -Sq -ff -Wb -lX -lX -wz -tz -Km -Lr -wz -wz -wz -ES -ES -dc -JH -ES -ES -dc -ES -ES -wz -wz -wz -tz -Km -Lr -wz -bm -"} -(85,1,1) = {" -Ew -sN -sN -zB -zB -Ow -QG -Ow -Ow -Ow -fk -fk -cR -dm -fk -fk -fk -fk -fk -fk -fk -fk -zB -zB -zB -zB -Ow -QG -Vk -Ow -fN -fN -fN -fN -cc -va -fF -fk -fk -fk -fk -fk -AZ -AZ -Co -Ai -Ai -UZ -eF -eF -yf -eF -Co -PL -PL -PL -PL -Tj -Iy -GX -GX -ME -ME -cC -GX -Tj -GX -GX -gk -gk -gk -gk -gk -Iy -GX -GX -Iy -GX -PL -PL -PL -PL -PL -PL -Up -Up -ff -Dz -Ke -gi -HY -lQ -uT -lQ -cZ -lQ -nS -lQ -HY -fW -bS -bO -ff -Wb -Ni -lX -wz -tz -Km -Lr -Py -Py -Py -Py -Py -Py -Py -wz -wz -wz -wz -wz -wz -wz -wz -tz -Km -Lr -wz -bm -"} -(86,1,1) = {" -Ew -sN -sN -zB -zB -Ow -Ow -Ow -Ow -QG -fk -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -fk -QG -Ow -Ow -Ow -QG -Ow -Ow -zB -zB -zB -zB -fk -cc -va -XG -fk -Ow -Ow -oJ -fk -AZ -AZ -Co -Zm -rH -zb -zb -bo -YE -eF -Co -PL -PL -PL -PL -GX -ME -uq -ME -ME -ME -ME -GX -GX -GX -GX -gk -gk -gk -gk -gk -GX -GX -ZZ -PL -PL -PL -PL -PL -PL -PL -PL -Up -Up -ff -HY -Ke -fZ -HY -lQ -uT -lQ -lQ -lQ -nS -lQ -HY -Ke -Ke -wx -ff -Wb -Ni -Ni -wz -tz -Km -cY -PQ -GW -GW -GW -GW -GW -GW -GW -GW -GW -GW -GW -GW -GW -GW -HU -Km -Lr -wz -bm -"} -(87,1,1) = {" -Ew -sN -sN -zB -zB -Ow -Ow -Ow -Ow -Ow -fk -AZ -AZ -gW -AZ -AZ -AZ -AZ -AZ -gW -AZ -fk -fk -fk -fk -fk -fk -fk -fk -fk -fk -fk -fk -fk -cc -va -XG -fk -fk -fk -Ow -fk -AZ -AZ -Co -fg -fT -zb -zb -zb -YE -aU -Co -PL -PL -PL -PL -PL -PL -ME -ME -ME -ME -ME -GX -GX -GX -GX -gk -gk -gk -gk -gk -GX -GX -PL -PL -PL -PL -PL -PL -PL -PL -PL -Up -Up -ff -pp -HY -mU -nD -Ju -Iw -lQ -lQ -lQ -nS -lQ -cP -HY -HY -HY -ff -Wb -SO -SO -wz -tz -bQ -Km -uG -Km -Km -Km -Km -Km -Km -Km -bQ -Km -bQ -Km -Km -Km -Km -Km -bQ -Lr -wz -bm -"} -(88,1,1) = {" -Ew -sN -sN -zB -zB -zB -Ow -QG -Ow -Ow -nu -nu -nu -Pj -Pj -nu -nu -nu -AZ -AZ -AZ -MA -wA -lT -lT -kJ -DH -iS -iS -wA -wA -wA -wA -wA -Uj -va -iO -wA -pW -fk -Ow -fk -AZ -AZ -Co -bc -fg -zi -eF -mQ -iD -mQ -Co -PL -PL -PL -PL -PL -PL -PL -PL -ME -ME -ME -GX -GX -GX -GX -GX -GX -gk -gk -gk -GX -GX -PL -PL -PL -PL -PL -PL -ME -ME -ME -Up -Up -ff -ff -ff -ff -ff -LV -Mj -Bi -lQ -ga -hO -tW -ff -ff -ff -ff -ff -Ni -Ni -Ni -wz -MB -Km -UP -yI -Wg -Wg -Wg -Wg -Wg -Wg -Wg -Wg -Wg -Wg -Wg -Wg -Wg -Wg -Wg -Wg -kf -wz -bm -"} -(89,1,1) = {" -Ew -sN -sN -sN -zB -zB -Ow -Ow -Ow -nu -nu -FO -QI -iV -Bn -Mf -rb -nu -nu -AZ -AZ -Qm -AZ -AZ -zU -AZ -AZ -JD -Eg -AZ -AZ -AZ -AZ -AZ -AZ -va -AZ -AZ -XG -fk -fk -fk -fk -fk -Co -Co -Co -Co -Co -md -RD -md -Co -PL -Pg -Pg -Pg -PL -PL -PL -PL -ME -ME -ME -GX -GX -GX -GX -ZZ -GX -gk -gk -GX -GX -PL -PL -PL -PL -PL -PL -PL -ME -GX -ME -lX -lX -lX -lX -lX -lX -fO -KB -Uh -uT -lQ -nS -KB -KB -Zc -nH -SO -Ni -UR -SO -Ni -Ni -wz -tz -Km -Lr -Py -wz -wz -wz -wz -wz -vr -wz -wz -ac -wz -wz -wz -wz -wz -wz -wz -wz -wz -bm -"} -(90,1,1) = {" -Ew -sN -sN -sN -zB -zB -zB -zB -Ow -nu -dt -dt -dt -dt -dt -ly -dt -dt -nu -OZ -AZ -Lp -AZ -AZ -AZ -AZ -AZ -vM -jM -AZ -AZ -AZ -AZ -AZ -AZ -va -AZ -AZ -iO -wA -wA -wA -wA -wA -wA -wA -wA -wA -xV -dR -Ol -dR -xV -kp -kp -zX -Pg -PL -PL -PL -ME -uq -ME -ME -ME -ME -Tj -GX -GX -GX -GX -GX -GX -ZZ -PL -PL -PL -PL -PL -PL -GX -Iy -GX -Tj -Ni -lX -lX -lX -lX -lX -Ni -Ni -Py -tz -bQ -Lr -wz -wz -wz -wz -wz -vr -wz -wz -wz -wz -wz -tz -Km -Lr -Py -Ni -SO -Ni -Ni -SO -SO -Ni -Ni -dW -Ni -Ni -Up -Up -Ni -Ni -SO -Ni -lX -bm -"} -(91,1,1) = {" -Ew -sN -sN -sN -sN -zB -zB -zB -Ow -Pj -dt -dt -vR -nu -ux -XK -og -og -yr -Of -va -Sy -va -va -va -va -va -tv -va -va -va -va -va -va -tv -va -AZ -AZ -AZ -AZ -AZ -AZ -gW -AZ -AZ -AZ -AZ -AZ -Qz -wO -tX -Qz -Qz -Qz -wO -wk -Pg -PL -PL -PL -ME -ME -ME -cC -ME -cC -GX -GX -Iy -ME -ME -GX -GX -cC -ME -PL -PL -PL -PL -PL -ZZ -GX -GX -Tj -Ni -Ni -Ni -UR -Ni -Ni -Ni -Ni -Py -tz -Km -cY -GW -GW -GW -GW -GW -GW -GW -GW -GW -GW -GW -HU -Km -Lr -Py -Ni -lX -QT -QT -QT -Cs -Cs -Re -WE -Cs -eo -eo -Up -Up -SO -Ni -lX -lX -bm -"} -(92,1,1) = {" -Ew -sN -sN -sN -sN -zB -zB -zB -zB -Pj -dt -dt -vR -nu -vR -dt -dt -dt -dt -Gf -xI -cc -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -UI -AZ -be -cW -cW -cW -cW -cW -cW -cW -cW -cW -uK -jE -cd -jE -uK -Pk -Qz -wk -Pg -PL -PL -PL -PL -PL -PL -PL -GX -ic -ZY -GX -GX -ME -ME -ME -ME -ME -ME -PL -PL -PL -PL -ME -ME -GX -GX -GX -ao -ao -ao -Ni -Ni -UR -Ni -Ni -dz -tz -Km -Km -Km -Km -Km -Km -Km -Km -Km -Km -Km -Km -Km -Km -Km -Lr -Py -lX -lX -mS -mS -mS -mS -mS -mS -xL -SH -bA -mS -Up -Up -Ni -lX -lX -Up -bm -"} -(93,1,1) = {" -Ew -sN -sN -sN -sN -sN -zB -zB -zB -nu -dt -dt -dt -dt -dt -ly -dt -dt -nu -OZ -va -cc -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AC -AC -AZ -gG -AZ -AZ -AZ -Mv -AZ -ZU -fk -fk -fk -fk -fk -fk -fk -fk -Tt -Tt -mB -CD -mB -Tt -HK -Qz -wk -Pg -ME -PL -PL -PL -PL -PL -PL -GX -rX -qH -eB -GX -ME -ME -ME -ME -ME -PL -PL -PL -PL -PL -ME -ME -GX -GX -GX -ao -ao -ao -Ni -Ni -Ni -Ni -Ni -Py -tz -bQ -UP -Wg -Wg -Wg -Wg -Wg -Wg -Wg -Wg -tk -Km -UP -BP -Wg -kf -Py -lX -lX -mS -jt -TM -TM -SH -SH -SH -vn -Kh -mS -Up -Up -Up -Up -Up -Up -bm -"} -(94,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -nu -nu -FO -Gz -rb -Rv -PJ -iV -nu -nu -AZ -va -cc -AZ -AZ -qc -hI -zJ -AZ -AZ -WI -WI -AZ -AZ -AZ -AZ -AZ -AZ -AZ -JF -fk -Ow -Ow -Ow -Ow -Ow -Ow -fk -Tt -Ww -gI -Gv -gI -Tt -HK -Qz -wk -Pg -ME -PL -PL -PL -PL -PL -PL -Tj -SW -lD -GX -GX -ME -ME -ME -ME -ME -PL -PL -PL -PL -PL -ME -ME -ME -Tj -fo -ao -ao -ao -ao -ao -Ni -UR -lX -Py -tz -Km -Lr -wz -wz -wz -wz -Lq -GW -GW -GW -HU -Km -Lr -wz -Py -Py -Py -lX -lX -mS -nq -Lo -Lo -jO -SU -SU -En -Ur -mS -Up -Up -Up -Up -Up -Up -bm -"} -(95,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -nu -nu -nu -Pj -Pj -nu -nu -nu -fk -AZ -va -Zr -cW -cW -cW -cW -uK -mm -mm -mm -uK -cW -uK -mm -mm -uK -cW -cW -Xi -fk -zB -zB -Ow -Ow -Ow -zB -fk -Tt -BI -bW -wW -Tn -Tt -HK -Qz -wk -Pg -ME -PL -PL -PL -PL -PL -PL -PL -GX -GX -GX -ME -ME -ME -ME -PL -PL -PL -PL -PL -PL -PL -PL -PL -cC -GX -ao -ao -ao -ao -ao -ao -ao -lX -lX -Py -ob -Km -Lr -wz -Ni -UR -wz -tz -Km -Km -Km -Km -Km -Lr -wz -df -mS -Me -Me -mS -mS -mS -mS -mS -SH -iW -En -SU -Dp -mS -mS -mS -mS -Up -Up -Up -bm -"} -(96,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -Ow -QG -Ow -Ow -Ow -zB -zB -fk -fk -eO -fk -fk -fk -fk -Tt -Tt -Ne -Ne -Ne -Tt -Tt -Tt -Ne -Ne -Tt -Tt -Tt -Tt -sN -sN -sN -sN -Tt -Tt -Tt -Tt -Tt -wC -bW -wW -Tn -Tt -HK -Qz -wk -Pg -ME -GX -PL -PL -PL -PL -ME -ME -GX -GX -GX -ME -ME -ME -PL -PL -PL -PL -PL -PL -ME -ME -PL -cC -ME -GX -ao -ao -ao -ao -ao -ao -Up -Up -VG -VG -ob -Km -Lr -VG -VG -UR -wz -tz -Km -Km -Km -Km -Km -Lr -wz -df -mS -Hw -SH -SH -Hp -cF -SH -Hp -SU -Hu -SH -SU -WY -Zz -Bt -vi -mS -Up -Up -Up -bm -"} -(97,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -Ow -Ow -Ow -Ow -sW -Ow -Ow -zB -ZG -CI -ZG -Ow -Ow -Ow -Tt -Eb -OW -UB -OW -Eb -It -Tt -oQ -Wd -UB -OW -UB -Tt -sN -sN -sN -sN -Tt -Wd -Eb -Wd -Tt -sV -vI -wW -Tn -Tt -HK -Qz -wk -Pg -GX -GX -PL -PL -PL -ME -ME -ME -NW -GX -GX -cC -ME -uq -PL -PL -PL -PL -PL -ME -ME -ME -GX -GX -GX -GX -ao -ao -ao -ao -Up -Up -Up -Up -VG -mx -ob -Km -Lr -mx -VG -UR -wz -tz -Km -Km -Km -Km -Km -Lr -wz -Mx -mS -pv -SU -Rw -ue -Yg -PV -ue -Yg -SH -SH -oD -SU -SU -Ll -Rk -mS -Up -Up -Up -bm -"} -(98,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -Ow -Ow -Ow -QG -Ow -Ow -Ow -QG -Tt -Ez -Tt -Tt -Tt -Tt -Tt -Wd -Tn -TO -Tn -Tn -It -Tt -WN -Tn -TO -Tn -OW -Tt -sN -sN -sN -sN -Tt -Wd -Tn -Wd -Tt -Tn -Tn -wW -Tn -Tt -HK -Qz -wk -Pg -GX -PL -PL -PL -PL -ME -ME -ME -ME -ME -ME -ME -ME -ME -PL -PL -PL -PL -ME -ME -ME -Tj -GX -GX -GX -GX -ao -ao -ao -ao -Up -Up -Up -Up -VG -mx -ob -Km -Lr -mx -VG -Ni -wz -tz -Km -Km -Km -eq -Km -Lr -Vb -df -rw -ue -PV -ue -mS -tT -SU -mS -xj -SU -SH -SU -SU -gQ -Ll -VO -mS -Up -Up -Up -bm -"} -(99,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -Ow -Ow -QG -Ow -Ow -Ow -iw -xE -Tt -Vc -Eb -Wd -Wd -Wd -Tt -Wd -XQ -Tn -Tn -Tn -Wd -Tt -QN -Tn -Wd -Wd -Yh -Tt -sN -sN -sN -sN -Tt -Wd -Tn -Wd -Tt -Tt -Tt -wW -Sm -Tt -HK -Qz -wk -Pg -PL -PL -PL -PL -PL -PL -ME -ME -ME -ME -ME -PL -PL -PL -PL -PL -GX -Iy -GX -GX -ZZ -GX -GX -JE -Tj -ao -ao -ao -ao -Up -Up -Up -Up -Up -VG -mx -ob -Km -Lr -mx -VG -Ni -wz -tz -Km -Km -Km -Km -Km -Lr -Py -qs -SU -SH -SU -SH -mS -SH -SH -mS -eE -SU -SU -iF -SU -SU -Ll -VO -mS -Up -Up -Up -bm -"} -(100,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -oJ -Ow -Ow -Ow -Vk -Ow -kV -Vd -Tt -Av -wW -wW -wW -Vc -rF -Av -wW -Tt -Tt -Tn -Wd -Tt -ZT -Tn -Wd -Tt -Tt -Tt -sN -sN -sN -sN -Tt -Wd -wW -Vc -Vc -Vc -RH -wW -Wd -Tt -HK -wO -wk -Pg -PL -PL -PL -PL -PL -PL -ME -ME -ME -ME -ME -PL -PL -PL -PL -PL -ME -GX -GX -GX -PL -PL -PL -GX -GX -ao -ao -ao -ao -Up -Up -Up -VY -Up -VG -mx -ob -Km -Lr -mx -VG -Ni -wz -tz -Km -Km -Km -Km -Km -Lr -Py -Tp -mS -Hw -SU -Ur -mS -Me -Me -mS -mS -TM -SU -iF -SU -SU -Ll -Rk -mS -Up -Up -Up -bm -"} -(101,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -Ow -Ow -Ow -Ow -Vk -Ow -sD -ED -Tt -Wd -Tn -Tn -Tn -mr -Tt -Wd -wW -Iu -Ha -wW -Vc -Tt -ZT -KO -Wd -Wd -Wd -Tt -sN -sN -sN -sN -Tt -Wd -Go -Tn -Tn -Tn -XQ -Tn -Wd -Tt -HK -Qz -wk -Pg -fw -PL -PL -PL -PL -PL -ME -ME -ME -ME -ME -PL -PL -PL -PL -PL -ME -GX -GX -PL -PL -PL -PL -GX -GX -ao -ao -ao -ao -Up -Up -Up -Up -Up -VG -mx -ob -Km -Lr -mx -VG -UR -wz -tz -Km -Km -Km -Km -Km -Lr -Vb -qs -mS -pv -SU -oD -mS -Hg -hP -SH -mS -TM -SU -SU -WR -Zz -Bt -vi -mS -Up -Up -Up -bm -"} -(102,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -Ow -Ow -Ow -Ow -Ow -Ow -QG -zB -Tt -mr -It -Wd -mr -mr -Tt -vg -Tn -Tn -Tn -Tn -Av -Ie -Wd -XQ -Tn -fa -JK -Tt -sN -sN -sN -sN -Tt -Wd -wW -Tn -Tn -Tn -Tn -Tn -Wd -Tt -HK -Qz -wk -Pg -GX -ME -PL -PL -PL -PL -ME -ME -ME -ME -ME -PL -PL -PL -PL -ME -ME -GX -PL -PL -PL -PL -PL -GX -GX -GX -GX -ao -ao -ao -ao -ao -Up -Up -VG -mx -ob -Km -Lr -mx -VG -UR -wz -tz -Km -Km -Km -Km -Km -Lr -Py -qs -mS -Hw -SU -SH -Me -ev -tI -Ur -mS -oD -SU -Xw -SH -mS -mS -mS -mS -Up -Up -Up -bm -"} -(103,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -mg -Ow -Ow -Ow -Ow -Ow -Ow -zB -Tt -Tt -Tt -Tt -Tt -Tt -Tt -UM -OW -Wd -Wd -Wd -Vc -Wd -Wd -Wd -Wd -OW -UB -Tt -sN -sN -sN -sN -Tt -Wd -Vc -Wd -Wd -Wd -Wd -Wd -Wd -Tt -HK -Qz -wk -Pg -GX -ME -ME -PL -PL -PL -PL -PL -ME -uq -ME -PL -PL -PL -PL -ME -ME -Iy -PL -PL -PL -PL -GX -GX -GX -ZZ -Tj -Ni -ao -ao -ao -ao -Up -Up -VG -mx -ob -Km -Lr -mx -VG -Ni -vr -tz -Km -Km -Km -Km -Km -Lr -Py -qs -mS -pv -Qr -oD -Me -zZ -oD -SH -kP -SH -SH -SH -Ur -mS -Up -Up -Up -Up -Up -Up -bm -"} -(104,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -Ud -sO -Ow -Ow -Ow -Ow -Ow -zB -XY -Ud -sN -sN -sN -sN -Tt -Tt -Tt -Tt -Tt -Tt -Ez -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Wd -LN -Tt -Tt -Tt -Tt -Tt -Tt -Tt -HK -Qz -wk -Pg -Pg -Pg -Pg -PL -PL -PL -PL -PL -ME -ME -ME -PL -PL -PL -PL -ME -ME -GX -Iy -ZZ -PL -PL -ZZ -GX -GX -GX -GX -Ni -ao -ao -ao -ao -ao -ao -xk -mx -ob -Km -Lr -mx -xk -ao -wz -rY -Wg -Wg -Wg -tk -Km -Lr -Py -qs -mS -mS -mS -mS -mS -mS -mS -mS -mS -dT -mS -mS -mS -mS -Up -Up -Up -Up -Up -Up -bm -"} -(105,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -Ud -hU -Ow -QG -Ow -Ow -Ow -XY -Ud -Ud -sN -sN -sN -sN -sN -sN -Tt -cI -Wd -Eb -Vc -Wd -Wd -Eb -Wd -Wd -Wd -Wd -Wd -Eb -Wd -Wd -Wd -Tn -wW -Ie -tP -Pg -Pg -EQ -kp -kp -nA -Qz -wk -Pg -Pg -Pg -Pg -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -GX -GX -GX -GX -GX -GX -ME -ME -ME -GX -GX -Ni -ao -ao -ao -ao -ao -ao -xk -mx -ob -Km -Lr -mx -xk -ao -wz -wz -wz -wz -wz -tz -Km -Lr -Py -Ni -Ni -lX -lX -lX -lX -mS -gc -Zy -TM -SH -JZ -UO -Or -mS -Up -Up -Up -Up -Up -Up -bm -"} -(106,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -Ud -ur -Ow -Ow -Ow -Ow -zB -OB -Ud -sN -sN -sN -sN -sN -sN -sN -Tt -XD -Tn -Tn -Av -wW -wW -ax -wW -wW -Vc -wW -Go -wW -wW -Vc -Vc -wW -Go -Vc -cA -UK -Pg -HK -Qz -jT -wJ -wO -wk -Pg -Pg -Pg -Pg -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -ME -GX -GX -Tj -GX -ME -ME -ME -ME -ic -ZY -Ni -ao -ao -ao -ao -ao -ao -xk -mx -ob -bQ -Lr -mx -xk -ao -ao -ao -ao -ao -wz -tz -Km -Lr -Py -Ni -Ni -lX -lX -lX -lX -mS -SH -SU -SU -SH -Me -SU -Ti -mS -Up -Up -Up -Up -Up -Up -bm -"} -(107,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -pU -zB -Ow -Ow -Ow -Ow -zB -zB -sN -sN -sN -sN -sN -sN -sN -sN -Tt -Tt -Xc -wW -Vc -Tt -dV -Tt -dV -Tt -Wd -XQ -dw -Tn -Tn -Wd -Tt -Wd -Wd -Tt -EC -UK -Pg -HK -Qz -Qz -wJ -Qz -wk -Pg -Pg -Pg -Pg -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -Iy -GX -GX -ME -cC -ME -ME -rX -qH -UR -Ni -lX -lX -lX -ao -ao -VG -mx -ob -Km -Lr -mx -VG -ao -ao -ao -ao -ao -wz -tz -Km -Lr -Py -SO -Ni -lX -lX -lX -lX -mS -qj -SU -SU -oD -mS -mS -mS -mS -Up -Up -Up -Up -Up -Up -bm -"} -(108,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -eY -eY -Ow -Ow -Ow -sN -sN -sN -sN -sN -sN -sN -sN -Tt -kE -Wd -Wd -Wd -Tt -gH -Tt -gH -Tt -Wd -Tn -UB -UM -Tn -Wd -Tt -Tt -Tt -Tt -fk -UK -UK -Oe -tX -tX -qp -tX -Qg -UK -UK -UK -UK -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -ME -ME -cC -ME -SW -lD -Ni -Ni -lX -lX -lX -hR -lX -VG -mx -ob -Km -Lr -mx -VG -ao -ao -ao -ao -ao -wz -tz -Km -Lr -Py -Ni -SO -lX -lX -lX -lX -mS -qj -SU -SU -SH -JX -qA -Or -mS -Up -Up -Up -Up -Up -Up -bm -"} -(109,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -eY -eY -eY -eY -eY -uc -uc -uc -sN -sN -sN -sN -sN -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Am -Tn -Tt -Tt -Tn -Yh -Tt -sN -sN -sN -fk -Pg -Pg -HK -Qz -jT -wJ -Qz -wk -Pg -Pg -Pg -UK -PL -PL -UU -UU -UU -UU -UU -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -ME -ME -ME -ME -GX -Tj -Ni -Ni -Ni -Ni -Ni -lX -lX -VG -mx -ob -Km -Lr -mx -VG -ao -ao -ao -ao -ao -wz -tz -Km -Lr -Py -Ni -Ni -Ni -Ni -lX -lX -mS -qj -GE -SH -TM -Yo -SH -Ti -mS -Up -Up -Up -Up -Up -Up -bm -"} -(110,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -eY -eY -eY -eY -eY -uc -uc -uc -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -Tt -pB -Tn -Tn -Tn -Tn -Wd -Tt -sN -sN -sN -fk -Pg -Pg -HK -Qz -Qz -wJ -Qz -wk -Pg -Pg -Pg -UK -UU -UU -UU -Gl -MT -ol -UU -UU -UU -UU -UU -UU -UU -UU -PL -PL -PL -ME -ME -ME -ME -PL -PL -ME -lX -lX -Up -UR -Ni -Ni -lX -VG -mx -ob -Km -Lr -mx -VG -ao -ao -ao -ao -ao -wz -tz -Km -Lr -Py -bp -zv -zv -zv -zv -zv -mS -mS -mS -mS -mS -mS -mS -mS -mS -Up -Up -Up -Up -Up -Up -bm -"} -(111,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -eY -LF -eY -LF -eY -uc -uc -uc -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -Tt -pB -Tn -Wd -eA -Wd -Wd -Tt -sN -sN -sN -fk -Pg -Pg -HK -Qz -Qz -wJ -wO -wk -Pg -Pg -Pg -UK -Mq -cJ -QM -tn -kt -tn -QM -cJ -su -cJ -cJ -QM -cJ -UU -PL -PL -PL -ME -ME -ME -ME -PL -PL -ME -lX -Up -Up -UR -UR -Ni -lX -VG -VG -ob -Km -Lr -VG -VG -ao -ao -ao -ao -ao -wz -tz -Km -Lr -Py -Py -uU -Py -Py -Py -Py -Py -Py -Py -wz -wz -wz -wz -wz -wz -wz -Up -Up -Up -Up -Up -bm -"} -(112,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -eY -eY -eY -eY -eY -uc -uc -uc -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -Tt -Wd -XQ -Wd -Tt -Wd -Wd -Tt -sN -sN -sN -fk -Pg -Pg -HK -Qz -Qz -wJ -Qz -wk -Pg -Pg -Pg -UK -Kq -BG -Qn -Qn -Qn -Qn -EA -cJ -cJ -iP -dO -Qn -iP -UU -PL -PL -PL -PL -ME -ME -PL -PL -PL -PL -Up -Up -Up -Up -Ni -Ni -Ni -lX -Py -ob -Km -Lr -wz -Ni -ao -ao -ao -ao -ao -wz -tz -Km -cY -GW -GW -GW -GW -GW -GW -GW -GW -GW -PQ -GW -GW -GW -GW -GW -De -wz -Up -Up -Up -Up -Up -bm -"} -(113,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -sN -sN -sN -sN -sN -sN -sN -sN -Tt -fA -fA -fA -Tt -fA -fA -Tt -sN -sN -sN -fk -Pg -Pg -HK -WW -Qz -Lz -Qz -wk -Pg -Pg -Pg -Pg -UU -Aa -cJ -Qn -wl -wl -Qn -cJ -UU -yV -Qn -Qn -yV -UU -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -Up -Up -Up -Up -Up -Vy -Ni -lX -Py -tz -Km -Lr -wz -Ni -Ni -ao -ao -ao -ao -UX -tz -Km -Km -bQ -Km -Km -Km -Km -Km -Km -bQ -Km -uG -Km -Km -Km -Km -bQ -Lr -wz -Up -Up -Up -Up -Up -bm -"} -(114,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -sN -sN -sN -sN -sN -sN -sN -sN -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -sN -sN -sN -fk -Pg -Pg -yu -Kj -Kj -Pk -Qz -wk -Pg -Pg -Pg -Pg -UU -UU -Qn -Qn -UU -UU -EA -cJ -fU -tY -cJ -cJ -tY -UU -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -Up -Up -Up -Up -Up -wn -Vy -Ni -Py -tz -Km -Lr -wz -SO -Ni -ao -ao -gC -qr -wz -rY -Wg -Wg -Wg -Wg -Wg -Wg -Wg -Wg -Wg -Wg -Wg -yI -Wg -Wg -Wg -tk -Km -Lr -wz -Up -Up -Up -Up -Up -bm -"} -(115,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -PL -PL -PL -PL -PL -HK -Qz -wk -PL -PL -PL -PL -PL -UU -cJ -wY -Qn -pn -Qn -cJ -CK -tY -Qn -Qn -tY -UU -PL -PL -PL -PL -PL -PL -PL -PL -PL -ME -lX -lX -Up -Up -Up -wn -Si -Ni -Py -tz -Km -Lr -wz -Ni -Ni -ao -ao -gC -gC -wz -vr -wz -wz -wz -wz -Da -wz -wz -wz -wz -wz -wz -Py -am -YS -cy -tz -Km -Lr -wz -Up -Up -Up -Up -Up -bm -"} -(116,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -sN -sN -sN -eY -eY -eY -sN -sN -sN -PL -PL -PL -PL -PL -HK -Qz -wk -PL -PL -PL -PL -PL -UU -UU -NB -pN -Qn -Wu -Cy -CK -zN -Qn -Qn -zN -UU -PL -PL -PL -PL -PL -PL -PL -PL -PL -ME -lX -lX -lX -Up -Up -Si -UR -Ni -Py -tz -Km -Lr -wz -UR -Ni -ao -ao -gC -gC -Ni -SO -Ni -Ni -Ni -Ni -zv -Ni -Ni -Up -Ni -lX -lX -Py -Hh -re -tE -tz -Km -Lr -KE -KE -KE -KE -KE -KE -bm -"} -(117,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -PL -PL -PL -HK -Qz -wk -PL -PL -PL -PL -PL -PL -UU -Ps -hQ -Bv -OF -ol -Gn -bk -cJ -cJ -bk -UU -PL -PL -PL -PL -PL -vW -eY -eY -eY -eY -Ni -Ni -Ni -Ni -Ni -Ni -Ni -Ni -Py -tz -Km -Lr -wz -Ni -Ni -ao -ao -gC -gC -gC -ao -ao -Ni -Ni -Ni -zv -Up -Up -Up -Up -Py -Py -Py -xz -Fp -OY -tz -Km -Lr -AQ -IP -JL -JL -JL -KE -bm -"} -(118,1,1) = {" -Ew -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -PL -PL -PL -HK -Qz -wk -PL -PL -PL -PL -PL -PL -UU -UU -UU -CK -UU -CK -UU -ig -km -km -zE -UU -PL -PL -PL -PL -PL -eY -eY -eY -eY -eY -Ni -UR -Ni -Ni -Ni -Ni -Ni -Ni -Py -tz -Km -Lr -wz -Ni -Ni -ao -ao -jm -gC -jm -ao -ao -ao -Ni -Ni -Up -Up -Up -Up -Up -Py -Lq -GW -GW -GW -GW -HU -Km -Lr -AQ -ok -cB -cB -JL -KE -bm -"} -(119,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -eY -LF -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -LF -eY -eY -eY -UC -kh -Wx -uc -uc -uc -uc -uc -eY -eY -hG -eY -eY -eY -ZC -ZC -eY -eY -eY -hG -eY -eY -eY -eY -eY -eY -LF -eY -eY -eY -eY -Jq -Jq -bs -bs -bs -hW -bs -Jq -le -iX -Rr -MO -Pm -bs -bs -bs -bs -gC -Ei -gC -ao -ao -ao -TR -bs -zC -zC -zC -zC -zC -le -iX -HE -HE -HE -Au -HE -HE -MO -KE -yv -Yt -cB -JL -KE -Yw -"} -(120,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -MH -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -UC -Bb -Wx -eY -eY -eY -eY -eY -eY -eY -hG -eY -eY -eY -eY -eY -eY -eY -eY -hG -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -Jq -Jq -Jq -Jq -HI -bs -HI -Jq -le -iX -HE -MO -we -bs -HI -bs -bs -gC -jm -ao -ao -ao -ao -HI -bs -mG -zC -zC -zC -zC -le -iX -HE -HE -HE -Au -HE -HE -MO -KE -Xz -cB -cB -JL -KE -Yw -"} -(121,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -LF -eY -eY -eY -eY -eY -eY -eY -eY -eY -LF -eY -eY -eY -eY -eY -eY -eY -LF -eY -LF -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -vW -UC -Bb -Wx -vW -eY -eY -eY -hN -hN -hN -hZ -eY -eY -hN -hN -Xj -Xj -jr -hN -hZ -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -Vv -zC -zC -zC -zC -zC -zC -zC -zC -le -iX -HE -MO -we -bs -bs -TR -bs -ao -ao -ao -ao -ao -ao -bs -bs -mG -bs -zC -zC -zC -le -iX -HE -HE -HE -Au -HE -HE -MO -KE -pd -cB -cB -JL -KE -Yw -"} -(122,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -Gr -Gr -SG -UC -Bb -Wx -eY -eY -eY -hG -eY -eY -vW -eY -eY -eY -eY -eY -Fc -mc -eY -eY -LF -eY -eY -eY -eY -eY -eY -LF -eY -eY -eY -Vv -zC -zC -zC -zC -zC -zC -zC -zC -le -iX -HE -MO -we -Jq -bs -TR -bs -ao -ao -ao -ao -ao -ao -bs -HI -mG -bs -zC -zC -zC -lz -iX -HE -HE -HE -Au -HE -HE -MO -dK -QO -cB -cB -JL -KE -Yw -"} -(123,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -vW -eY -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -hG -UC -Bb -Wx -eY -eY -eY -hG -eY -eY -eY -eY -eY -eY -eY -eY -Fc -sL -eY -eY -eY -eY -eY -eY -eY -eY -Vv -Vv -Vv -Vv -Vv -Vv -zC -zC -zC -zC -zC -zC -zC -bs -le -iX -HE -MO -we -Jq -bs -HI -bs -ao -ao -ao -ao -ao -ao -bs -bs -mG -bs -bs -bs -zC -le -iX -HE -HE -HE -Au -HE -Rr -DN -Iq -QO -cB -NL -bT -KE -Yw -"} -(124,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -eY -hG -UC -Bb -Wx -eY -eY -eY -eY -eY -eY -MH -eY -eY -eY -eY -eY -sL -sL -eY -eY -eY -eY -eY -eY -eY -Vv -Vv -Vv -Vv -Vv -Vv -Vv -zC -zC -zC -zC -zC -zC -zC -bs -le -iX -HE -MO -we -Jq -bs -bs -bs -ao -ao -ao -ao -ao -ao -hW -bs -mG -bs -TR -bs -hW -le -iX -HE -HE -HE -Au -Rr -HE -DN -KE -xM -Wi -cB -AW -KE -Yw -"} -(125,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -hN -hN -hZ -UC -Bb -Wx -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -sL -sL -eY -eY -eY -eY -eY -eY -eY -Vv -Vv -Vv -Vv -Vv -Vv -Vv -zC -zC -zC -zC -zC -zC -Jq -HI -le -iX -HE -MO -we -Jq -bs -BV -bs -ao -ao -ao -ao -ao -ao -ao -bs -mG -bs -bs -bs -bs -le -PR -jB -jB -jN -jN -Yy -HE -DN -KE -AW -ok -AW -wa -KE -Yw -"} -(126,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -eY -eY -hG -eY -vW -eY -eY -LF -eY -eY -eY -UC -Bb -Wx -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -sL -sL -eY -eY -eY -jU -Gr -Gr -Gr -Vv -Vv -Vv -Vv -Vv -Vv -Vv -zC -zC -zC -zC -zC -Jq -Jq -bs -le -iX -HE -MO -we -Jq -Jq -Jq -bs -ao -ao -ao -ao -ao -ao -ao -bs -mG -bs -WH -WH -qm -qm -WH -WH -le -le -le -Ru -nP -DN -KE -KE -KE -KE -KE -KE -Yw -"} -(127,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -LF -eY -eY -eY -eY -eY -eY -uc -uc -uc -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -vW -eY -eY -eY -eY -eY -hG -eY -dA -Ia -OH -Ia -Ia -Ia -Ia -nn -Gh -bf -Ia -Ia -OH -Ia -Ia -Ia -Ia -Ia -Ia -OH -Ia -Ia -Sa -mc -eY -eY -eY -kb -eY -eY -eY -Vv -Vv -Vv -Vv -Vv -Vv -Vv -zC -zC -zC -zC -zC -Jq -Jq -bs -le -iX -HE -MO -we -Jq -Jq -Jq -bs -ao -ao -ao -ao -ao -ao -TR -bs -mG -bs -WH -oq -Fw -Fw -oq -WH -we -we -le -iX -HE -MO -rz -mj -cB -cB -cB -zC -Yw -"} -(128,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -LF -eY -eY -eY -eY -eY -eY -eY -uc -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -hN -hZ -eY -sL -eY -eY -eY -eY -eY -eY -UC -Bb -Wx -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -sL -eY -eY -eY -kb -eY -eY -eY -Vv -Vv -Vv -Vv -Vv -Vv -Vv -zC -zC -zC -zC -zC -Jq -HI -bs -le -iX -HE -MO -we -Jq -Jq -Jq -TR -ao -ao -ao -ao -ao -bs -bs -bs -WH -WH -WH -eQ -nR -eQ -eQ -WH -WH -WH -le -iX -HE -MO -rz -cB -cB -cB -cB -zC -Yw -"} -(129,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -LF -eY -eY -eY -eY -eY -eY -LF -eY -eY -eY -aw -Ia -Ia -Ia -Ia -OH -Ia -Ia -Ia -Ia -Ia -Ia -Ia -Ia -Ia -Ia -Sa -eY -eY -eY -eY -eY -eY -UC -Bb -Wx -eY -eY -eY -eY -eY -eY -eY -uc -eY -eY -eY -eY -eY -sL -eY -eY -eY -kb -eY -eY -eY -eY -Vv -Vv -Vv -Vv -Vv -Vv -zC -zC -zC -zC -zC -zC -zC -Jq -le -iX -HE -MO -we -Jq -Jq -Jq -bs -ao -ao -ao -ao -ao -ao -bs -bs -WH -Fw -eQ -nR -Gk -Gk -eQ -eQ -Fw -WH -le -iX -HE -MO -rz -cB -cB -cB -cB -zC -Yw -"} -(130,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -vW -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -UC -Bb -Wx -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -Gr -SG -eY -sL -eY -Gr -Gr -eY -eY -vW -eY -eY -Vv -Vv -Vv -Vv -Vv -Vv -zC -zC -zC -zC -zC -zC -zC -Jq -le -iX -HE -MO -we -Jq -Jq -Jq -bs -ao -ao -ao -ao -ao -ao -TR -bs -WH -RY -eQ -Gk -Gk -Gk -Gk -eQ -sS -WH -le -iX -HE -MO -rz -cB -cB -rz -rz -zC -Yw -"} -(131,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -eY -eY -eY -eY -LF -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -LF -eY -eY -eY -eY -UC -Bb -Wx -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -eY -hG -eY -sL -eY -eY -eY -eY -eY -eY -eY -Vv -Vv -Vv -Vv -Vv -to -to -to -to -to -to -to -to -to -to -le -iX -Rr -MO -we -Jq -Jq -Jq -bs -ao -ao -ao -ao -ao -ao -bs -bs -WH -Fw -eQ -Gk -WH -WH -Gk -eQ -Fw -WH -le -iX -HE -MO -we -we -we -zC -zC -zC -Yw -"} -(132,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -eY -hG -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -vW -uc -uc -uc -uc -UC -Bb -Wx -vW -eY -eY -eY -uc -uc -uc -uc -uc -eY -eY -hG -eY -sL -eY -eY -eY -eY -eY -MH -eY -Vv -Vv -Vv -Vv -Vv -to -ze -Kf -yw -lp -uJ -KR -jd -eD -eD -QC -LO -HE -MO -we -Jq -Jq -Jq -bs -ao -ao -ao -ao -ao -ao -bs -bs -WH -Fw -eQ -eQ -Gk -Gk -eQ -eQ -Fw -WH -le -iX -HE -MO -we -Jq -Jq -zC -zC -zC -Yw -"} -(133,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -vW -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -eY -hG -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -UC -Bb -Wx -eY -eY -eY -eY -uc -uc -uc -uc -uc -eY -eY -hG -eY -sL -eY -eY -eY -eY -eY -eY -eY -Vv -to -to -to -to -to -ze -Zw -yw -Np -uJ -af -uJ -uJ -uJ -Au -HE -HE -MO -we -Jq -BV -bs -bs -ao -ao -ao -ao -ao -ao -bs -TR -WH -WH -WH -EO -Gk -Gk -BD -WH -WH -WH -le -iX -HE -MO -we -bs -zC -zC -zC -zC -Yw -"} -(134,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -uc -LF -eY -eY -eY -LF -eY -eY -eY -eY -eY -eY -hG -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -UC -Bb -Wx -eY -eY -eY -eY -uc -uc -uc -uc -uc -eY -eY -hG -eY -sL -eY -eY -eY -kb -eY -eY -Vv -Vv -to -yd -yn -ze -ze -ze -GR -fn -Np -uJ -af -uJ -uJ -uJ -Au -HE -HE -MO -we -HI -bs -TR -HI -bs -ao -ao -ao -ao -ao -bs -bs -qm -ja -eQ -eQ -Gk -Gk -eQ -eQ -ja -qm -le -iX -HE -MO -we -bs -zC -zC -zC -zC -Yw -"} -(135,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MH -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -hG -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -UC -Bb -Wx -eY -eY -eY -eY -eY -eY -uc -eY -eY -eY -eY -eY -eY -sL -eY -eY -eY -kb -eY -eY -Vv -Vv -to -ze -yk -dv -to -ze -yk -ze -Np -uJ -af -Kv -uJ -uJ -Au -HE -HE -MO -we -Jq -Jq -Jq -bs -bs -bs -ao -ao -ao -ao -ao -bs -qm -ja -eQ -Gk -Gk -Gk -Gk -eQ -ja -qm -le -iX -Rr -MO -we -Jq -zC -zC -zC -zC -Yw -"} -(136,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -eY -eY -uc -uc -uc -MH -vW -eY -Gr -Gr -Gr -SG -eY -eY -eY -eY -uc -uc -UC -Bb -Wx -uc -uc -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -sL -eY -eY -eY -kb -eY -eY -Vv -Vv -to -YB -yk -dv -to -ze -yk -ze -lp -uJ -af -uJ -uJ -uJ -Au -HE -HE -MO -we -Jq -Jq -Jq -bs -TR -bs -bs -ao -ao -ao -ao -Jq -WH -WH -WH -nR -Gk -Gk -eQ -WH -WH -WH -le -iX -HE -MO -we -Jq -zC -zC -zC -zC -Yw -"} -(137,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -UC -Bb -Wx -uc -eY -LF -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -mc -eY -LF -eY -eY -eY -eY -Vv -Vv -to -ns -yk -yw -to -ze -yk -ze -lp -uJ -af -uJ -uJ -uJ -Au -HE -HE -MO -we -Jq -Jq -Jq -bs -bs -bs -bs -ao -ao -ao -ao -Jq -WH -ja -eQ -eQ -Gk -Gk -eQ -eQ -ja -WH -le -iX -HE -MO -we -Jq -zC -zC -zC -zC -Yw -"} -(138,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -UC -kh -Wx -eY -LF -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -OR -Ia -JC -HT -eY -eY -eY -Vv -Vv -to -ML -ze -yw -to -XE -yk -ze -lp -uJ -af -uJ -uJ -uJ -Au -HE -HE -MO -CN -bG -bG -bG -bG -bG -bs -bs -ao -ao -ao -ao -Jq -WH -ja -eQ -Gk -Gk -Gk -Gk -eQ -ja -WH -le -iX -HE -MO -Pm -WH -WH -WH -WH -WH -Yw -"} -(139,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -eY -MH -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -eY -LF -eY -eY -uc -uc -UC -Bb -Wx -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -eY -sL -sL -eY -eY -to -to -to -to -ns -to -to -to -XE -yk -Fd -lp -uJ -af -uJ -uJ -uJ -Au -HE -HE -MO -WG -bG -lG -lG -lG -bG -TR -HI -ao -ao -ao -ao -Jq -WH -WH -WH -qa -Gk -Gk -eQ -WH -WH -WH -le -iX -HE -MO -we -WH -rp -rp -rp -WH -Yw -"} -(140,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -LF -eY -eY -eY -eY -LF -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -eY -vW -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -LF -eY -uc -uc -UC -Bb -Wx -uc -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -eY -sL -sL -eY -eY -to -zw -yn -ns -ns -BC -kX -nc -ns -ns -ns -cX -lt -af -wG -wG -wG -Ax -nP -nP -DN -dD -JY -oO -Qc -lG -bG -bs -bs -ao -ao -ao -ao -bs -bs -WH -Di -mK -MP -MP -NU -Di -WH -bs -le -SP -yt -Pe -Yb -WH -Gk -Gk -AU -WH -Yw -"} -(141,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -uc -uc -UC -Bb -Wx -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -to -to -to -MN -MN -to -to -to -ze -yk -il -GR -yk -yk -yk -yk -yk -yd -ze -mh -vP -nQ -um -um -jN -Yy -Rr -MO -PE -Qc -oO -Lh -lG -bG -bs -bs -ao -ao -ao -ao -bs -HI -WH -Di -mK -WH -WH -NU -Di -WH -bs -le -SP -WM -Pe -Dk -yK -Gk -yl -Gk -WH -Yw -"} -(142,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -eY -eY -Th -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -eY -eY -UC -Bb -Wx -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -to -lf -ze -kx -MN -ze -ze -hd -ze -yk -he -yk -yk -yk -yk -yk -GR -Fd -to -to -to -to -to -to -we -iX -HE -MO -WG -bG -Lm -Qc -lG -bG -bs -bs -ao -ao -ao -ao -bs -Jq -WH -tZ -mK -Di -Di -NU -TX -WH -bs -le -SP -yt -Pe -Dk -Gk -Gk -Gk -Nn -WH -Yw -"} -(143,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -nd -nd -nd -gs -XC -nd -nd -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -eY -eY -eY -eY -UC -Bb -Wx -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -to -lf -il -oX -oX -il -ns -ns -ns -ns -ns -ze -DI -hK -Qx -ze -ze -ze -to -zC -zC -zC -zC -zC -we -Iv -jN -cj -PE -bG -oO -Qc -lG -bG -bG -bs -ao -ao -ao -ao -bs -Jq -WH -WH -wh -pf -pf -eQ -WH -WH -bs -le -SP -yt -Pe -Yb -WH -AU -Gk -Gk -WH -Yw -"} -(144,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -Gd -jS -gF -Tx -Ob -Gd -nd -MJ -MJ -LF -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -eY -lC -Zl -mC -mC -mC -mC -mC -mC -mC -uc -uc -uc -uc -uc -eY -eY -eY -vW -UC -Bb -Wx -eY -uc -uc -uc -uc -uc -ae -ae -ae -ae -ae -ae -to -lf -il -fQ -fQ -yk -ze -to -to -to -wp -to -to -to -to -to -to -to -to -zC -zC -zC -zC -zC -xc -PE -PE -xc -PE -bG -oO -Lh -lG -lG -bG -bs -ao -ao -ao -ao -bs -Jq -Jq -WH -wh -Gk -eQ -eQ -WH -bs -bs -le -SP -yt -Pe -Dk -WH -mA -AU -Gk -WH -Yw -"} -(145,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -so -uB -gF -gF -cg -QR -nd -MJ -MJ -MJ -LF -eY -eY -eY -eY -eY -eY -LF -eY -eY -eY -Es -lC -iT -ha -ha -Qu -jy -qW -mC -uc -uc -uc -uc -uc -eY -eY -eY -eY -UC -Bb -Wx -eY -uc -uc -uc -uc -uc -ae -ae -ae -ae -ae -ae -to -Wh -il -mE -bh -yk -ze -to -Wm -ze -ze -ze -CW -to -Vv -Vv -zC -zC -zC -zC -zC -zC -zC -bG -bG -Cc -Cc -bG -bG -bG -oO -Qc -Lh -lG -bG -bs -ao -ao -ao -ao -ao -bs -WH -WH -wh -Gk -BD -WH -WH -bs -bs -le -vQ -yt -Pe -Dk -WH -NV -Gk -Gk -WH -Yw -"} -(146,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -CE -uB -gF -cS -uB -gf -nd -MJ -MJ -MJ -eY -eY -eY -eY -eY -eY -eY -eY -eY -lC -lC -lC -lC -mC -ha -ha -ha -EW -jy -mC -mC -mC -mC -mC -mC -eY -eY -eY -eY -GM -hA -VN -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -to -ze -il -UE -vv -yk -Fd -to -Wm -ze -yk -Zw -qL -to -Vv -Vv -zC -zC -zC -zC -zC -zC -zC -bG -pr -YV -nm -pr -bG -bG -oO -oO -Qc -lG -bG -bG -ao -ao -ao -ao -gC -bs -WH -Rp -wh -Gk -eQ -kD -WH -WH -WH -WH -vQ -yt -Pe -Dk -WH -NS -Gk -Gk -WH -Yw -"} -(147,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -uy -nV -Ep -UJ -Hm -Mz -nd -MJ -MJ -MJ -MJ -MJ -MJ -MJ -IH -IH -lC -lC -lC -Zl -lC -Zl -lC -mC -hM -ha -ha -ha -ha -mC -ha -ha -qW -jy -mC -Vp -Jz -Jz -ae -GM -Ry -pJ -sY -sY -sY -Mu -sY -nB -Cu -Cu -Cu -hb -Cu -Cu -cX -ns -il -GR -yk -yk -ze -to -to -MK -yd -yk -QH -to -Vv -Vv -zC -zC -zC -zC -zC -bG -bG -bG -gz -Qc -Qc -gz -bG -bG -bG -oO -Qc -lG -OO -bG -gC -gC -gC -jm -jm -bs -WH -Rp -wh -hV -wh -kD -WH -wh -wh -fu -vQ -yt -Pe -Dk -WH -ln -Gk -Gk -WH -Yw -"} -(148,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -uy -aV -gF -gF -IW -Mz -nd -MJ -MJ -MJ -MJ -MJ -MJ -MJ -IH -IH -lC -lC -Zl -lC -lC -lC -IH -mC -ha -ha -ha -ha -FG -mC -hM -ha -EW -jy -gy -Jz -Jz -Jz -ae -GM -hA -hA -hA -hA -hA -hA -hA -VN -Cu -ae -ae -ae -ae -ae -ze -ze -yk -yk -GR -yk -ze -jA -ze -yd -ZV -yk -en -to -Vv -Vv -zC -zC -zC -zC -zC -bG -pr -gj -lG -Qc -Qc -lG -WS -pr -bG -Lm -Qc -Qc -DF -bG -gC -gC -gC -jm -jm -bs -WH -eQ -yl -Di -RJ -wh -wh -BO -eQ -Gk -SP -WM -Pe -Dk -WH -Gk -Gk -Gk -WH -Yw -"} -(149,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -nd -nd -nd -ng -oe -nd -nd -nd -nd -nd -nd -nd -nd -nd -nd -nd -IH -lC -lC -lC -lC -lC -IH -IH -mC -ha -Dw -XO -ha -ha -iT -ha -ha -XO -ha -gy -Vp -Jz -SA -ae -vB -Zt -Zt -Zt -Zt -Zt -du -hA -VN -Cu -ae -ae -ae -ae -ae -to -ew -ze -ze -ze -ze -ze -to -ew -yk -yk -yk -RL -to -Vv -Vv -zC -zC -zC -zC -zC -bG -gz -Lh -Qc -Qc -Lh -Qc -Qc -Xa -Cc -oO -Lh -Qc -aC -bG -jm -jm -jm -jm -jm -bs -WH -EO -Gk -Di -Gk -eQ -eQ -eQ -BD -WH -Xu -yt -aD -Dk -qm -Gk -yl -Nn -WH -Yw -"} -(150,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -gF -Yn -aj -Js -Js -Js -Js -Js -Ji -gs -AJ -pt -pt -pt -hY -nd -IH -lC -lC -lC -IH -IH -IH -IH -mC -jy -qW -jy -jL -jL -mC -ha -ha -ha -ha -mC -IX -IX -IX -ae -ae -ae -ae -ae -ae -ae -GM -hA -VN -Cu -ae -ae -ae -ae -ae -to -to -to -to -to -to -to -to -lf -lf -ze -HV -HV -to -Vv -Vv -bG -bG -bG -bG -bG -bG -lG -Qc -mH -bG -Hf -av -Qc -lG -Cc -oO -Qc -Qc -sR -bG -Jm -gC -gC -jm -jm -bs -WH -kD -eQ -Gk -Gk -Rp -WH -Qq -Qq -qm -iX -HE -MO -we -qm -Gk -Gk -Gk -WH -Yw -"} -(151,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -gF -WB -ON -uB -ON -uB -uB -ON -My -gs -AJ -uB -ON -uB -vl -nd -Zl -Zl -Es -IH -IH -IH -IH -IH -mC -mC -gy -gy -gy -mC -mC -mC -mC -ha -mC -mC -IX -IX -IX -IX -ZM -IX -SA -IX -IX -ae -GM -hA -VN -Cu -ae -ae -ae -ae -ae -aq -Vv -Vv -Vv -Vv -Vv -Vv -to -to -to -to -to -to -to -Vv -Vv -bG -aI -lG -lG -lG -bG -lG -Qc -bG -bG -bG -bG -Qc -lG -Cc -oO -Qc -lG -aB -bG -Jm -jm -ao -jm -gC -bs -WH -kD -eQ -eQ -Gk -Rp -WH -WH -WH -WH -iX -HE -MO -we -WH -eS -eS -eS -WH -Yw -"} -(152,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -gn -WB -uB -wN -nd -gp -uB -QR -nd -nd -nd -Fo -Fo -Fo -nd -nd -VS -qX -lC -IH -IH -IH -IH -lC -Zl -Zl -IH -IH -IH -IH -mC -iY -ha -XO -ha -iT -bq -IX -IX -IX -IX -IX -IX -IX -IX -ae -CX -hA -VN -Cu -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -bG -ts -Qc -Qc -lG -bG -vO -Qc -Qc -Qc -Qc -Qc -Qc -lG -bG -Lm -Qc -lG -bG -bG -jm -jm -ao -ao -ao -TR -WH -WH -WH -eQ -Nn -WH -WH -eS -eS -qm -iX -HE -MO -we -WH -WH -WH -WH -WH -Yw -"} -(153,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -nd -jH -jV -mv -nd -lc -uB -uB -HQ -PD -Js -Js -Js -Js -Js -VE -MI -qX -lC -IH -IH -MJ -uz -lC -lC -lC -IH -IH -IH -lC -gy -iY -XO -ha -ha -mC -cx -KV -ZM -IX -IX -IX -IX -IX -ZM -ae -GM -hA -VN -Cu -Vv -Vv -Vv -Vv -Vv -Vv -Vv -FB -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -bG -pR -Qc -Qc -RT -QQ -lG -Lh -Qc -Lh -Qc -Qc -ua -Xa -bG -oO -Lh -lG -bG -bs -jm -ao -ao -ao -ao -bs -mG -Jq -Fh -eQ -Gk -eQ -eQ -eQ -BD -WH -iX -HE -MO -we -we -we -we -we -we -Yw -"} -(154,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -gF -WB -uB -wc -nd -Jr -mX -NK -ih -qt -VX -fE -VX -VX -VX -qt -uX -bg -IH -IH -MJ -MJ -MJ -Ys -lC -lC -IH -IH -IH -Zl -gy -ha -ha -ha -ha -mC -Ou -NP -IX -SA -IX -IX -IX -Jz -Jz -ae -GM -hA -VN -Cu -IX -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -Vv -aq -bG -bG -bG -bG -bG -Qc -lG -bG -pT -lG -Qc -Qc -Qc -lG -pT -xO -bG -oO -Qc -lG -bG -bs -jm -jm -ao -ao -ao -bs -mG -Jq -Fh -eQ -Gk -Gk -Gk -Gk -eQ -WH -iX -HE -MO -we -we -we -we -we -we -Yw -"} -(155,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -gF -WB -uB -gn -nd -iq -qg -uB -Dy -nd -nd -gs -MU -nd -nd -nd -VS -Mr -IH -IH -MJ -MJ -MJ -MJ -MJ -MJ -MJ -IH -IH -lC -mC -sP -ha -ha -Tl -mC -Ou -NP -SA -IX -IX -IX -ZM -Jz -Jz -ae -GM -hA -VN -Cu -SA -SA -IX -IX -Jz -Jz -Jz -Jz -zV -LD -LD -mL -Jz -Jz -Jz -IX -IX -IX -QW -cw -lG -lG -gz -bG -Qc -lG -bG -bG -RE -Qc -Qc -Qc -Kz -bG -bG -bG -oO -Qc -lG -lO -bs -jm -jm -ao -ao -ao -bs -mG -Jq -Fh -eQ -nR -KY -eQ -Gk -eQ -rl -iX -Rr -MO -we -we -we -we -we -we -Yw -"} -(156,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -nd -jH -uB -gF -nd -gF -uB -jV -Sh -nd -yB -ta -ta -pa -wf -nd -qX -Mr -IH -IH -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -IH -IH -mC -mC -ha -mC -mC -mC -mC -mC -mC -mC -mC -mC -mC -mC -mC -mC -CX -hA -VN -Cu -IX -IX -IX -IX -Jz -Jz -Jz -Jz -Vp -Jz -Jz -Jz -Jz -Jz -Jz -IX -SA -IX -sf -Qc -lG -Lh -Qc -Qc -Qc -RT -gz -bG -RE -lG -lG -lG -lG -bG -aB -lG -oO -Qc -lG -lO -HI -Jm -jm -ao -ao -ao -TR -mG -bs -Fh -WH -WH -WH -eQ -eQ -eQ -Gk -iX -HE -MO -we -we -we -we -we -we -Yw -"} -(157,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -nU -WB -ON -uB -uB -uB -uB -uB -yj -nd -PW -ng -ng -ng -WJ -gs -qX -Mr -lC -mT -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -mC -ha -XO -wK -wK -mC -bZ -wK -Tl -EX -mC -lU -iY -lU -wK -mC -GM -hA -VN -Cu -IX -IX -IX -IX -IX -IX -IX -IX -IX -Jz -Jz -Jz -Jz -Jz -Jz -IX -IX -IX -fx -Cc -gz -Qc -Qc -Qc -Qc -Qc -OI -bG -bG -Qc -aA -bG -bG -bG -lG -tr -WX -Qc -lG -bG -bs -jm -ao -ao -ao -ao -bs -mG -bs -Jq -bs -bs -WH -WH -WH -WH -WH -iX -HE -MO -we -we -we -we -we -we -Yw -"} -(158,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -gF -WB -uB -ON -uB -uB -uB -ON -HQ -nd -kB -ng -KW -ng -WJ -gs -qX -Mr -Ys -lC -lC -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -mC -ha -ha -XO -wK -mC -wK -XO -ha -ha -mC -XO -ha -ha -wK -mC -GM -hA -VN -Cu -IX -IX -SA -SA -IX -IX -IX -IX -IX -IX -IX -IX -ZM -IX -IX -IX -IX -IX -kz -Cc -vh -Qc -Qc -Qc -Qc -Qc -pr -bG -lK -lG -lG -bG -aB -lG -lG -Qc -WX -Qc -lG -bG -zC -ao -ao -ao -ao -ao -bs -mG -bs -bs -bs -bs -bs -bs -bs -bs -we -iX -HE -MO -we -we -we -we -we -we -Yw -"} -(159,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -gF -lL -aG -aG -aG -Rf -sv -aG -Is -Qv -QP -CM -hB -hB -VK -nd -qX -Mr -lC -Ys -lC -IH -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -mC -vc -ha -ha -iY -mC -ZX -ha -ha -Lg -mC -hM -ha -ha -VZ -mC -GM -hA -VN -Cu -IX -Vv -Vv -Jc -IX -IX -IX -IX -ZM -IX -IX -IX -IX -SA -ZM -IX -IX -IX -IX -lh -Kl -bK -Qc -Qc -VM -Qc -lG -bG -Zn -WX -Qc -bG -GZ -Qc -Qc -Qc -WX -Qc -Zg -bG -zC -ao -ao -ao -ao -ao -bs -mG -bs -bs -Sb -we -we -we -we -we -we -iX -Rr -MO -we -we -we -we -Sb -we -Yw -"} -(160,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -nd -nd -uB -WK -nd -nd -nd -nd -nd -nd -nd -gs -gs -nd -nd -nd -qX -Mr -lC -lC -lC -IH -IH -MJ -MJ -MJ -MJ -MJ -MJ -MJ -mC -eL -ha -ha -EX -mC -JQ -ha -ha -ha -mC -ha -ha -Tl -lU -mC -GM -hA -VN -Cu -Vv -Vv -Vv -Vv -Jz -Jz -Jz -IX -IX -IX -IX -IX -IX -IX -IX -IX -IX -IX -IX -lh -Sc -Qc -Bs -Zq -Bs -Qc -Ly -bG -lG -WX -hT -BK -WX -WX -WX -WX -WX -Lh -Ft -bG -zC -zC -ao -ao -ao -ao -TR -mG -bs -we -we -Uy -Uy -Uy -Uy -Uy -Uy -Uy -Uy -Uy -Uy -Uy -Uy -Uy -we -we -Yw -"} -(161,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -zY -aj -Js -Js -Vw -Vw -tQ -nd -qX -qX -qX -qX -qX -qX -qX -qX -qX -Mr -qX -lC -Ys -IH -IH -MJ -MJ -MJ -MJ -MJ -MJ -MJ -mC -mC -mC -ha -ha -mC -mC -gJ -aR -mC -mC -gJ -gJ -mC -mC -mC -GM -hA -VN -Cu -Vv -Vv -Vv -Vv -Jz -Jz -Jz -IX -IX -IX -Jz -Jz -Jz -Jz -IX -IX -IX -IX -fx -Cc -xn -Qc -av -bG -av -Qc -lG -ZP -lG -Qc -Qc -Qc -Qc -Qc -Qc -Qc -Lh -ah -Qs -bG -zC -zC -ao -ao -ao -ao -bs -mG -bs -we -Uy -Uy -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -Uy -Uy -we -Yw -"} -(162,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -hj -sG -uB -uB -uB -jV -tQ -nd -qX -qX -qX -qX -qX -qX -qX -qX -qX -Mr -qX -Ys -lC -IH -IH -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -mC -ha -ha -ha -ha -yE -mI -EM -ha -bn -ha -ha -ha -mC -ae -GM -hA -VN -Cu -Vv -Vv -Vv -Vv -Jz -Jz -Jz -IX -IX -IX -Jz -Jz -Jz -Jz -Jc -SA -SA -IX -lg -Cc -vh -bK -bG -bG -bG -Lh -lG -ZP -lG -Qc -Lh -bG -bG -Cc -bG -bG -Cc -bG -bG -bG -zC -zC -zC -ao -ao -ao -bs -mG -bs -we -Uy -Uy -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -Uy -we -Yw -"} -(163,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -oc -aG -aG -aG -aG -aG -PN -nd -qX -qX -ip -Ny -Ny -Ny -Ny -Ny -uY -Mr -qX -lC -lC -IH -IH -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -mC -aK -Hn -ha -ha -ha -ha -ha -ha -ha -ha -ha -OX -mC -ae -GM -hA -VN -Cu -IX -Vv -Vv -Vv -Jz -Jz -Jz -IX -ZM -IX -Jz -Jz -Jz -Jz -IX -IX -SA -IX -kz -Cc -xn -Qc -Qc -bG -Qc -Qc -lG -ZP -lG -Qc -Qc -HM -in -Bs -Bs -Qc -Qc -Qc -lo -bG -zC -zC -zC -ao -ao -ao -bs -mG -bs -we -Uy -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -Uy -we -Yw -"} -(164,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -nd -nd -uB -WK -nd -nd -nd -nd -MI -qX -gb -ZA -ZA -ZA -ZA -ZA -Ym -Mr -qX -lC -lC -IH -IH -MJ -MJ -MJ -mC -mC -mC -mC -mC -mC -DB -Hn -ha -ha -ha -ha -ha -ha -ha -ha -ha -DB -mC -ae -GM -hA -VN -Cu -IX -Vv -Vv -Vv -Jz -IX -IX -ZM -IX -IX -Jz -Jz -Jz -Jz -IX -IX -IX -IX -IX -lh -Sc -Lh -Qc -Qc -Qc -Lh -Ly -bG -bG -Qc -Qc -Qc -Qc -TC -Qc -Qc -Qc -lG -SC -bG -zC -zC -zC -ao -ao -ao -bs -mG -bs -we -Uy -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -Uy -we -Yw -"} -(165,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -gF -aj -Js -Js -sT -FW -Oh -nd -VS -qX -gb -ZA -ZA -ZA -ZA -ZA -Ym -Mr -Mr -Mr -Mr -Mr -Mr -Mr -Mr -Mr -mC -PT -lS -PT -PT -mC -mC -uO -ib -ib -ib -ib -ib -ib -ib -ib -ib -mC -mC -ae -GM -hA -VN -Cu -IX -Jz -Jz -Jz -IX -IX -IX -IX -bq -IX -IX -IX -Jz -Jz -Jz -IX -IX -IX -IX -lh -lG -Qc -lG -lG -lG -lG -RT -bG -vD -Qc -Lh -Qc -Qc -Qc -Qc -Qc -RT -lG -bG -bG -zC -zC -zC -ao -ao -ao -bs -mG -bs -we -Uy -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -Uy -we -Yw -"} -(166,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -gF -sG -uB -ON -uB -uB -Gc -gs -MI -qX -gb -RO -gT -RO -RO -RO -uE -xF -Ny -Ny -Ny -Ny -Ny -Ny -Ny -ZS -FS -Yz -Yz -Yz -Yz -Yz -Yz -AF -Yz -Yz -Yz -AF -Yz -Yz -Yz -AF -Yz -kF -FS -CG -ez -sa -ST -Cu -IX -IX -IX -IX -IX -IX -IX -bq -IX -IX -IX -IX -Jz -Jz -Jz -Jz -IX -IX -fx -Cc -pr -Qc -lG -bG -Cc -bG -GJ -bG -mf -Qc -Qc -Qc -Qc -Qc -ua -gz -gz -bG -bG -zC -zC -zC -zC -ao -ao -ao -bs -mG -bs -we -Uy -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -Uy -we -Yw -"} -(167,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -gF -uB -uB -uB -uB -ky -xm -gs -MI -qX -gb -ZA -ZA -ZA -ZA -ZA -ZA -ZA -ZA -ZA -ZA -ZA -ZA -ZA -ZA -ZA -bu -PT -PT -PT -PT -PT -PT -PT -PT -PT -PT -PT -PT -PT -PT -PT -PT -PT -bu -hA -hA -hA -VN -ae -IX -SA -IX -IX -IX -ZM -IX -IX -Jz -Jz -Jz -Jz -Jz -Jz -Jz -Jz -SA -IX -kz -Cc -gz -bK -lG -Cc -av -kM -lG -bG -mf -Qc -Qc -Qc -Qc -Qc -lG -zh -bG -bG -zC -zC -zC -zC -zC -ao -ao -ao -bs -mG -bs -we -Uy -Uy -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -Uy -Uy -we -Yw -"} -(168,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -gF -KX -qq -qP -aG -aG -gF -nd -VS -qX -Uq -BJ -BJ -BJ -BJ -BJ -BJ -BJ -BJ -BJ -BJ -BJ -BJ -BJ -BJ -BJ -Nb -uf -uf -uf -uf -uf -ot -uf -uf -uf -uf -ot -uf -uf -uf -uf -uf -ot -Nb -Zt -Zt -Zt -eM -ae -IX -IX -IX -IX -IX -Jz -Jz -Jz -Jz -Jz -Jz -jG -rZ -Ko -Jz -Jz -Jz -IX -IX -lh -vh -RT -lG -Cc -Bs -AA -RT -bG -mf -eG -lG -pT -lG -lo -lo -bG -bG -zC -zC -zC -zC -zC -zC -ao -ao -ao -bs -mG -bs -we -we -Uy -Uy -Uy -Uy -Uy -Uy -Uy -Uy -Uy -Uy -Uy -Uy -Uy -we -we -Yw -"} -(169,1,1) = {" -PF -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -MJ -nd -nd -nd -nd -nd -nd -nd -nd -nd -MI -qX -qX -qX -qX -qX -qX -qX -qX -qX -qX -qX -qX -qX -qX -qX -qX -qX -mC -mC -mC -mC -mC -mC -mC -mC -mC -mC -mC -mC -mC -mC -mC -mC -mC -mC -mC -ae -ae -ae -ae -ae -IX -IX -IX -Jz -Jz -Jz -Jz -Jz -Jz -Jz -jG -rU -rU -rU -Ko -Jz -Jz -Jz -IX -lh -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -zC -zC -zC -zC -zC -zC -zC -ao -ao -ao -bs -mG -bs -bs -Sb -we -we -we -we -we -we -we -we -we -we -we -we -we -Sb -pj -Yw -"} -(170,1,1) = {" -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -PF -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -sm -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -"} diff --git a/_maps/map_files/Campaign maps/som_base/sombase.dmm b/_maps/map_files/Campaign maps/som_base/sombase.dmm deleted file mode 100644 index 0a19a6e2ec3..00000000000 --- a/_maps/map_files/Campaign maps/som_base/sombase.dmm +++ /dev/null @@ -1,49443 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"abc" = ( -/obj/structure/table/black, -/obj/machinery/computer3/server, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"abz" = ( -/obj/structure/fence, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"abP" = ( -/turf/open/floor/mainship/sterile/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/medical) -"ach" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/command_hall) -"acj" = ( -/obj/effect/turf_decal/warning_stripes/linethick{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/wood, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"ada" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"adq" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/ground/underground/caveN) -"adz" = ( -/obj/structure/closet/radiation, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"adL" = ( -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/science/tele_lab) -"adO" = ( -/obj/structure/flora/tree/pine, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"aeI" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"afe" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"afj" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"afM" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"afV" = ( -/obj/structure/table/black, -/obj/effect/turf_decal/tile/corsatstraight/gray, -/obj/effect/turf_decal/tile/corsatstraight/gray{ - dir = 4 - }, -/obj/machinery/computer3, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/lz_control) -"agE" = ( -/obj/machinery/computer/arcade{ - density = 0; - pixel_y = 17 - }, -/obj/item/stool, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"agY" = ( -/obj/machinery/door/airlock/mainship/security/glass/free_access, -/turf/open/floor/mainship/red/full, -/area/rocinante_base/surface/building/security/hub) -"ahC" = ( -/obj/structure/table/black, -/obj/item/reagent_containers/food/drinks/cans/sodawater, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/laundromat) -"ahL" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"ahM" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder, -/obj/item/resin_jelly, -/obj/item/resin_jelly, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"aic" = ( -/obj/structure/barricade/concrete, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveW) -"aij" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_s) -"aiu" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/rocinante_base/surface/building/cargo/southern_aux) -"ajB" = ( -/obj/structure/cable, -/obj/machinery/light, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/science/complex_hall_e) -"aks" = ( -/obj/structure/prop/brokenvendor/brokenuniformvendor/specialist, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/prep) -"akz" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"akN" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"akR" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/ground/base_w) -"akT" = ( -/obj/structure/desertdam/decals/road/stop{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"alu" = ( -/turf/open/floor/plating/ground/concrete/edge, -/area/rocinante_base/ground/base_cent) -"amw" = ( -/obj/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_two) -"amG" = ( -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"anE" = ( -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"anI" = ( -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"anM" = ( -/obj/structure/sink{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"aol" = ( -/obj/effect/turf_decal/tile/corsatstraight/gray, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/lz_control) -"aoC" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/sterile/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/medical) -"aoP" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/medical) -"apN" = ( -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/command_hall) -"aqL" = ( -/obj/structure/prop/mainship/protolathe, -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/security/hub) -"aqP" = ( -/obj/effect/landmark/corpsespawner/som, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/ground/base_cent) -"arl" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"aro" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"aru" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"arA" = ( -/turf/open/floor/mainship/silver{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/command) -"arH" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"ash" = ( -/obj/structure/monorail{ - dir = 9 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"asn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"atb" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/lz_control) -"atk" = ( -/obj/machinery/cic_maptable, -/obj/machinery/light, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"ave" = ( -/obj/structure/toilet/alternate{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/security/medical_sec) -"avi" = ( -/obj/structure/bed/chair/pew{ - dir = 9 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"avo" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/ground/base_cent) -"avL" = ( -/obj/structure/rock/crystal, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_cent) -"awh" = ( -/obj/machinery/elevator_strut/bottom, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"awr" = ( -/obj/structure/table/black, -/obj/machinery/microwave, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"awy" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/rocinante_base/ground/base_cent) -"axA" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/structure/prop/train/construction, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"axV" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"azC" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"azE" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"aAV" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"aBf" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/research_lab) -"aBF" = ( -/obj/structure/prop/vehicle/crawler/crawler_red{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"aBH" = ( -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/barracks) -"aBL" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"aCw" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"aDG" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 6 - }, -/area/rocinante_base/ground/base_s) -"aDI" = ( -/obj/structure/prop/brokenvendor/engivend, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"aDO" = ( -/obj/structure/prop/mainship/gelida/powerccable, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"aDS" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/surface/building/cargo/southern_aux) -"aEm" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"aEO" = ( -/obj/structure/ship_ammo/cas/rocket/banshee, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/air_storage) -"aFm" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"aFC" = ( -/obj/structure/prop/mainship/gelida/lightstick, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/rocinante_base/ground/base_w) -"aFY" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"aGo" = ( -/obj/structure/table/black, -/obj/structure/platform/metalplatform{ - dir = 10 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"aGV" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/po_quarters) -"aHd" = ( -/obj/machinery/computer/mecha, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"aHt" = ( -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/command_sec) -"aHS" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/medical) -"aHW" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/research_lab) -"aHX" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"aIc" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857" - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/bio_lab) -"aIl" = ( -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"aIS" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/power/apc, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/north_smes) -"aJl" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 1 - }, -/area/rocinante_base/surface/landing/landing_pad_one) -"aJn" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/ground/base_cent) -"aJt" = ( -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/rocinante_base/surface/building/administration/central_com) -"aJu" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveN) -"aJF" = ( -/obj/structure/bed/chair/sofa/corsat, -/obj/machinery/newscaster, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"aJM" = ( -/obj/structure/flora/drought/shroom/gut, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveS) -"aJY" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/break_room) -"aKN" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"aLJ" = ( -/obj/structure/prop/brokenvendor/engivend, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/prep) -"aLM" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/southern_aux) -"aLY" = ( -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/rocinante_base/surface/building/security/command_sec) -"aMo" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"aMA" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/medical) -"aMB" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"aNk" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"aOb" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"aOd" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/southern_aux) -"aOm" = ( -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/complex_hall_e) -"aPf" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"aPg" = ( -/obj/structure/sink{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"aPh" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/medical) -"aPD" = ( -/obj/machinery/light, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/ground/base_e) -"aPG" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration) -"aQd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/hub) -"aQq" = ( -/obj/machinery/light, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/administration/meeting) -"aQz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/hub) -"aQK" = ( -/obj/machinery/door/airlock/mainship/security{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/garage_sec) -"aQQ" = ( -/obj/machinery/vending/tool, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"aQW" = ( -/obj/machinery/computer3/server, -/obj/structure/table/black, -/obj/structure/platform/metalplatform, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"aRe" = ( -/turf/closed/mineral/smooth/indestructible, -/area/rocinante_base/ground/base_n) -"aRi" = ( -/obj/machinery/door/airlock/multi_tile/mainship/medidoor, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/medical) -"aRq" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/bar) -"aSa" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"aSg" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/research_lab) -"aSl" = ( -/obj/structure/prop/brokenvendor/surplusclothes, -/obj/machinery/light, -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"aSm" = ( -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/break_room) -"aSY" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"aTf" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"aTE" = ( -/obj/machinery/vending/security, -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"aTM" = ( -/obj/structure/prop/brokenvendor/surplusarmor, -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/security/sec_dorms) -"aTO" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration/command) -"aUj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"aUp" = ( -/obj/structure/table/reinforced, -/obj/item/storage/surgical_tray, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/light{ - light_color = "#da2f1b" - }, -/turf/open/floor/mainship/sterile/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/medical) -"aUr" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"aUG" = ( -/obj/machinery/computer/security/wooden_tv, -/obj/structure/table/reinforced, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"aVP" = ( -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"aVR" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/machinery/newscaster{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"aWd" = ( -/obj/structure/platform_decoration/rockcliff_deco, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"aWG" = ( -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/administration/meeting) -"aWX" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/research_lab) -"aXO" = ( -/obj/structure/closet/l3closet/janitor, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/janitor) -"aYR" = ( -/obj/structure/cargo_container/red, -/obj/machinery/light, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"aZf" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"aZq" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"aZI" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"aZM" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"aZW" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/living/bar) -"bay" = ( -/obj/structure/table/black, -/obj/machinery/computer3/laptop, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"baH" = ( -/obj/structure/prop/mainship/protolathe/sci, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"baI" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"bbI" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/security/command_sec) -"bbS" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/rocinante_base/ground/base_s) -"bcL" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer3/server, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"bcP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/blue/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/hub) -"bcZ" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 8 - }, -/area/rocinante_base/ground/base_s) -"bdd" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_sw) -"bde" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"bdr" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/rocinante_base/ground/base_s) -"bdI" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 8 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_n) -"bdN" = ( -/obj/machinery/mineral/unloading_machine, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"bdP" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/administration/south_com) -"bfe" = ( -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"bfD" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 10 - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_cent) -"bfF" = ( -/obj/structure/bed/chair/alt{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/break_room) -"bfW" = ( -/obj/structure/prop/vehicle/truck/truckcargo{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/ground/base_s) -"bge" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration) -"bgi" = ( -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveN) -"bgD" = ( -/obj/machinery/computer3/server/rack, -/turf/open/floor/mainship/tcomms, -/area/rocinante_base/surface/building/administration/central_com) -"bgN" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 8 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"bhx" = ( -/obj/structure/table/reinforced, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/train_station) -"bie" = ( -/obj/structure/safe, -/obj/machinery/light, -/turf/open/floor/mainship/silver, -/area/rocinante_base/surface/building/administration/command) -"biB" = ( -/obj/structure/platform/metalplatform{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tram_line) -"biS" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/living/barracks) -"bjh" = ( -/obj/structure/reagent_dispensers/fueltank/xfuel, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"bjX" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_one) -"bln" = ( -/obj/structure/rock/crystal/small, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"blC" = ( -/obj/structure/prop/vehicle/crawler/crawler_fuel, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"blM" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/north_aux) -"bmt" = ( -/obj/machinery/door/airlock/mainship/generic, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/west_aux) -"bnV" = ( -/obj/effect/turf_decal/tile/corsatstraight/gray, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/lz_control) -"bom" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/turf/open/floor/mainship/black{ - dir = 6 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"bpo" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration) -"bpS" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass{ - dir = 2 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/administration/south_com) -"bqF" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_w) -"bqJ" = ( -/obj/structure/table/black, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"bqM" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/ground/base_s) -"bqW" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_sw) -"brN" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"bsr" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_w) -"btc" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/rocinante_base/ground/base_cent) -"btM" = ( -/obj/machinery/door/airlock/mainship/engineering{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"buo" = ( -/obj/structure/cargo_container/hd{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"buF" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/side, -/area/rocinante_base/surface/building/medical) -"bvw" = ( -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/crystal_lab) -"bvK" = ( -/obj/machinery/science/isolator/inserted, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"bvW" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"bwp" = ( -/obj/machinery/power/apc{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"bwq" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_nw) -"bwE" = ( -/obj/machinery/grill, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/break_room) -"bwV" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/rocinante_base/ground/underground/caveN) -"bxa" = ( -/obj/structure/prop/vehicle/som_mech, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"bxv" = ( -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"bxD" = ( -/obj/machinery/door/airlock/mainship/security, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/garage_sec) -"bxE" = ( -/obj/item/stack/sheet/animalhide/monkey, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/bio_lab) -"bxI" = ( -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/rocinante_base/surface/building/security/hub) -"bxY" = ( -/obj/structure/bed/chair/sofa/corsat, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration) -"byc" = ( -/turf/open/shuttle/escapepod/plain, -/area/rocinante_base/ground/base_w) -"byq" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"byA" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"bAF" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/central_com) -"bAR" = ( -/obj/structure/platform/rockcliff{ - dir = 10 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"bAW" = ( -/obj/structure/cable, -/turf/open/floor/mainship/silver{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/command) -"bBg" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration/north_com) -"bBj" = ( -/obj/structure/largecrate/random, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"bBw" = ( -/obj/structure/prop/vehicle/crane/cranecargo, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"bBL" = ( -/obj/machinery/computer/som_two{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"bBS" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"bCh" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/medical) -"bCo" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"bCz" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"bCZ" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 10 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"bDn" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"bDE" = ( -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/surface/building/science/bio_lab) -"bDQ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"bDZ" = ( -/obj/machinery/griddle, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/break_room) -"bEi" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/security/command_sec) -"bEI" = ( -/obj/machinery/vending/cola, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/break_room) -"bFN" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"bGo" = ( -/obj/item/stool, -/obj/structure/cable, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"bGQ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"bHC" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/rocinante_base/ground/underground/caveCent) -"bHJ" = ( -/obj/machinery/door/poddoor/mainship/open, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/air_storage) -"bHR" = ( -/obj/structure/filingcabinet/security, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"bIq" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 9 - }, -/turf/open/floor/mainship/som/ne, -/area/rocinante_base/surface/building/security/hub) -"bJb" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/west_barracks) -"bJj" = ( -/obj/machinery/computer/som, -/turf/open/floor/mainship/silver{ - dir = 5 - }, -/area/rocinante_base/surface/building/administration/command) -"bJk" = ( -/obj/structure/prop/brokenvendor/surplusclothes, -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/rocinante_base/surface/building/living/prep) -"bJr" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"bJH" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/janitor) -"bKd" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857" - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_e) -"bKQ" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"bLf" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"bLB" = ( -/turf/open/floor/mainship/black{ - dir = 6 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"bLF" = ( -/obj/machinery/computer/som_two{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"bMc" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/rocinante_base/ground/base_nw) -"bMi" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"bMk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"bME" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/hub) -"bMF" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"bMZ" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/research_lab) -"bNv" = ( -/obj/structure/platform/rockcliff, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"bNw" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"bOk" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"bOP" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/southern_construction) -"bQD" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/rocinante_base/ground/base_w) -"bQQ" = ( -/obj/structure/prop/brokenvendor/surplusarmor, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/rocinante_base/surface/building/living/prep) -"bRg" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/west_barracks) -"bRm" = ( -/obj/structure/bed/chair/alt{ - dir = 4 - }, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"bRT" = ( -/obj/structure/closet/fireaxecabinet, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration) -"bSw" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/door/window{ - dir = 8 - }, -/obj/structure/curtain/open/shower, -/obj/structure/window/reinforced, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"bSA" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 10 - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_e) -"bSW" = ( -/turf/closed/mineral/smooth/indestructible, -/area/rocinante_base/ground/base_s) -"bTn" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/rocinante_base/ground/base_s) -"bTG" = ( -/turf/open/floor/plating, -/area/rocinante_base/surface/building/southern_construction) -"bUb" = ( -/obj/structure/prop/som_fighter, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"bUo" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 10 - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_nw) -"bUE" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"bUF" = ( -/turf/closed/mineral/smooth{ - color = "#c2e4ff" - }, -/area/rocinante_base/ground/base_ne) -"bVc" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"bVx" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/mainship/red/full, -/area/rocinante_base/surface/building/administration) -"bVY" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"bWs" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/breakroom) -"bWx" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"bWA" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"bXk" = ( -/obj/machinery/door/airlock/multi_tile/mainship/secdoor/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"bXB" = ( -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_se) -"bYc" = ( -/obj/structure/cargo_container/horizontal{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"bYh" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"bYl" = ( -/obj/machinery/science/pathogenic_Isolator, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"bZh" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"bZR" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"cat" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/ground/base_s) -"cay" = ( -/obj/structure/prop/brokenvendor/brokenuniformvendor/specialist, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"caI" = ( -/obj/structure/prop/brokenvendor/brokenweaponsrack, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/living/prep) -"ccb" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/ground/base_sw) -"ccq" = ( -/turf/open/floor/mainship/tcomms, -/area/rocinante_base/surface/building/administration/central_com) -"ccB" = ( -/obj/structure/monorail{ - dir = 9 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveE) -"cdn" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tram_line) -"cdS" = ( -/obj/structure/sink/bathroom{ - dir = 8 - }, -/obj/structure/mirror{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/meeting) -"cdX" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 6 - }, -/obj/structure/bed/chair/alt, -/turf/open/floor/mainship/som/sw, -/area/rocinante_base/surface/building/living/barracks) -"ceg" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/north_aux) -"cek" = ( -/obj/structure/prop/brokenvendor/surplusarmor, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"ceU" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"ceX" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/break_room) -"cfa" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/medical_sec) -"cfj" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/medical) -"cfJ" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/barracks) -"cfL" = ( -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"cgL" = ( -/obj/structure/prop/brokenvendor/brokenspecialistvendor/leader, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/rocinante_base/surface/building/living/prep) -"cgM" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"che" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"chz" = ( -/obj/item/radio/intercom/general/colony{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"chG" = ( -/obj/structure/prop/mainship/protolathe/medical, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/research_lab) -"chJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"cic" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/central_com) -"cii" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/command_hall) -"cim" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"ciJ" = ( -/obj/machinery/washing_machine, -/obj/machinery/washing_machine{ - pixel_y = 16 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/laundromat) -"ciR" = ( -/obj/structure/cargo_container/red{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"cjb" = ( -/obj/structure/table/reinforced, -/obj/machinery/science/analyser, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/crystal_lab) -"cjk" = ( -/obj/structure/table/black, -/obj/item/reagent_containers/food/snacks/sandwiches/twobread, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/science/break_room) -"cjp" = ( -/obj/structure/barricade/concrete{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"cjL" = ( -/obj/effect/turf_decal/warning_stripes/thick/corner{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"cjT" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/som, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"cjY" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"ckL" = ( -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"ckR" = ( -/obj/structure/platform/metalplatform, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"clb" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_sw) -"clj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"clm" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/prep) -"clz" = ( -/obj/structure/prop/mainship/gelida/lightstick, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_w) -"cmq" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"cmD" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857" - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_n) -"cnl" = ( -/obj/structure/prop/mainship/gelida/lightstick, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/rocinante_base/ground/base_w) -"cnG" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 10 - }, -/area/rocinante_base/surface/landing/landing_pad_one) -"cnH" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"cnN" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"cnZ" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/obj/structure/platform/metalplatform{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"coU" = ( -/obj/structure/table/black, -/obj/item/pizzabox/meat, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/break_room) -"cpc" = ( -/turf/closed/mineral/smooth/snowrock, -/area/rocinante_base/ground/base_n) -"cpG" = ( -/obj/structure/urinal, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/security/medical_sec) -"cqp" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 1 - }, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/administration/breakroom) -"crM" = ( -/obj/structure/toilet/alternate{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"crQ" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"cse" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/mainship/black/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"ctj" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"ctv" = ( -/obj/structure/table/reinforced, -/obj/item/paper, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"ctV" = ( -/turf/open/floor/plating, -/area/rocinante_base/ground/base_nw) -"cuD" = ( -/obj/structure/table/black, -/obj/item/clothing/under/techpriest, -/obj/item/clothing/head/techpriest, -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"cuJ" = ( -/obj/machinery/vending/snack, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"cuM" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/mainship/silver, -/area/rocinante_base/surface/building/administration/command) -"cuW" = ( -/obj/structure/bed/chair/sofa/corsat, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/command_sec) -"cvk" = ( -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"cvr" = ( -/obj/machinery/mineral/stacking_machine, -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/crystal_lab) -"cwH" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/air_storage) -"cwZ" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"cxm" = ( -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_n) -"cxF" = ( -/obj/structure/prop/vehicle/crawler/crawler_fuel, -/turf/open/floor/plating/icefloor/warnplate{ - dir = 10 - }, -/area/rocinante_base/ground/base_s) -"czp" = ( -/obj/structure/sign/double/map/left, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"czN" = ( -/obj/structure/urinal, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/command) -"cAN" = ( -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/administration) -"cBm" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"cBH" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_nw) -"cCn" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"cCy" = ( -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"cCL" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration) -"cDg" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"cDF" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"cDL" = ( -/turf/closed/mineral/smooth/indestructible, -/area/rocinante_base/ground/base_nw) -"cDS" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/meeting) -"cEe" = ( -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/command_hall) -"cEl" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/ground/base_e) -"cFc" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/west_aux) -"cFf" = ( -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/command_hall) -"cFI" = ( -/obj/item/mortal_shell/howitzer/he, -/obj/structure/rack, -/obj/effect/turf_decal/warning_stripes/box, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"cFQ" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"cHa" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/rocinante_base/ground/base_w) -"cHh" = ( -/obj/structure/table/black, -/obj/structure/prop/mainship/gelida/register{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/laundromat) -"cIM" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"cIT" = ( -/turf/open/floor/mainship/blue/full, -/area/rocinante_base/surface/building/administration) -"cJy" = ( -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"cKk" = ( -/obj/structure/platform/metalplatform, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"cKV" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"cLR" = ( -/obj/vehicle/train/cargo/engine{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"cMq" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"cMs" = ( -/turf/open/floor/mainship/red/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"cMR" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/laundromat) -"cNj" = ( -/obj/structure/monorail{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"cNQ" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/administration) -"cNU" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/mainship/blue/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/central_com) -"cOm" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"cOn" = ( -/turf/open/floor/plating, -/area/rocinante_base/surface/building/train_station) -"cOB" = ( -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"cOK" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/sterile/side{ - dir = 10 - }, -/area/rocinante_base/surface/building/medical) -"cPm" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/obj/structure/sign/double/map/left, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/science/complex_hall_e) -"cPr" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"cPE" = ( -/obj/machinery/computer3/server/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/mainship/tcomms, -/area/rocinante_base/surface/building/science/complex_hall_e) -"cQj" = ( -/turf/open/floor/plating, -/area/rocinante_base/ground/underground/caveN) -"cQt" = ( -/obj/machinery/computer/emails, -/obj/structure/table/reinforced, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"cQJ" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/barracks) -"cQK" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/research_lab) -"cQP" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"cRb" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/crystal_lab) -"cRk" = ( -/obj/machinery/light, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/living/barracks) -"cRl" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 5 - }, -/area/rocinante_base/ground/base_s) -"cRJ" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/break_room) -"cRZ" = ( -/obj/machinery/mineral/unloading_machine/corner/alt, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"cSg" = ( -/obj/item/stool, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/living/bar) -"cTu" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"cUj" = ( -/obj/machinery/computer/som_two{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"cUr" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"cUK" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveW) -"cVk" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/rocinante_base/ground/base_w) -"cWi" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"cWk" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"cWA" = ( -/obj/structure/prop/mainship/gelida/powercconnectorthreeside{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"cWS" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/structure/largecrate/random, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_ne) -"cWV" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/obj/structure/platform/metalplatform{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"cYi" = ( -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"cZv" = ( -/obj/effect/turf_decal/siding/dark, -/turf/open/floor/mainship/som/s, -/area/rocinante_base/surface/building/science/tele_lab) -"cZD" = ( -/obj/structure/cable, -/obj/structure/stairs/seamless/edge{ - dir = 1 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"cZH" = ( -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/security/garage_sec) -"cZU" = ( -/obj/structure/fence, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_nw) -"dbk" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/side{ - dir = 9 - }, -/area/rocinante_base/surface/building/medical) -"dbp" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"dbO" = ( -/obj/machinery/computer/som_two, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"dco" = ( -/obj/structure/barricade/concrete{ - dir = 8 - }, -/obj/structure/barricade/concrete, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/underground/caveN) -"dcC" = ( -/obj/item/weapon/gun/revolver/cmb, -/obj/item/ammo_casing, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_e) -"ddi" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/north_aux) -"ddK" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"dep" = ( -/obj/machinery/computer/som, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"deu" = ( -/obj/item/paper, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/comm_post) -"dfc" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/ground/base_se) -"dfF" = ( -/obj/effect/attach_point/weapon/dropship1, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_one) -"dfT" = ( -/turf/open/floor/plating, -/area/rocinante_base/surface/building/mining_construction) -"dgd" = ( -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/rocinante_base/surface/building/living/prep) -"dgv" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"dgK" = ( -/obj/structure/table/black, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"dhg" = ( -/obj/machinery/washing_machine, -/obj/machinery/washing_machine{ - pixel_y = 16 - }, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/laundromat) -"dhO" = ( -/obj/machinery/chem_master/nopower, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"dia" = ( -/obj/structure/prop/mainship/missile_tube, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"dif" = ( -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/living/po_quarters) -"diK" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/prep) -"djc" = ( -/obj/structure/prop/mainship/sensor_computer2, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"djx" = ( -/obj/structure/largecrate/random/case/small, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"djG" = ( -/obj/effect/turf_decal/warning_stripes/box/small, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"dkg" = ( -/turf/open/floor/mainship/sterile/purple/side{ - dir = 9 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"dkn" = ( -/obj/machinery/power/apc, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"dkX" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/computer/som_two, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"dlP" = ( -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/administration/meeting) -"dmf" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/po_quarters) -"dmi" = ( -/obj/machinery/computer/som_two{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"dnc" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857" - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"dnB" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"dnD" = ( -/obj/structure/desertdam/decals/road/stop{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"dov" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"doB" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/air_storage) -"doF" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/north_smes) -"doH" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"doL" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/command_hall) -"doP" = ( -/obj/structure/curtain/open/shower, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/west_barracks) -"dpl" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/living/prep) -"dpI" = ( -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration) -"dqQ" = ( -/turf/closed/mineral/smooth/indestructible, -/area/rocinante_base/ground/underground/caveN) -"drA" = ( -/obj/structure/table/black, -/obj/item/phone, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"dsb" = ( -/obj/structure/platform_decoration/metalplatform_deco, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"dsi" = ( -/obj/item/mortal_shell/howitzer/he, -/obj/structure/rack, -/obj/effect/turf_decal/warning_stripes/box, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"dsV" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveCent) -"dtd" = ( -/obj/machinery/computer/teleporter, -/obj/structure/table/reinforced, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"dtF" = ( -/obj/machinery/door/poddoor/mainship/open, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/southern_aux) -"dun" = ( -/turf/open/floor/mainship_hull/gray, -/area/rocinante_base/ground/base_sw) -"duz" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"dvv" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/rocinante_base/ground/base_sw) -"dvS" = ( -/obj/structure/cargo_container/red{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"dwi" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"dwS" = ( -/obj/machinery/door/airlock/mainship/security{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"dxh" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_cent) -"dxF" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"dyG" = ( -/obj/effect/turf_decal/warning_stripes/box/small, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"dyY" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/administration) -"dzy" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"dzQ" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_n) -"dAb" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tram_line) -"dAh" = ( -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"dAw" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_ne) -"dAA" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/north_com) -"dBv" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/obj/structure/prop/mainship/gelida/rails, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_w) -"dBX" = ( -/obj/machinery/cic_maptable, -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"dCv" = ( -/obj/structure/table/black, -/obj/machinery/microwave, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"dCN" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/rocinante_base/surface/building/cargo/southern_aux) -"dDn" = ( -/obj/machinery/door/airlock/multi_tile/mainship/medidoor, -/turf/open/floor/mainship/sterile/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/medical) -"dDx" = ( -/turf/closed/mineral/smooth/snowrock, -/area/rocinante_base/ground/base_w) -"dEa" = ( -/obj/structure/window/framed/mainship/escapeshuttle, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_sw) -"dGi" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 10 - }, -/area/rocinante_base/ground/base_cent) -"dGu" = ( -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/administration/south_com) -"dGQ" = ( -/obj/machinery/cic_maptable, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"dHf" = ( -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/security/command_sec) -"dIa" = ( -/obj/machinery/vending/snack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"dIg" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/living/prep) -"dIF" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857" - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_ne) -"dIT" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"dIX" = ( -/turf/open/floor/mainship/silver/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/command) -"dIY" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"dJa" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/rocinante_base/surface/building/administration) -"dJj" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"dJI" = ( -/obj/effect/attach_point/weapon/dropship1{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/warnplate{ - dir = 8 - }, -/area/rocinante_base/surface/landing/landing_pad_two) -"dJQ" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration) -"dNa" = ( -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/administration/meeting) -"dNo" = ( -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/security/hub) -"dNZ" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"dOt" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"dPa" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"dPb" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/rocinante_base/surface/building/southern_construction) -"dPr" = ( -/obj/machinery/door/airlock/mainship/security/glass/free_access{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"dPz" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"dPD" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/administration) -"dPW" = ( -/obj/machinery/light, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"dQc" = ( -/obj/structure/table/reinforced, -/obj/structure/xenoautopsy, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"dQi" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"dQW" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"dRa" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"dRg" = ( -/obj/structure/somcas/three, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"dRl" = ( -/obj/structure/prop/brokenvendor/surplusarmor, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"dRp" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/laundromat) -"dRJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"dRX" = ( -/obj/structure/largecrate/packed, -/obj/machinery/light, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"dSq" = ( -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"dSy" = ( -/turf/open/space/basic, -/area/space) -"dSA" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 1 - }, -/turf/open/floor/mainship/som, -/area/rocinante_base/surface/building/security/hub) -"dTc" = ( -/turf/open/floor/mainship/silver{ - dir = 10 - }, -/area/rocinante_base/surface/building/administration/command) -"dTf" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveN) -"dTl" = ( -/obj/structure/bed/chair/office/dark, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/hub) -"dUg" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"dUn" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"dUQ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"dUW" = ( -/obj/structure/prop/mainship/protolathe/security, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"dVL" = ( -/obj/structure/table/black, -/obj/item/phone, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/lz_control) -"dWU" = ( -/obj/structure/ship_ammo/cas/heavygun, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/air_storage) -"dXe" = ( -/obj/structure/largecrate, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_n) -"dXj" = ( -/turf/open/shuttle/escapepod/zero, -/area/rocinante_base/ground/base_w) -"dXo" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"dXt" = ( -/turf/closed/shuttle/dropship_regular/interior_wall, -/area/rocinante_base/ground/base_sw) -"dXu" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"dYa" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 5 - }, -/turf/open/floor/mainship/som/nw, -/area/rocinante_base/surface/building/administration) -"dYg" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/security/sec_dorms) -"dYA" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/administration/central_com) -"eaO" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 4 - }, -/area/rocinante_base/ground/base_cent) -"ecp" = ( -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"ecE" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/rocinante_base/surface/building/southern_construction) -"ecF" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"ecH" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/rocinante_base/surface/building/administration/central_com) -"ede" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/administration/central_com) -"edg" = ( -/obj/structure/table/black, -/obj/item/reagent_containers/food/snacks/burger/cheese, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/break_room) -"edx" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 8 - }, -/area/rocinante_base/surface/landing/landing_pad_one) -"eeD" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/structure/prop/train/cargo_hyperdyne, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"eeS" = ( -/obj/machinery/light, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/living/prep) -"efy" = ( -/obj/machinery/computer/som_two{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"efV" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/rocinante_base/surface/building/living/prep) -"ega" = ( -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"egg" = ( -/obj/machinery/autodoc, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"egp" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 6 - }, -/turf/open/floor/mainship/som/sw, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"egL" = ( -/obj/structure/table/black, -/obj/item/reagent_containers/food/snacks/sliceable/sandwiches/bananabread, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/science/break_room) -"ehd" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"ehl" = ( -/obj/structure/cargo_container/red{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"ehp" = ( -/obj/structure/table/black, -/obj/structure/window/reinforced, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"ehU" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"ehY" = ( -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"eie" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"ejj" = ( -/obj/structure/platform/metalplatform, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tram_line) -"ejE" = ( -/obj/structure/sink/bathroom{ - dir = 4 - }, -/obj/structure/mirror{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/ground/base_cent) -"ekv" = ( -/obj/machinery/light, -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/tele_lab) -"ekW" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/west_barracks) -"elr" = ( -/obj/structure/platform/metalplatform{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"elF" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"elO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"emd" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/rocinante_base/ground/base_s) -"emK" = ( -/turf/open/floor/plating/dmg3, -/area/rocinante_base/surface/building/living/west_barracks) -"emM" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/hub) -"end" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"enz" = ( -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"enB" = ( -/obj/structure/closet/fireaxecabinet, -/turf/closed/shuttle/escapeshuttle, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"enO" = ( -/obj/structure/table/black, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"enY" = ( -/obj/machinery/door/poddoor/mainship/indestructible{ - dir = 2 - }, -/turf/closed/wall/indestructible, -/area/rocinante_base/surface/building/tram_line) -"eom" = ( -/obj/item/ammo_casing, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_e) -"epe" = ( -/turf/closed/mineral/smooth/indestructible, -/area/rocinante_base/ground/base_ne) -"epj" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"epu" = ( -/obj/structure/sign/double/map/right, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"epx" = ( -/obj/effect/turf_decal/siding/dark, -/turf/open/floor/mainship/som/s, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"epO" = ( -/obj/structure/toilet/alternate{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/science/tele_lab) -"epS" = ( -/obj/structure/platform, -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/tele_lab) -"epW" = ( -/obj/machinery/science/isolator/inserted, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"eqg" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"eqh" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/rocinante_base/ground/underground/caveN) -"eqk" = ( -/obj/machinery/door/airlock/mainship/security{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/command_sec) -"eqw" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/security/hub) -"eqD" = ( -/obj/structure/prop/mainship/hangar_stencil/two, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"erp" = ( -/turf/closed/shuttle/dropship_regular/interior_corner{ - dir = 1 - }, -/area/rocinante_base/ground/base_sw) -"erz" = ( -/obj/effect/landmark/corpsespawner/som, -/turf/open/floor/plating/icefloor/warnplate{ - dir = 8 - }, -/area/rocinante_base/ground/base_s) -"erF" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_two) -"erQ" = ( -/turf/open/floor/mainship/sterile/side, -/area/rocinante_base/surface/building/medical) -"esh" = ( -/obj/structure/sink{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"esz" = ( -/obj/structure/table/black, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/science/break_room) -"esA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/security/hub) -"ete" = ( -/obj/structure/platform/metalplatform, -/obj/structure/barricade/concrete, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"etU" = ( -/obj/effect/turf_decal/warning_stripes/box/arrow{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"eul" = ( -/obj/structure/prop/vehicle/crane/cranecargo, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"evj" = ( -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/barracks) -"evt" = ( -/obj/structure/monorail, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tram_line) -"evz" = ( -/obj/effect/landmark/corpsespawner/som, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/firing_range) -"ewf" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/security/brig) -"eww" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"exR" = ( -/turf/open/floor/mainship/red/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"eyh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"eyt" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"eyH" = ( -/obj/structure/cargo_container/horizontal, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"eyK" = ( -/obj/machinery/computer/som, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"eBe" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/west_aux) -"eBi" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 6 - }, -/area/rocinante_base/surface/landing/landing_pad_one) -"eBw" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/obj/structure/platform/metalplatform, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"eBy" = ( -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/living/barracks) -"eCb" = ( -/obj/effect/turf_decal/warning_stripes/box/small, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"eDy" = ( -/obj/structure/shuttle/engine/heater, -/turf/closed/shuttle/dropship_regular/interior_wall, -/area/rocinante_base/ground/base_sw) -"eDC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"eDJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/science/analyser, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"eEk" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 10 - }, -/area/rocinante_base/surface/building/science/research_lab) -"eEt" = ( -/turf/open/floor/mainship/sterile/purple/side{ - dir = 10 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"eEw" = ( -/obj/structure/somcas, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"eFn" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 10 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"eFL" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"eFS" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/living/laundromat) -"eGm" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/mainship/silver{ - dir = 5 - }, -/area/rocinante_base/surface/building/administration/command) -"eGp" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/obj/structure/platform/metalplatform, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"eGv" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/science/tele_lab) -"eGS" = ( -/obj/structure/platform/metalplatform, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"eHe" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/southern_construction) -"eHU" = ( -/obj/structure/platform_decoration/metalplatform_deco{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"eHW" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 5 - }, -/turf/open/floor/mainship/som/nw, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"eIm" = ( -/obj/machinery/door/airlock/mainship/secure/free_access, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"eIz" = ( -/turf/open/floor/mainship/sterile/purple, -/area/rocinante_base/surface/building/science/research_lab) -"eIF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/north_smes) -"eIN" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/ground/base_nw) -"eIR" = ( -/obj/structure/prop/mainship/gelida/propserveralt, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/lz_control) -"eIZ" = ( -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"eKj" = ( -/obj/structure/fence, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"eKq" = ( -/obj/structure/bed/chair{ - desc = "This tiny folding chair looks like a torture device in comparison to the chair next to it."; - dir = 4 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_s) -"eLR" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/command_sec) -"eLY" = ( -/obj/structure/sink/bathroom{ - dir = 4 - }, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/west_barracks) -"eME" = ( -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/central_com) -"eMI" = ( -/obj/structure/stairs/seamless/edge, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"eNM" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 8 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"eOM" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/ground/base_nw) -"eOQ" = ( -/turf/closed/mineral/smooth/indestructible, -/area/rocinante_base/ground/underground/caveW) -"ePr" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_n) -"ePx" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/janitor) -"ePR" = ( -/obj/machinery/status_display, -/obj/structure/platform/metalplatform, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"eQk" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"eQB" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"eQW" = ( -/obj/machinery/vending/snack, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/administration) -"eRe" = ( -/obj/structure/prop/mainship/gelida/miner, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"eRg" = ( -/turf/closed/mineral/smooth/snowrock, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"eRl" = ( -/obj/machinery/door/airlock/mainship/security/glass/free_access{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"eRu" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"eRA" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/som/nw, -/area/rocinante_base/surface/building/living/barracks) -"eRN" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/break_room) -"eSh" = ( -/obj/structure/sign/double/map/left, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"eSp" = ( -/obj/structure/flora/tree/pine, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"eSP" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/air_storage) -"eTX" = ( -/obj/structure/shuttle/engine/heater, -/turf/closed/shuttle/dropship_regular/backhatch{ - dir = 4 - }, -/area/rocinante_base/ground/base_sw) -"eUB" = ( -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/meeting) -"eUK" = ( -/obj/structure/table/black, -/obj/item/tool/mop, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/janitor) -"eUN" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"eVj" = ( -/obj/structure/table/black, -/obj/item/toy/deck, -/obj/item/storage/fancy/cigar, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_s) -"eVG" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 2 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"eVI" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"eWs" = ( -/turf/closed/mineral/smooth{ - color = "#c2e4ff" - }, -/area/rocinante_base/ground/base_e) -"eWK" = ( -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"eWT" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"eXc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/tele_lab) -"eXr" = ( -/obj/machinery/power/apc, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/surface/building/train_station) -"eXz" = ( -/obj/structure/flora/tree/dead, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"eXM" = ( -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/meeting) -"eYF" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"eZb" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/hub) -"eZu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"faf" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/rocinante_base/ground/base_w) -"faM" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"faN" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/rocinante_base/ground/base_sw) -"fbj" = ( -/obj/structure/bed/chair/alt{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"fbY" = ( -/obj/structure/table/black, -/obj/item/reagent_containers/food/snacks/sliceable/sandwiches/bananabread, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/break_room) -"fdb" = ( -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"fdc" = ( -/obj/structure/prop/mainship/sensor_computer3, -/obj/structure/platform/metalplatform{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"fdD" = ( -/obj/structure/somcas/six{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"fdG" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/west_barracks) -"fdH" = ( -/obj/structure/prop/mainship/gelida/lightstick, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/rocinante_base/ground/base_w) -"feo" = ( -/obj/machinery/door/airlock/mainship/generic, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/west_barracks) -"feU" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"ffn" = ( -/turf/closed/mineral/smooth/indestructible, -/area/rocinante_base/ground/base_se) -"ffB" = ( -/obj/structure/bed/chair/alt, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/break_room) -"ffF" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"ffR" = ( -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/security/medical_sec) -"fgk" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_e) -"fgm" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/comm_post) -"fgM" = ( -/turf/open/floor/mainship/black/corner, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"fhd" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration/breakroom) -"fhD" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"fiq" = ( -/obj/structure/cable, -/obj/structure/table/black, -/obj/machinery/computer3/laptop, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"fiX" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/research_lab) -"fiY" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/platform/metalplatform, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"fjH" = ( -/obj/machinery/science/analyser, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"fjM" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/train_station) -"fjN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"fkH" = ( -/obj/structure/table/black, -/obj/machinery/computer3/server, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"fkP" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/obj/structure/platform/metalplatform{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"fld" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/obj/structure/sign/double/map/right, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"flu" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 1 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"flx" = ( -/obj/structure/platform/metalplatform{ - dir = 6 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"flN" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"flQ" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"fmh" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/mainship/sterile/side, -/area/rocinante_base/surface/building/medical) -"fmi" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"fmw" = ( -/obj/item/trash/cheesie, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_s) -"fmE" = ( -/obj/structure/janitorialcart, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/janitor) -"fmL" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/prep) -"fmQ" = ( -/obj/machinery/vending/cola, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/break_room) -"fmU" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"fpc" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/ground/base_nw) -"fpF" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/security/command_sec) -"fpY" = ( -/obj/structure/prop/mainship/gelida/lightstick, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"fqL" = ( -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_sw) -"fqT" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/west_aux) -"fqX" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/west_aux) -"fry" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"frF" = ( -/obj/machinery/door/airlock/prison/horizontal/open{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"frK" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/ground/base_se) -"fsx" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/ground/underground/caveN) -"fsD" = ( -/obj/structure/table/black, -/obj/machinery/computer/camera, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/hub) -"fsH" = ( -/obj/structure/stairs/seamless, -/obj/structure/platform/metalplatform{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_n) -"fts" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/light, -/turf/open/floor/mainship/sterile/side, -/area/rocinante_base/surface/building/medical) -"ftv" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveE) -"ftF" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/bio_lab) -"ftX" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"fub" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"fuC" = ( -/obj/structure/table/reinforced, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"fuI" = ( -/obj/machinery/door/window, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"fuP" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"fuQ" = ( -/obj/structure/prop/brokenvendor/surplusarmor, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"fuT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/garage_sec) -"fuW" = ( -/obj/machinery/computer3/server/rack, -/obj/structure/window/full{ - dir = 8 - }, -/obj/structure/window/full{ - dir = 1 - }, -/turf/open/floor/mainship/tcomms, -/area/rocinante_base/surface/building/administration/central_com) -"fuX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/tele_lab) -"fuZ" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/security/hub) -"fvr" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/prop/mainship/gelida/miner, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"fvG" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating, -/area/rocinante_base/surface/building/southern_construction) -"fvX" = ( -/obj/structure/bed/chair/alt{ - dir = 4 - }, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/living/bar) -"fwd" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/side{ - dir = 6 - }, -/area/rocinante_base/surface/building/medical) -"fwi" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"fwq" = ( -/obj/machinery/computer/som, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/central_com) -"fwE" = ( -/obj/machinery/light, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"fxb" = ( -/obj/structure/cargo_container/horizontal{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"fxV" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"fyP" = ( -/obj/structure/flora/tree/pine, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_nw) -"fzp" = ( -/obj/structure/table/black, -/obj/item/newspaper, -/obj/item/weapon/gun/rifle/mpi_km, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"fzL" = ( -/obj/machinery/vending/cola, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/administration) -"fAC" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"fAS" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/north_aux) -"fAY" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/west_aux) -"fBM" = ( -/obj/machinery/vending/marineFood, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/barracks) -"fDm" = ( -/turf/open/floor/mainship/red/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"fDp" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/ground/base_se) -"fDt" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/turf_decal/warning_stripes/box, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"fDZ" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 10 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/bio_lab) -"fEf" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/command_hall) -"fEm" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/lz_control) -"fEG" = ( -/obj/structure/table/black, -/obj/machinery/computer3/laptop, -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/rocinante_base/surface/building/administration/central_com) -"fEU" = ( -/obj/structure/bed/chair/alt{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/hub) -"fFd" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/research_lab) -"fFq" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"fGa" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 4 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_w) -"fGt" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"fHj" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/mining_construction) -"fHt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"fHN" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_se) -"fHZ" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"fIa" = ( -/turf/closed/mineral/smooth/indestructible, -/area/storage/testroom) -"fId" = ( -/obj/structure/table/black, -/obj/machinery/microwave, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"fIg" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/underground/caveN) -"fIs" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_w) -"fIH" = ( -/obj/structure/rack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"fJD" = ( -/obj/machinery/vending/snack, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/break_room) -"fJI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 10 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"fJK" = ( -/obj/structure/barricade/concrete, -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"fKx" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_ne) -"fLH" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/structure/prop/train/carriage, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"fMd" = ( -/obj/machinery/door/airlock/mainship/engineering, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/south_smes) -"fMg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"fNp" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/south_smes) -"fNs" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"fNG" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/comm_post) -"fOE" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/mainship/sterile/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/medical) -"fOI" = ( -/obj/machinery/computer/som_two{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/central_com) -"fPW" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/rocinante_base/ground/base_s) -"fQa" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"fQo" = ( -/turf/open/floor/plating/ground/concrete/edge, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"fQr" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"fRd" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"fRe" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"fRf" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"fRj" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/hub) -"fRU" = ( -/obj/structure/bed/chair/pew{ - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"fSf" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/silver{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/command) -"fSi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"fSC" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/tele_lab) -"fTE" = ( -/obj/structure/sign/double/map/left, -/obj/structure/bed/chair/sofa/corsat/left, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"fUw" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"fUB" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/mining_construction) -"fUK" = ( -/obj/structure/largecrate/random, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"fUN" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/command_sec) -"fVj" = ( -/obj/structure/filingcabinet, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/comm_post) -"fVl" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"fVx" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/ground/underground/caveN) -"fVS" = ( -/obj/structure/prop/mainship/protolathe/sci, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"fWL" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"fXb" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"fXN" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/janitor) -"fXY" = ( -/obj/structure/barricade/guardrail, -/obj/structure/platform/metalplatform, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tram_line) -"fYm" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration/meeting) -"fYv" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/rocinante_base/ground/underground/caveN) -"fZA" = ( -/obj/structure/bed/chair/alt{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/break_room) -"fZB" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/central_com) -"fZD" = ( -/obj/structure/prop/brokenvendor/brokennanomedvendor, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"fZO" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_e) -"gaz" = ( -/obj/machinery/computer/som{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/hub) -"gaK" = ( -/obj/structure/sign/double/map/right, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"gaV" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"gbn" = ( -/obj/structure/mine_structure/wooden/support_wall/above, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveW) -"gca" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"gci" = ( -/obj/machinery/floor_warn_light, -/turf/closed/shuttle/re_corner, -/area/rocinante_base/surface/building/science/tele_lab) -"gdi" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"gdp" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"ger" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/mainship/cargo/arrow{ - dir = 4 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"geS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"gfk" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"ggv" = ( -/obj/structure/table/black, -/obj/item/pizzabox/margherita, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/breakroom) -"ghl" = ( -/obj/machinery/science/analyser, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"giw" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_e) -"giQ" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/ground/base_cent) -"giW" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/ground/underground/caveN) -"gja" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/rocinante_base/ground/base_sw) -"gjz" = ( -/obj/machinery/computer/som_two{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"gkJ" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/prep) -"gkP" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_e) -"glm" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/ground/base_cent) -"glK" = ( -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/administration) -"gmr" = ( -/turf/open/floor/mainship/black/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"gmY" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_e) -"gnj" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"goE" = ( -/obj/structure/desertdam/decals/road/line, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"goI" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"goT" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration) -"gpr" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"gpu" = ( -/obj/machinery/computer/som{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"gpO" = ( -/obj/item/trash/sosjerky, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_s) -"gpS" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"gqM" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"gqV" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/barracks) -"grM" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 5 - }, -/area/rocinante_base/surface/landing/landing_pad_two) -"gsV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/command_hall) -"gth" = ( -/turf/open/floor/mainship/sterile/purple/side{ - dir = 5 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"gtL" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 8 - }, -/area/rocinante_base/surface/landing/landing_pad_two) -"guy" = ( -/turf/open/floor/mainship/red/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/break_room) -"guI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"guS" = ( -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"gvk" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red/full, -/area/rocinante_base/surface/building/administration) -"gvC" = ( -/obj/machinery/door/airlock/mainship/security, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/central_com) -"gvH" = ( -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/command_sec) -"gwI" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"gwP" = ( -/obj/structure/bed/chair/pew{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"gwQ" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"gwZ" = ( -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"gxz" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"gxB" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/barracks) -"gxI" = ( -/obj/structure/flora/pottedplant/twentyone, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"gxZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"gzd" = ( -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"gzp" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 4 - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_cent) -"gzR" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/underground/caveN) -"gAH" = ( -/obj/structure/filingcabinet, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"gAI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"gAP" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#5b7857" - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_ne) -"gBH" = ( -/obj/structure/table/reinforced, -/obj/machinery/science/athogenic_Isolator/on, -/obj/item/resin_jelly, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"gCc" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"gCO" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/south_smes) -"gDg" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_n) -"gDi" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/engineering/south_smes) -"gDo" = ( -/obj/structure/cargo_container/ch_red{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"gDs" = ( -/obj/structure/bed/chair/sofa/corsat, -/obj/structure/sign/double/map/left, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"gDP" = ( -/obj/structure/platform/rockcliff{ - dir = 4 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"gDR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"gFg" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/west_aux) -"gGc" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 10 - }, -/area/rocinante_base/ground/base_s) -"gGy" = ( -/obj/structure/platform/rockcliff{ - dir = 1 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"gGJ" = ( -/obj/machinery/computer/crew, -/turf/open/floor/mainship/sterile/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/medical) -"gHi" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"gHt" = ( -/obj/structure/platform_decoration/rockcliff_deco, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"gHH" = ( -/obj/structure/table/black, -/obj/effect/turf_decal/tile/corsatstraight/gray{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/lz_control) -"gIE" = ( -/obj/structure/table/black, -/obj/machinery/computer3/server, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"gIN" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"gJj" = ( -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/administration/central_com) -"gJs" = ( -/obj/structure/ship_ammo/cas/rocket/banshee, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/cargo/air_storage) -"gJR" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/central_com) -"gKs" = ( -/obj/structure/flora/tree/pine, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_cent) -"gKX" = ( -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/central_com) -"gLg" = ( -/turf/closed/mineral/smooth/snowrock, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"gLF" = ( -/obj/structure/largecrate/supply, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/surface/building/train_station) -"gNx" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"gNE" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/barracks) -"gNM" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/prep) -"gNV" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_w) -"gOa" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/living/laundromat) -"gOi" = ( -/obj/structure/bed/chair/pew{ - dir = 5 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"gOk" = ( -/obj/structure/largecrate/packed, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"gOG" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"gPb" = ( -/obj/structure/somcas/two{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/warnplate{ - dir = 4 - }, -/area/rocinante_base/ground/base_s) -"gPo" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"gPK" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/ground/underground/caveN) -"gPP" = ( -/obj/structure/mine_structure/wooden/support_wall/above, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveCent) -"gQc" = ( -/obj/structure/prop/mainship/gelida/propserver, -/obj/structure/window{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/lz_control) -"gQu" = ( -/obj/structure/flora/pottedplant/twentytwo, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"gQM" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating, -/area/rocinante_base/surface/building/southern_construction) -"gQR" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/barracks) -"gQV" = ( -/obj/machinery/door/airlock/mainship/secure/free_access{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"gSH" = ( -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/administration) -"gTc" = ( -/obj/structure/prop/mainship/protolathe, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"gTi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"gTs" = ( -/obj/structure/mine_structure/cart, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveS) -"gTG" = ( -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/science/break_room) -"gUG" = ( -/obj/structure/coatrack, -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"gUI" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/cargo/arrow{ - dir = 8 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"gUN" = ( -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"gUY" = ( -/obj/structure/bed/chair/alt, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/prep) -"gVl" = ( -/obj/effect/turf_decal/warning_stripes/thick/corner{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"gVs" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/ground/base_n) -"gVB" = ( -/obj/machinery/door/airlock/mainship/secure/free_access, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"gXe" = ( -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/administration/meeting) -"gXt" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"gXK" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/west_barracks) -"gYb" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 5 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"gYj" = ( -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"gYO" = ( -/obj/structure/safe, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/administration) -"gZa" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/ground/base_s) -"gZp" = ( -/obj/structure/cargo_container/horizontal{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"gZy" = ( -/obj/effect/turf_decal/warning_stripes/leader, -/obj/structure/cable, -/turf/open/floor/mainship/black{ - dir = 6 - }, -/area/rocinante_base/surface/building/living/prep) -"gZU" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/laundromat) -"hac" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/rocinante_base/ground/base_s) -"haE" = ( -/obj/item/weapon/gun/energy/lasgun/lasrifle/volkite/cope/predeployed, -/obj/structure/barricade/concrete{ - dir = 8 - }, -/obj/structure/barricade/concrete{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"haL" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"hbg" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"hbu" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"hbB" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"hbI" = ( -/obj/structure/prop/mainship/research/circuit_imprinter, -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/security/hub) -"hcg" = ( -/obj/item/tool/crowbar/red, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"hci" = ( -/obj/structure/table/black, -/obj/machinery/computer3/laptop, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"hcZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"hdb" = ( -/obj/structure/table/black, -/obj/machinery/microwave, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/west_barracks) -"hdc" = ( -/obj/structure/table/black, -/obj/item/phone, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/hub) -"hdv" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/barracks) -"hdL" = ( -/turf/closed/mineral/smooth/snowrock, -/area/rocinante_base/ground/base_ne) -"hdU" = ( -/obj/structure/sign/double/barsign/carp, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/bar) -"hen" = ( -/obj/machinery/power/smes/buildable/empty{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"heq" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"heU" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"hfa" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 10 - }, -/turf/open/floor/mainship/som/se, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"hfd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/som, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"hfy" = ( -/obj/structure/table/black, -/obj/item/reagent_containers/food/snacks/pizzapasta/meatpizzaslice, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"hfK" = ( -/obj/effect/landmark/corpsespawner/som, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"hfV" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/north_smes) -"hgq" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"hgD" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/central_com) -"hgN" = ( -/obj/item/stool, -/obj/item/paper/crumpled, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/living/bar) -"hhz" = ( -/obj/structure/window/reinforced, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"hhI" = ( -/obj/structure/flora/tree/pine, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_w) -"hie" = ( -/turf/open/floor/mainship/sterile/side{ - dir = 10 - }, -/area/rocinante_base/surface/building/medical) -"hir" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/command_hall) -"hiK" = ( -/obj/structure/platform/rockcliff{ - dir = 5 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"hiN" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/bio_lab) -"hjq" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"hjw" = ( -/obj/structure/sign/electricshock, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/science/tele_lab) -"hkO" = ( -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"hlm" = ( -/obj/machinery/iv_drip, -/turf/open/floor/mainship/sterile/corner, -/area/rocinante_base/surface/building/medical) -"hlq" = ( -/obj/machinery/door/airlock/mainship/marine{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/po_quarters) -"hlZ" = ( -/obj/structure/platform/metalplatform{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tram_line) -"hmo" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"hmR" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"hnp" = ( -/obj/structure/flora/tree/dead, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_w) -"hnI" = ( -/obj/structure/rock/variable/crystal_mound, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_cent) -"how" = ( -/obj/machinery/power/apc, -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"hoA" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"hoL" = ( -/obj/vehicle/train/cargo/engine{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"hoY" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"hpb" = ( -/obj/structure/stairs/seamless, -/obj/structure/cable, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"hpp" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/bar) -"hpK" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"hqj" = ( -/mob/living/simple_animal/corgi{ - desc = "It's a corgi,its been trained to sniff out contraband." - }, -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"hqm" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"hqD" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_cent) -"hqE" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"hrt" = ( -/obj/structure/bed/chair/alt{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/prep) -"hsV" = ( -/obj/structure/table/black, -/obj/machinery/door/window, -/obj/machinery/door/window{ - dir = 8 - }, -/obj/item/clipboard, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"htx" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"hue" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/rocinante_base/ground/base_w) -"huf" = ( -/obj/structure/prop/brokenvendor/brokenspecialistvendor/leader, -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/rocinante_base/surface/building/living/prep) -"huC" = ( -/obj/machinery/door/airlock/multi_tile/mainship/marine, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"huK" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/ground/base_w) -"hvG" = ( -/obj/structure/platform/rockcliff{ - dir = 4 - }, -/obj/structure/platform/rockcliff, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"hvJ" = ( -/obj/machinery/power/apc{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"hwf" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/command_sec) -"hws" = ( -/obj/machinery/vending/security, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"hwI" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/north_smes) -"hxk" = ( -/obj/structure/table/black, -/obj/effect/turf_decal/tile/corsatstraight/gray{ - dir = 4 - }, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/lz_control) -"hyc" = ( -/obj/structure/cargo_container/hd{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"hzd" = ( -/obj/machinery/computer/som, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"hzi" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/silver/corner, -/area/rocinante_base/surface/building/administration/command) -"hzU" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_n) -"hAi" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/rocinante_base/ground/base_s) -"hAs" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/prep) -"hAI" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"hAK" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"hAU" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"hBp" = ( -/obj/structure/prop/brokenvendor/brokenmarinemedvendor, -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/rocinante_base/surface/building/living/prep) -"hBD" = ( -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/ground/base_cent) -"hBK" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration) -"hBV" = ( -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/hub) -"hBW" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/meeting) -"hBY" = ( -/obj/docking_port/stationary/marine_dropship/lz1, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_one) -"hCQ" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"hDw" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"hEL" = ( -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/ground/base_cent) -"hFw" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"hFI" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_ne) -"hGw" = ( -/obj/structure/largecrate, -/obj/machinery/door/window, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"hGx" = ( -/obj/machinery/photocopier, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"hHj" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"hHr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"hHP" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"hHR" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"hIn" = ( -/obj/item/weapon/gun/energy/lasgun/lasrifle/volkite/cope/predeployed, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"hIA" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_se) -"hJi" = ( -/turf/closed/mineral/smooth/snowrock, -/area/rocinante_base/ground/base_e) -"hJu" = ( -/obj/structure/table/black, -/obj/structure/platform/metalplatform{ - dir = 10 - }, -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"hJw" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 1 - }, -/turf/open/floor/mainship/som, -/area/rocinante_base/surface/building/administration) -"hJN" = ( -/obj/structure/bed/chair/alt{ - dir = 8 - }, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"hJZ" = ( -/turf/open/floor/mainship/sterile/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/medical) -"hLm" = ( -/obj/structure/rack, -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/research_lab) -"hMD" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/hub) -"hMG" = ( -/obj/structure/shuttle/engine/heater, -/turf/closed/shuttle/dropship_regular/interior_wall{ - dir = 1 - }, -/area/rocinante_base/ground/base_sw) -"hMQ" = ( -/obj/machinery/power/apc{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/meeting) -"hNJ" = ( -/turf/open/floor/mainship/sterile/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/medical) -"hNO" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 1 - }, -/turf/open/floor/mainship/som, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"hNS" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_ne) -"hOt" = ( -/obj/machinery/teleport/hub{ - name = "low proximity bluespace distortion device" - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"hOK" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"hOW" = ( -/obj/structure/bed/chair/pew{ - dir = 10 - }, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"hPQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/southern_aux) -"hRe" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/south_smes) -"hRq" = ( -/obj/structure/sign/double/map/right, -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"hSB" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"hTQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"hUi" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/silver{ - dir = 6 - }, -/area/rocinante_base/surface/building/administration/command) -"hUI" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/ground/base_nw) -"hUK" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/rocinante_base/ground/base_sw) -"hUX" = ( -/obj/structure/cable, -/obj/structure/platform/metalplatform, -/turf/open/floor/mainship/black{ - dir = 6 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"hWa" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"hXC" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"hZN" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/tele_lab) -"hZZ" = ( -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"iaW" = ( -/obj/structure/prop/brokenvendor/surplusarmor, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"ibx" = ( -/obj/item/shard, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/bio_lab) -"ice" = ( -/obj/structure/ship_ammo/cas/rocket/banshee, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/rocinante_base/surface/building/cargo/air_storage) -"icG" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/south_com) -"icS" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"icT" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"idp" = ( -/obj/effect/turf_decal/warning_stripes/box/small, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"idx" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"ieB" = ( -/obj/structure/rack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"ieG" = ( -/obj/machinery/door/airlock/mainship/secure/free_access{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"ifk" = ( -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/command_hall) -"ifm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"ifD" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"ifJ" = ( -/obj/structure/platform/rockcliff{ - dir = 8 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"ifO" = ( -/obj/structure/table/black, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/hub) -"ige" = ( -/obj/structure/cable, -/turf/open/floor/mainship/silver{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/command) -"ign" = ( -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/administration/central_com) -"igH" = ( -/obj/structure/table/black, -/obj/machinery/conveyor_switch, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"ihZ" = ( -/obj/machinery/photocopier, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"iig" = ( -/obj/effect/landmark/corpsespawner/som, -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"iiC" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/science/break_room) -"ijN" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"ijP" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"ika" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/surface/building/train_station) -"ikm" = ( -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_sw) -"ikq" = ( -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/living/laundromat) -"ikv" = ( -/obj/structure/table/reinforced, -/turf/open/floor/mainship/sterile/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/medical) -"ikz" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"ikM" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/prep) -"iln" = ( -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/crystal_lab) -"ilB" = ( -/turf/open/floor/plating/dmg3, -/area/rocinante_base/surface/building/mining_construction) -"ilP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"ilY" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/machinery/door/poddoor/mainship/indestructible, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tram_line) -"imd" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration/meeting) -"ime" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/hub) -"imf" = ( -/obj/structure/urinal, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"imN" = ( -/obj/structure/cable, -/turf/open/floor/mainship/cargo/arrow{ - dir = 8 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"inj" = ( -/obj/machinery/computer/som_two{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"inn" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/rocinante_base/ground/base_w) -"inB" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_sw) -"ioo" = ( -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/administration/meeting) -"iow" = ( -/obj/structure/cable, -/obj/machinery/light, -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/security/hub) -"ioQ" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"ipx" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/crystal_lab) -"iqq" = ( -/obj/structure/mopbucket, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/janitor) -"iqt" = ( -/obj/structure/prop/brokenvendor/brokennanomedvendor, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"irk" = ( -/turf/open/floor/plating/dmg3, -/area/rocinante_base/ground/base_w) -"irp" = ( -/obj/structure/cargo_container/hd{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"irt" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/medical_sec) -"irB" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"ise" = ( -/turf/open/floor/mainship/blue/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/central_com) -"itO" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"itZ" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/effect/decal/cleanable/blood, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/bio_lab) -"iuc" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"iuw" = ( -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"iuG" = ( -/obj/structure/rack, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"iuL" = ( -/obj/structure/table/black, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"iuP" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"ivc" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 10 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"ivP" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"ivS" = ( -/obj/structure/window/reinforced, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/hub) -"iwb" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"iwe" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"iwj" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/living/laundromat) -"iwI" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 4 - }, -/obj/structure/prop/mainship/gelida/rails{ - dir = 9 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_w) -"iwO" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"ixy" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"iyi" = ( -/obj/structure/fence, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_cent) -"iym" = ( -/obj/structure/cargo_container/hd_blue{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"iyv" = ( -/obj/structure/bed/chair/alt{ - dir = 8 - }, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/living/prep) -"iyC" = ( -/obj/structure/urinal, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/west_barracks) -"iyX" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/som_two, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"iza" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"izg" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/meeting) -"iAP" = ( -/obj/machinery/faxmachine, -/obj/structure/table/black, -/obj/item/paper, -/obj/item/paper, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/comm_post) -"iBl" = ( -/obj/structure/stairs/seamless, -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"iBv" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"iBN" = ( -/obj/machinery/mineral/stacking_unit_console, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/science/crystal_lab) -"iCN" = ( -/obj/machinery/light, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/administration) -"iDw" = ( -/obj/structure/barricade/metal{ - dir = 8 - }, -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/obj/item/weapon/gun/energy/lasgun/lasrifle/volkite/cope/predeployed, -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_sw) -"iDO" = ( -/obj/structure/toilet/alternate{ - dir = 4 - }, -/obj/machinery/door/window, -/obj/structure/window/reinforced, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"iEg" = ( -/obj/effect/turf_decal/warning_stripes/box/arrow{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_se) -"iEn" = ( -/obj/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_one) -"iEq" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 10 - }, -/obj/structure/bed/chair/alt, -/turf/open/floor/mainship/som/se, -/area/rocinante_base/surface/building/living/barracks) -"iEz" = ( -/turf/open/floor/mainship/silver/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/command) -"iEG" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/central_com) -"iEY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"iFe" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/central_com) -"iFi" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration/comm_post) -"iFn" = ( -/obj/structure/cable, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"iFV" = ( -/obj/machinery/power/smes/buildable/empty{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/south_smes) -"iGf" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"iGl" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/central_com) -"iGZ" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/meeting) -"iHr" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"iHA" = ( -/obj/structure/prop/mainship/protolathe/medical, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"iHE" = ( -/obj/structure/prop/vehicle/crane/cranecargo/destructible, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/underground/caveN) -"iIa" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"iId" = ( -/obj/structure/table/black, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/firing_range) -"iIy" = ( -/obj/machinery/door/airlock/multi_tile/mainship/medidoor{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/medical) -"iIF" = ( -/obj/structure/curtain/open/shower, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/west_barracks) -"iIQ" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/central_com) -"iIT" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"iKc" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tram_line) -"iKj" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"iKo" = ( -/obj/item/reagent_containers/jerrycan, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"iKt" = ( -/obj/structure/prop/mainship/research/circuit_imprinter, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"iLs" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration) -"iLL" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"iLP" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/command_sec) -"iMj" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"iMm" = ( -/obj/structure/table/black, -/obj/item/storage/donut_box, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"iMN" = ( -/obj/machinery/computer/som, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"iMT" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#5b7857" - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_n) -"iNk" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 6 - }, -/area/rocinante_base/surface/landing/landing_pad_two) -"iNz" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/administration/central_com) -"iOh" = ( -/obj/structure/cargo_container/horizontal, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"iPn" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"iPJ" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"iPU" = ( -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"iQk" = ( -/obj/structure/table/reinforced, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"iQI" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/underground/caveN) -"iQS" = ( -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/breakroom) -"iRj" = ( -/obj/structure/cargo_container/red, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_ne) -"iRw" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"iSJ" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_w) -"iTP" = ( -/obj/machinery/prop/computer/rdservercontrol, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"iUJ" = ( -/obj/machinery/door/poddoor/mainship/indestructible, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tram_line) -"iUO" = ( -/obj/structure/cable, -/obj/machinery/light, -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/security/hub) -"iVi" = ( -/obj/structure/desertdam/decals/road/line, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"iVu" = ( -/turf/open/floor/plating/ground/concrete/edge, -/area/rocinante_base/ground/base_w) -"iVI" = ( -/obj/effect/landmark/corpsespawner/som, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"iVZ" = ( -/obj/structure/table/black, -/obj/machinery/microwave, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/hub) -"iXk" = ( -/obj/structure/platform/rockcliff{ - dir = 9 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"iXF" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/research_lab) -"iYR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/power/apc, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"iYS" = ( -/obj/machinery/computer/body_scanconsole, -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"iYY" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_n) -"jaw" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"jbt" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"jcT" = ( -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/barracks) -"jdi" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/rocinante_base/surface/building/living/barracks) -"jdV" = ( -/obj/structure/urinal, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/meeting) -"jem" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"jet" = ( -/obj/structure/flora/drought/shroom/nara_root, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveS) -"jeL" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/science/break_room) -"jfw" = ( -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"jfD" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/ground/base_cent) -"jgw" = ( -/obj/machinery/computer3/server/rack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/comm_post) -"jgK" = ( -/obj/machinery/door/airlock/mainship/secure/free_access, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"jhF" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/west_aux) -"jhM" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration) -"jhY" = ( -/obj/structure/desertdam/decals/road/stop{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"jiI" = ( -/obj/structure/largecrate/random/case/double, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"jja" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"jjx" = ( -/obj/machinery/computer3/server/rack, -/obj/structure/window/full{ - dir = 8 - }, -/turf/open/floor/mainship/tcomms, -/area/rocinante_base/surface/building/administration/central_com) -"jkr" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"jkH" = ( -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/administration/meeting) -"jkI" = ( -/obj/structure/barricade/concrete, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/underground/caveN) -"jli" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/central_com) -"jlo" = ( -/obj/structure/prop/mainship/protolathe/sci, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"jlG" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"jmi" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_e) -"jmn" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"jmt" = ( -/obj/structure/mine_structure/wooden/support_wall, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/firing_range) -"jnm" = ( -/obj/structure/bed/chair, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"jns" = ( -/obj/structure/desertdam/decals/road/line, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"jnL" = ( -/obj/structure/platform/rockcliff{ - dir = 4 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"jnQ" = ( -/obj/machinery/door/airlock/mainship/security/glass/free_access{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"joe" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_n) -"joo" = ( -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"jos" = ( -/obj/machinery/science/analyser, -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/research_lab) -"jpn" = ( -/turf/open/floor/plating, -/area/rocinante_base/ground/underground/caveW) -"jqh" = ( -/obj/structure/table/black, -/obj/structure/paper_bin, -/obj/item/reagent_containers/food/drinks/coffee, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"jqz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"jqK" = ( -/obj/structure/platform/rockcliff, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"jrs" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"jrX" = ( -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration) -"jss" = ( -/obj/structure/platform/rockcliff{ - dir = 6 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"jsJ" = ( -/obj/machinery/computer/som, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"jsM" = ( -/obj/machinery/power/apc, -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/barracks) -"juc" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/command_sec) -"juk" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/ground/base_nw) -"jul" = ( -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"juM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"juN" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"jvj" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"jxe" = ( -/obj/structure/monorail{ - dir = 6 - }, -/obj/structure/monorail{ - dir = 10 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tram_line) -"jxg" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"jxx" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"jxy" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 1 - }, -/area/rocinante_base/ground/base_cent) -"jyh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"jyU" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/sec_dorms) -"jzb" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"jzg" = ( -/obj/structure/barricade/concrete{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"jAb" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/garage_sec) -"jAo" = ( -/obj/structure/prop/mainship/protolathe, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"jAE" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"jBn" = ( -/obj/structure/table/reinforced, -/obj/structure/paper_bin, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"jBy" = ( -/obj/structure/desertdam/decals/road/stop{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"jBU" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/sterile/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/medical) -"jBV" = ( -/obj/structure/somcas/three{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"jCJ" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"jDc" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/southern_aux) -"jDm" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/purple/corner, -/area/rocinante_base/surface/building/science/tele_lab) -"jDF" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"jEJ" = ( -/obj/structure/table/black, -/obj/machinery/door/window, -/obj/machinery/door/window{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/command_sec) -"jFw" = ( -/obj/structure/largecrate, -/obj/structure/sign/double/map/right, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"jFG" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"jFQ" = ( -/turf/open/floor/mainship/sterile/purple/side{ - dir = 5 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"jFY" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"jHb" = ( -/obj/structure/barricade/metal, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"jHi" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"jHE" = ( -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_cent) -"jHV" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"jIl" = ( -/obj/structure/monorail, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"jIR" = ( -/obj/structure/platform/metalplatform, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"jJk" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"jJO" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"jKg" = ( -/obj/machinery/computer/som{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/central_com) -"jLg" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"jLh" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/command_sec) -"jLt" = ( -/obj/machinery/door/airlock/mainship/security{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"jLC" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/rocinante_base/ground/base_w) -"jLK" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/command_sec) -"jMe" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"jMk" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"jMp" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/ground/base_s) -"jMK" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"jMP" = ( -/obj/structure/prop/mainship/protolathe, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"jNh" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 1 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"jNq" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red/corner, -/area/rocinante_base/surface/building/administration) -"jNA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"jOa" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"jOt" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 10 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"jOC" = ( -/obj/structure/rack, -/obj/item/armor_module/module/eshield, -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/research_lab) -"jOD" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/structure/largecrate/random/barrel/red, -/obj/machinery/light, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/administration/south_com) -"jOP" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/administration/south_com) -"jPn" = ( -/obj/machinery/vending/snack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"jPz" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_s) -"jQv" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"jQw" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/ground/base_sw) -"jQE" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_nw) -"jQG" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/administration) -"jQU" = ( -/obj/structure/urinal, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/south_com) -"jSH" = ( -/obj/structure/platform/rockcliff{ - dir = 9 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"jSL" = ( -/obj/item/ammo_magazine/tank/tank_slauncher, -/obj/structure/rack, -/obj/effect/turf_decal/warning_stripes/box, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"jSP" = ( -/turf/open/floor/mainship/red/corner, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"jTe" = ( -/obj/machinery/telecomms/server, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"jTw" = ( -/obj/machinery/door/airlock/mainship/engineering{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"jTz" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"jTK" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/silver{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/command) -"jUI" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"jUQ" = ( -/obj/structure/table/black, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"jVk" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/platform/metalplatform, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"jVG" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"jWk" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/rocinante_base/ground/base_se) -"jWB" = ( -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/laundromat) -"jWC" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/laundromat) -"jXg" = ( -/obj/structure/platform/rockcliff{ - dir = 1 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"jXn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"jZM" = ( -/obj/structure/cable, -/turf/open/floor/mainship/silver{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/command) -"jZQ" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"kaq" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/administration) -"kau" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"kba" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/hub) -"kcr" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/red/full, -/area/rocinante_base/surface/building/administration) -"kdl" = ( -/obj/structure/cargo_container/red{ - dir = 4 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"kdm" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/security/west_sec) -"kdp" = ( -/obj/structure/flora/tree/pine, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_s) -"keM" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"keY" = ( -/obj/structure/prop/mainship/protolathe, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"kfj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"kfl" = ( -/obj/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"kfE" = ( -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"kgt" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_e) -"kgL" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"khe" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/science/research_lab) -"khm" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/ground/base_cent) -"khs" = ( -/turf/open/floor/plating/ground/ice, -/area/rocinante_base/ground/base_e) -"kju" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/administration) -"kjN" = ( -/obj/machinery/cic_maptable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"kjO" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/living/laundromat) -"kke" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 9 - }, -/area/rocinante_base/surface/building/science/research_lab) -"kki" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"kkD" = ( -/obj/structure/bed/chair{ - desc = "This tiny folding chair looks like a torture device in comparison to the chair next to it."; - dir = 8 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_s) -"kkK" = ( -/obj/structure/table/black, -/obj/machinery/door/window{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 2 - }, -/obj/structure/paper_bin, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/central_com) -"kla" = ( -/obj/structure/bookcase, -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/rocinante_base/surface/building/security/hub) -"kma" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 1 - }, -/area/rocinante_base/ground/base_s) -"kmb" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/multi_tile/mainship/secdoor/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"kmj" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/medical) -"kmr" = ( -/obj/structure/bed/chair/pew{ - dir = 9 - }, -/turf/open/floor/carpet/side, -/area/rocinante_base/surface/building/living/chapel_ne) -"kmt" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/west_aux) -"kmA" = ( -/obj/structure/desertdam/decals/road/stop{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"kmB" = ( -/obj/machinery/door/airlock/multi_tile/mainship/generic/personal, -/obj/structure/cable, -/turf/open/floor/mainship/red/full, -/area/rocinante_base/surface/building/administration) -"kof" = ( -/turf/closed/shuttle/dropship_regular/top_corner{ - dir = 1 - }, -/area/rocinante_base/ground/base_sw) -"kou" = ( -/obj/structure/stairs/seamless, -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_n) -"kow" = ( -/obj/machinery/telecomms/processor, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"kpb" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"kqs" = ( -/obj/structure/urinal, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/science/tele_lab) -"kqz" = ( -/obj/structure/mine_structure/wooden/support_wall/above, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveN) -"kqN" = ( -/obj/machinery/door/airlock/multi_tile/mainship/medidoor, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"kqV" = ( -/obj/structure/cable, -/obj/machinery/light{ - light_color = "#da2f1b" - }, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/security/medical_sec) -"krv" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/comm_post) -"krH" = ( -/obj/structure/largecrate, -/obj/structure/sign/double/map/left, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"kss" = ( -/obj/structure/cargo_container/red, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"ksC" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/prep) -"kti" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"ktm" = ( -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"ktI" = ( -/obj/machinery/computer/emails, -/obj/structure/table/reinforced, -/turf/open/floor/mainship/sterile/purple, -/area/rocinante_base/surface/building/science/research_lab) -"ktR" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"kuH" = ( -/obj/structure/somcas/five{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"kuI" = ( -/obj/structure/largecrate, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"kuM" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/central_com) -"kuY" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"kvo" = ( -/obj/structure/sink{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/tele_lab) -"kvW" = ( -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/security/command_sec) -"kwt" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/comm_post) -"kwA" = ( -/turf/open/floor/mainship/sterile/purple/corner, -/area/rocinante_base/surface/building/science/research_lab) -"kwQ" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"kxI" = ( -/obj/structure/table/black, -/obj/item/armor_module/module/eshield, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"kxR" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/medical_sec) -"kxV" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"kyD" = ( -/obj/structure/window, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"kyK" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 1 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_n) -"kyL" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"kzw" = ( -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"kzF" = ( -/obj/item/tool/crowbar/red, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/crystal_lab) -"kzO" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"kAt" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"kAQ" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"kAS" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/hub) -"kBo" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"kBA" = ( -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"kBM" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/command_hall) -"kCy" = ( -/obj/structure/prop/vehicle/apc{ - dir = 8 - }, -/obj/structure/prop/vehicle/apc/wheelsone{ - dir = 8 - }, -/obj/structure/prop/vehicle/apc/damagedframe{ - dir = 8 - }, -/obj/structure/prop/vehicle/apc/dualcannonone{ - dir = 8 - }, -/obj/structure/prop/vehicle/apc/decoration/frontturretzero{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/ground/base_cent) -"kDl" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"kDD" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_ne) -"kFI" = ( -/obj/structure/sink{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/science/break_room) -"kHb" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"kHc" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/security/garage_sec) -"kHG" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/security/command_sec) -"kIo" = ( -/turf/open/shuttle/escapepod, -/area/rocinante_base/ground/base_w) -"kJr" = ( -/obj/machinery/chem_dispenser/soda{ - density = 0; - dir = 4; - pixel_x = -6 - }, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"kJw" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"kJM" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/janitor) -"kKa" = ( -/obj/structure/table/black, -/obj/machinery/computer/station_alert, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"kKs" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"kKA" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 9 - }, -/area/rocinante_base/ground/base_cent) -"kKB" = ( -/obj/structure/platform/rockcliff{ - dir = 5 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"kKN" = ( -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/command_sec) -"kLc" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/medical) -"kLq" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/north_smes) -"kLQ" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"kLR" = ( -/obj/structure/prop/mainship/gelida/powercconnectorthreeside{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"kLV" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/laundromat) -"kMh" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/breakroom) -"kMR" = ( -/turf/open/floor/mainship/red/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/meeting) -"kNh" = ( -/obj/structure/prop/brokenvendor/surplusclothes, -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"kNr" = ( -/obj/structure/barricade/metal{ - dir = 8 - }, -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_sw) -"kNI" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"kNJ" = ( -/obj/structure/platform/rockcliff{ - dir = 5 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"kNO" = ( -/obj/structure/cargo_container/red{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"kOw" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#5b7857" - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"kPA" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/science/complex_hall_e) -"kPI" = ( -/obj/structure/prop/brokenvendor/brokenweaponsrack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"kPW" = ( -/obj/structure/flora/tree/pine, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_w) -"kQU" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/west_aux) -"kQZ" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/living/laundromat) -"kRm" = ( -/obj/effect/turf_decal/siding/dark, -/turf/open/floor/mainship/som/s, -/area/rocinante_base/surface/building/administration) -"kRn" = ( -/obj/effect/turf_decal/warning_stripes/box, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"kRW" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 10 - }, -/turf/open/floor/mainship/som/se, -/area/rocinante_base/surface/building/security/hub) -"kSA" = ( -/obj/effect/turf_decal/warning_stripes/box, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/prep) -"kSU" = ( -/obj/structure/cargo_container/ch_red{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"kTz" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/po_quarters) -"kTN" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"kTZ" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/turf_decal/warning_stripes/box, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"kVJ" = ( -/obj/structure/largecrate/supply, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"kVV" = ( -/obj/structure/somcas/four{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"kWl" = ( -/obj/structure/filingcabinet, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"kWB" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/prep) -"kWQ" = ( -/obj/machinery/computer3/server/rack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"kXp" = ( -/obj/machinery/door/airlock/glass, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"kXT" = ( -/obj/structure/barricade/guardrail{ - dir = 8 - }, -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tram_line) -"kYd" = ( -/obj/structure/flora/tree/pine, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"kZu" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"kZy" = ( -/obj/structure/cargo_container/ch_red, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"kZR" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"lae" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/silver, -/area/rocinante_base/surface/building/administration/command) -"law" = ( -/turf/open/floor/mainship/silver{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/command) -"laC" = ( -/obj/structure/monorail, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/firing_range) -"laW" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/rocinante_base/ground/base_nw) -"lbj" = ( -/obj/machinery/computer/som_two{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"lbq" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red/corner, -/area/rocinante_base/surface/building/command_hall) -"ldw" = ( -/obj/structure/filingcabinet, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"ldT" = ( -/obj/structure/plasticflaps, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"les" = ( -/turf/open/floor/mainship/sterile/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/medical) -"leB" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/mainship/sterile/corner, -/area/rocinante_base/surface/building/medical) -"lfy" = ( -/obj/structure/prop/vehicle/truck, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/underground/caveN) -"lgo" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/north_aux) -"lgq" = ( -/obj/structure/rack, -/obj/item/cell/high, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/north_smes) -"lgs" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/air_storage) -"lgL" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/meeting) -"lgT" = ( -/obj/structure/ship_ammo/cas/rocket/banshee, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/air_storage) -"lhl" = ( -/obj/effect/attach_point/crew_weapon/minidropship, -/obj/machinery/door/poddoor/mainship/open, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_sw) -"liy" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/mainship/som/ne, -/area/rocinante_base/surface/building/living/barracks) -"liz" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"ljf" = ( -/obj/structure/table/black, -/obj/item/storage/bible, -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"ljr" = ( -/obj/machinery/vending/snack, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/science/break_room) -"ljL" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"ljX" = ( -/obj/machinery/computer3, -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"lkm" = ( -/obj/item/stack/rods, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/west_barracks) -"lkI" = ( -/obj/structure/toilet/alternate{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/ground/base_cent) -"llf" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/bio_lab) -"llk" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"llK" = ( -/obj/machinery/computer/intel_computer, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"lmg" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/cable, -/obj/machinery/power/apc, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/silver{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/command) -"lmr" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/science/break_room) -"lnx" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/complex_hall_e) -"lod" = ( -/obj/machinery/door/poddoor/mainship/open, -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/surface/building/cargo/southern_aux) -"loj" = ( -/obj/structure/girder, -/turf/open/floor/plating/dmg3, -/area/rocinante_base/ground/base_w) -"lok" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"loC" = ( -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveW) -"loG" = ( -/obj/machinery/door/airlock/multi_tile/mainship/comdoor/free_access, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"loQ" = ( -/obj/machinery/door/airlock/multi_tile/mainship, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"loW" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/rocinante_base/surface/building/administration) -"lpj" = ( -/obj/item/tool/crowbar/red, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"lpA" = ( -/obj/machinery/vending/cola, -/obj/machinery/light, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"lpJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"lpQ" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"lqf" = ( -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"lql" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/central_com) -"lqt" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"lqx" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"lrv" = ( -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"lsc" = ( -/obj/structure/cargo_container/red, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"lsn" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/medical) -"lsQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/meeting) -"ltb" = ( -/obj/structure/cable, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"ltc" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"ltC" = ( -/turf/open/floor/plating/dmg2, -/area/rocinante_base/ground/base_nw) -"ltW" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"luo" = ( -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/tele_lab) -"luu" = ( -/turf/closed/mineral/smooth/indestructible, -/area/rocinante_base/ground/base_e) -"luA" = ( -/obj/machinery/door/poddoor/mainship/open, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/cargo/air_storage) -"luQ" = ( -/obj/structure/table/black, -/obj/item/cell/high, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"lvn" = ( -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/underground/caveN) -"lwe" = ( -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/living/barracks) -"lwr" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/turf/open/floor/mainship/red/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/barracks) -"lwA" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"lwN" = ( -/obj/machinery/vending/marineFood, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/living/barracks) -"lwT" = ( -/obj/machinery/computer/telecomms/server, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"lwW" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/administration/central_com) -"lwZ" = ( -/obj/structure/prop/mainship/mapping_computer, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"lxj" = ( -/obj/structure/cargo_container/green{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"lxw" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"lyi" = ( -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"lyX" = ( -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration) -"lzw" = ( -/obj/structure/somcas/three{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"lzN" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"lAd" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"lBo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"lBJ" = ( -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/rocinante_base/surface/building/living/prep) -"lBS" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/laundromat) -"lCa" = ( -/obj/structure/prop/mainship/protolathe, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"lCC" = ( -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/prep) -"lCR" = ( -/obj/structure/monorail{ - dir = 10 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tram_line) -"lCY" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_sw) -"lDI" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/administration) -"lDZ" = ( -/obj/structure/prop/vehicle/crawler/destructible, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"lEz" = ( -/obj/structure/table/black, -/obj/item/clipboard, -/obj/item/reagent_containers/food/drinks/coffee, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"lER" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"lFa" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/obj/structure/window/reinforced, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"lFS" = ( -/obj/structure/cargo_container/horizontal{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"lFY" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"lGm" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"lGT" = ( -/obj/structure/closet, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"lHs" = ( -/obj/machinery/computer/som, -/turf/open/floor/mainship/tcomms, -/area/rocinante_base/surface/building/security/medical_sec) -"lHw" = ( -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/research_lab) -"lHU" = ( -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"lJp" = ( -/obj/structure/prop/brokenvendor/surplusclothes, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"lJq" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"lJS" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"lJV" = ( -/turf/closed/mineral/smooth/indestructible, -/area/rocinante_base/ground/underground/caveS) -"lKh" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/black/corner, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"lKk" = ( -/turf/closed/mineral/smooth/snowrock, -/area/rocinante_base/ground/base_s) -"lKH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/breakroom) -"lKM" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/north_aux) -"lLm" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/security/medical_sec) -"lLW" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 6 - }, -/turf/open/floor/mainship/som/sw, -/area/rocinante_base/surface/building/science/tele_lab) -"lMS" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration) -"lNk" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 10 - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_n) -"lNl" = ( -/obj/machinery/disposal, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"lPw" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/command_hall) -"lPG" = ( -/obj/structure/closet/radiation, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"lPU" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/rocinante_base/surface/building/cargo/southern_aux) -"lPY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/silver/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/command) -"lQc" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_nw) -"lQO" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"lRa" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/command_sec) -"lRt" = ( -/turf/closed/mineral/smooth/indestructible, -/area/rocinante_base/ground/underground/caveE) -"lRF" = ( -/obj/structure/prop/mainship/gelida/smallwire{ - dir = 8 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"lSf" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/machinery/elevator_strut/bottom, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"lSv" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/ground/base_w) -"lTm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"lTr" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/security/hub) -"lTH" = ( -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/command) -"lTM" = ( -/obj/structure/toilet/alternate{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/command) -"lTN" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_n) -"lUF" = ( -/obj/structure/prop/brokenvendor/surplusclothes, -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"lVZ" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_e) -"lWF" = ( -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"lWT" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"lXe" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"lXh" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/obj/structure/platform/metalplatform{ - dir = 4 - }, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"lYf" = ( -/turf/closed/mineral/smooth{ - color = "#c2e4ff" - }, -/area/rocinante_base/surface/building/train_station) -"lYg" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_cent) -"lYi" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/firing_range) -"lYk" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/rocinante_base/ground/base_w) -"lYu" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 9 - }, -/turf/open/floor/mainship/som/ne, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"lYD" = ( -/obj/structure/bed/chair/pew{ - dir = 10 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"lYQ" = ( -/obj/structure/platform/rockcliff{ - dir = 8 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"lZB" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/administration/command) -"mbq" = ( -/obj/structure/bed/chair/alt, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/laundromat) -"mbv" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/crystal_lab) -"mbV" = ( -/obj/machinery/vending/snack, -/obj/machinery/light, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"mcg" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"mcI" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"mdF" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/breakroom) -"mdV" = ( -/obj/structure/bed/chair{ - desc = "This tiny folding chair looks like a torture device in comparison to the chair next to it."; - dir = 1 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_s) -"mft" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"mgy" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 4 - }, -/area/rocinante_base/surface/landing/landing_pad_one) -"mgM" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"mhb" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"mhL" = ( -/obj/structure/largecrate/cow, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"mhM" = ( -/obj/structure/flora/tree/pine, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_nw) -"mhR" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"mih" = ( -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"mij" = ( -/obj/structure/bed/chair/alt, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"miJ" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_n) -"miY" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"mjb" = ( -/obj/item/weapon/gun/energy/lasgun/lasrifle/volkite/cope/predeployed, -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveN) -"mjz" = ( -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/lz_control) -"mjE" = ( -/obj/item/stack/rods, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/living/west_barracks) -"mjN" = ( -/obj/structure/rack, -/obj/item/stack/sheet/metal, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"mkf" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"mkm" = ( -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"mkV" = ( -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/ground/base_cent) -"mld" = ( -/obj/machinery/prop/autolathe, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/command_hall) -"mle" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 8 - }, -/turf/open/floor/mainship/red/full, -/area/rocinante_base/surface/building/administration) -"mlE" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 9 - }, -/area/rocinante_base/ground/base_s) -"mmx" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/ground/base_w) -"mmW" = ( -/obj/structure/table/black, -/obj/machinery/computer/camera, -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/rocinante_base/surface/building/administration/central_com) -"mnG" = ( -/turf/open/floor/plating/ground/concrete/edge, -/area/rocinante_base/surface/building/cargo/southern_aux) -"mnU" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/science/complex_hall_e) -"mnW" = ( -/obj/machinery/door/poddoor/mainship/indestructible, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"moo" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_ne) -"mpq" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/barracks) -"mpB" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/obj/structure/platform/metalplatform{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"mpF" = ( -/obj/structure/prop/mainship/protolathe, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/silver{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/command) -"mqh" = ( -/obj/structure/cargo_container/hd_blue{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"mqH" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/bio_lab) -"mqU" = ( -/obj/item/weapon/gun/energy/lasgun/lasrifle/volkite/cope/predeployed, -/obj/structure/barricade/concrete, -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"mru" = ( -/obj/machinery/door/airlock/multi_tile/mainship/marine{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/prep) -"mrW" = ( -/obj/effect/turf_decal/medical_decals/cryo/cell, -/turf/open/floor/mainship/sterile/side{ - dir = 9 - }, -/area/rocinante_base/surface/building/medical) -"msb" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"msn" = ( -/obj/structure/monorail{ - dir = 6 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"msq" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/rocinante_base/ground/base_nw) -"msr" = ( -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/air_storage) -"muh" = ( -/obj/structure/prop/mainship/protolathe, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"mut" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"muD" = ( -/obj/machinery/power/apc{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/lz_control) -"muY" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/medical_sec) -"mwb" = ( -/turf/open/floor/mainship/blue/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/hub) -"mxh" = ( -/obj/structure/prop/mainship/gelida/rails, -/obj/structure/prop/mainship/gelida/rails{ - dir = 9 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_w) -"mxD" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"mxP" = ( -/obj/machinery/photocopier, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"mzL" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/door/window, -/obj/structure/window/reinforced, -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"mAb" = ( -/turf/closed/mineral/smooth{ - color = "#c2e4ff" - }, -/area/rocinante_base/ground/underground/caveS) -"mAt" = ( -/turf/closed/mineral/smooth/snowrock, -/area/rocinante_base/ground/base_cent) -"mAx" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/south_smes) -"mAE" = ( -/obj/structure/sink/bathroom{ - dir = 4 - }, -/obj/structure/mirror{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/breakroom) -"mBh" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/central_com) -"mBz" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 1 - }, -/turf/open/floor/mainship/som, -/area/rocinante_base/surface/building/science/tele_lab) -"mBN" = ( -/obj/structure/largecrate, -/obj/effect/turf_decal/warning_stripes/box, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"mCq" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"mCy" = ( -/obj/structure/prop/brokenvendor/brokenweaponsrack, -/turf/open/floor/mainship/black{ - dir = 6 - }, -/area/rocinante_base/surface/building/living/prep) -"mCC" = ( -/obj/machinery/computer/som, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"mCO" = ( -/obj/structure/rack, -/obj/machinery/newscaster, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"mDb" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"mDh" = ( -/obj/structure/urinal, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"mDn" = ( -/obj/structure/sink/bathroom{ - dir = 8 - }, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/barracks) -"mDN" = ( -/obj/machinery/door/airlock/multi_tile/mainship/secdoor/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"mDZ" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/medical_sec) -"mEe" = ( -/obj/structure/flora/tree/pine, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_sw) -"mEq" = ( -/obj/structure/table/black, -/obj/machinery/computer/security/wooden_tv, -/obj/structure/platform/metalplatform{ - dir = 9 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"mFk" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"mGp" = ( -/obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"mGz" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/command_sec) -"mGA" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 10 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_e) -"mHy" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#5b7857" - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_e) -"mHB" = ( -/obj/item/weapon/gun/energy/lasgun/lasrifle/volkite/cope/predeployed, -/obj/structure/barricade/concrete{ - dir = 1 - }, -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"mHO" = ( -/obj/structure/platform/rockcliff{ - dir = 10 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"mHW" = ( -/obj/structure/cargo_container/hd_blue{ - dir = 1 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveN) -"mIs" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/comm_post) -"mII" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating, -/area/rocinante_base/surface/building/southern_construction) -"mIY" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"mJy" = ( -/turf/open/floor/mainship/black/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/prep) -"mJR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/security/medical_sec) -"mLr" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"mMf" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/command_hall) -"mMD" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"mMU" = ( -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/security/medical_sec) -"mNa" = ( -/obj/structure/rock/variable/stalagmite, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveW) -"mQN" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/sterile/purple/corner, -/area/rocinante_base/surface/building/science/research_lab) -"mQQ" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/dmg3, -/area/rocinante_base/surface/building/living/west_barracks) -"mSK" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/lz_control) -"mSU" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"mTc" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration) -"mTe" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"mTp" = ( -/obj/structure/platform/rockcliff, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"mTx" = ( -/turf/closed/mineral/smooth{ - color = "#c2e4ff" - }, -/area/rocinante_base/ground/underground/caveN) -"mTC" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"mTJ" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"mTP" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/hub) -"mUl" = ( -/obj/machinery/door/airlock/mainship/security{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/sec_dorms) -"mUp" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/command_hall) -"mUB" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"mUQ" = ( -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"mVd" = ( -/obj/structure/table/reinforced, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/crystal_lab) -"mVw" = ( -/obj/structure/roci_sign, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"mWp" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_e) -"mWw" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"mWC" = ( -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_cent) -"mWE" = ( -/turf/closed/shuttle/escapepod, -/area/rocinante_base/ground/base_w) -"mXl" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"mYm" = ( -/obj/structure/prop/vehicle/van, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"mYO" = ( -/obj/structure/prop/mainship/mission_planning_system, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/hub) -"mZL" = ( -/obj/structure/prop/vehicle/crawler/crawler_red, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_cent) -"nae" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 6 - }, -/turf/open/floor/mainship/som/sw, -/area/rocinante_base/surface/building/security/hub) -"naf" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"nau" = ( -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"naR" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"nce" = ( -/obj/machinery/chem_dispenser/beer{ - density = 0; - dir = 8; - pixel_x = 6 - }, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"ncq" = ( -/obj/machinery/computer/som_two{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"ncz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"ncL" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"ncP" = ( -/obj/structure/table/black, -/obj/machinery/computer3/laptop, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"ndg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 9 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"ndY" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/west_barracks) -"neq" = ( -/obj/machinery/door/poddoor/mainship/open, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"nez" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"nfa" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/living/chapel_ne) -"nfw" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"nfZ" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration) -"ngc" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/medical_sec) -"ngt" = ( -/obj/structure/table/reinforced, -/obj/structure/sink{ - dir = 8 - }, -/obj/item/paper, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"nhq" = ( -/obj/structure/prop/mainship/protolathe/sci, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"nhu" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/rocinante_base/ground/base_cent) -"nhw" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"nhy" = ( -/obj/vehicle/train/cargo/engine{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"nhM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"nhZ" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"nix" = ( -/obj/machinery/door/airlock/mainship/security{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/central_com) -"niB" = ( -/obj/structure/sink/bathroom{ - dir = 4 - }, -/obj/structure/mirror{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/command) -"niF" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"niI" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 9 - }, -/area/rocinante_base/surface/landing/landing_pad_one) -"niL" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"niN" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857" - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"niO" = ( -/turf/open/floor/mainship/black/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/prep) -"niV" = ( -/obj/machinery/power/apc{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/west_barracks) -"njT" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"nks" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_ne) -"nku" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/break_room) -"nky" = ( -/turf/open/floor/wood, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"nkU" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/warning_stripes/box, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"nlf" = ( -/obj/structure/sink{ - dir = 1 - }, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/science/break_room) -"nlv" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/rocinante_base/surface/landing/landing_pad_two) -"nlB" = ( -/obj/item/storage/toolbox/electrical, -/obj/structure/prop/mainship/gelida/powerccable, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"nlE" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/medical_sec) -"nlV" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/train_station) -"nlZ" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"nmv" = ( -/obj/structure/flora/tree/dead, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_sw) -"nmJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/barracks) -"nmT" = ( -/obj/machinery/door/airlock/multi_tile/mainship/marine{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"noe" = ( -/obj/machinery/prop/computer/tadpole, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_sw) -"non" = ( -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"noy" = ( -/turf/open/floor/mainship/sterile/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/medical) -"noR" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"noU" = ( -/obj/machinery/power/apc{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"npy" = ( -/obj/structure/prop/tgbrokenvendor/chemdrobe, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"npJ" = ( -/obj/machinery/computer/som_two{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"nqr" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"nqE" = ( -/obj/machinery/door/airlock/mainship/marine{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"nqO" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/black{ - dir = 6 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"nqX" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/ground/base_se) -"nqZ" = ( -/obj/structure/fence, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_e) -"nrA" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/rocinante_base/ground/base_s) -"nrB" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_s) -"nsh" = ( -/obj/structure/platform/rockcliff{ - dir = 6 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"nsw" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"nsK" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"nuc" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"nuu" = ( -/obj/structure/monorail, -/obj/structure/bed/chair/alt{ - dir = 8 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/firing_range) -"nuK" = ( -/turf/open/floor/mainship/red/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/command_hall) -"nuL" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"nvJ" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/hub) -"nwe" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"nxf" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_e) -"nxg" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_sw) -"nxi" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/living/barracks) -"nxo" = ( -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/cargo/air_storage) -"nxN" = ( -/obj/machinery/light, -/turf/open/floor/mainship/black{ - dir = 6 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"nxO" = ( -/obj/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"nyq" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/command_hall) -"nyG" = ( -/obj/machinery/computer/som, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"nzc" = ( -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_w) -"nzn" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration/central_com) -"nzS" = ( -/obj/structure/table/black, -/obj/item/tool/kitchen/tray, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/break_room) -"nAp" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/rocinante_base/ground/base_cent) -"nBb" = ( -/obj/structure/barricade/concrete, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveN) -"nDM" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_w) -"nDX" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/command_sec) -"nDZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"nEm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"nEW" = ( -/turf/closed/mineral/smooth{ - color = "#c2e4ff" - }, -/area/rocinante_base/ground/underground/caveE) -"nFu" = ( -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"nFv" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/rocinante_base/ground/base_cent) -"nFx" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/administration/south_com) -"nGe" = ( -/obj/machinery/light, -/turf/open/floor/mainship/black{ - dir = 6 - }, -/area/rocinante_base/surface/building/cargo/air_storage) -"nGm" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/comm_post) -"nGw" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"nGB" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"nGZ" = ( -/obj/structure/prop/mainship/research/destructive_analyzer, -/turf/open/floor/mainship/sterile/purple/corner, -/area/rocinante_base/surface/building/science/crystal_lab) -"nHp" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"nHA" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/administration/south_com) -"nHG" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 6 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/bio_lab) -"nHU" = ( -/obj/effect/landmark/corpsespawner/som, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"nIl" = ( -/obj/structure/monorail, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tram_line) -"nIx" = ( -/obj/effect/turf_decal/warning_stripes, -/obj/structure/hoop{ - dir = 4 - }, -/turf/open/floor/wood, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"nID" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/rocinante_base/surface/building/living/prep) -"nJq" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"nKu" = ( -/obj/structure/window/reinforced, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"nKE" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#5b7857" - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"nLo" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/administration/central_com) -"nLq" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/living/barracks) -"nLu" = ( -/obj/structure/table/black, -/obj/item/weapon/gun/rifle/mpi_km/grenadier, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/prep) -"nLG" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"nMX" = ( -/obj/machinery/shower, -/obj/structure/curtain/open/shower, -/obj/machinery/door/window{ - dir = 2 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/west_barracks) -"nNn" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/rocinante_base/ground/base_s) -"nOp" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"nOt" = ( -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"nOC" = ( -/obj/effect/turf_decal/warning_stripes/box, -/turf/open/floor/mainship/black/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/prep) -"nPp" = ( -/obj/machinery/light, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration/south_com) -"nPL" = ( -/obj/structure/platform/metalplatform, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_e) -"nQG" = ( -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"nQL" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration/central_com) -"nRL" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/office_n) -"nSk" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"nSl" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/obj/structure/platform/metalplatform, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"nSK" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"nTp" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"nUa" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_w) -"nUh" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/engineering) -"nUB" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/obj/structure/platform/metalplatform, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"nUK" = ( -/obj/structure/prop/mainship/sensor_computer2, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"nUP" = ( -/turf/open/floor/mainship/silver, -/area/rocinante_base/surface/building/administration/command) -"nVG" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"nWd" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"nWy" = ( -/obj/structure/table/black, -/obj/machinery/computer3/laptop, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/south_smes) -"nXn" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/rocinante_base/ground/base_cent) -"nXP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"nYK" = ( -/obj/machinery/computer3/server/rack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"nYO" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/meeting) -"nYR" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"nZx" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/hub) -"nZQ" = ( -/turf/closed/mineral/smooth/indestructible, -/area/rocinante_base/ground/base_sw) -"oai" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/medical_sec) -"oaZ" = ( -/obj/effect/turf_decal/siding/dark, -/turf/open/floor/mainship/som/s, -/area/rocinante_base/surface/building/security/hub) -"obg" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"obh" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/obj/structure/platform/metalplatform, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"obl" = ( -/obj/structure/ship_ammo/cas/heavygun, -/obj/machinery/light, -/turf/open/floor/mainship/black{ - dir = 6 - }, -/area/rocinante_base/surface/building/cargo/air_storage) -"obz" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"obN" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/chapel_ne) -"obW" = ( -/obj/effect/turf_decal/warning_stripes/box, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/living/prep) -"ocg" = ( -/obj/machinery/door/window, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"ocs" = ( -/obj/structure/sink/bathroom{ - dir = 4 - }, -/obj/structure/mirror{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/security/medical_sec) -"ocI" = ( -/obj/structure/device/broken_piano, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"ocR" = ( -/obj/structure/bed/chair/alt, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/rocinante_base/surface/building/living/prep) -"odt" = ( -/obj/structure/closet/cabinet, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/hub) -"odz" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/obj/structure/window, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/purple/corner, -/area/rocinante_base/surface/building/science/tele_lab) -"odQ" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_w) -"oeb" = ( -/obj/structure/prop/mainship/gelida/lightstick, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_cent) -"oec" = ( -/obj/effect/landmark/corpsespawner/engineer/rig, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"oew" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"oeJ" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/south_smes) -"oeQ" = ( -/obj/structure/barricade/concrete, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/firing_range) -"ofj" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_n) -"oft" = ( -/obj/structure/platform/metalplatform{ - dir = 10 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"ogd" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/prep) -"ogs" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"ogJ" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/administration/south_com) -"ohs" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/meeting) -"ohX" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"oic" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_ne) -"oiP" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_ne) -"ojS" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/spray/surgery{ - pixel_x = 12; - pixel_y = 2 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/mainship/sterile/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/medical) -"okq" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/living/prep) -"oky" = ( -/turf/open/floor/plating/dmg3, -/area/rocinante_base/surface/building/southern_construction) -"olo" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/obj/machinery/light, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/administration) -"olr" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"olM" = ( -/obj/machinery/computer/telecomms/monitor, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"olN" = ( -/obj/structure/table/black, -/obj/machinery/computer3/server, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"olZ" = ( -/obj/structure/platform/metalplatform, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"onm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/break_room) -"onu" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/ground/base_s) -"onW" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/ground/base_nw) -"ool" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/platform/metalplatform{ - dir = 4 - }, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"ooq" = ( -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/south_com) -"oor" = ( -/obj/machinery/computer/som, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"ooO" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"ooS" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/surface/building/train_station) -"oph" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/som_two{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"opq" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"opG" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/ground/base_sw) -"oqF" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#5b7857" - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_n) -"oqT" = ( -/obj/structure/prop/vehicle/crane{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"orm" = ( -/obj/structure/toilet/alternate{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/south_com) -"orH" = ( -/obj/structure/table/black, -/obj/machinery/computer3/laptop, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"orO" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"orZ" = ( -/obj/machinery/cic_maptable, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/hub) -"osg" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/hub) -"osx" = ( -/obj/machinery/door/airlock/multi_tile/mainship/secdoor/glass{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"osC" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 9 - }, -/turf/open/floor/mainship/som/ne, -/area/rocinante_base/surface/building/administration) -"osQ" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/crystal_lab) -"osS" = ( -/obj/structure/reagent_dispensers/fueltank/barrel, -/obj/machinery/light{ - light_color = "#da2f1b" - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"otj" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/rocinante_base/ground/base_se) -"otn" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/ground/base_cent) -"otz" = ( -/obj/structure/prop/mainship/research/mechafab, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"otB" = ( -/obj/structure/cargo_container/horizontal, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_ne) -"otK" = ( -/obj/effect/landmark/corpsespawner/som, -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/ground/base_cent) -"otN" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"otZ" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/obj/structure/window/reinforced, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/hub) -"ouN" = ( -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"ouP" = ( -/obj/structure/flora/tree/pine, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_e) -"ovw" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/break_room) -"ovE" = ( -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"ovQ" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/research_lab) -"owq" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_cent) -"owB" = ( -/obj/structure/barricade/concrete{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"owO" = ( -/obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/research_lab) -"oxa" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 9 - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_n) -"oxL" = ( -/obj/structure/barricade/metal{ - dir = 1 - }, -/obj/item/weapon/gun/energy/lasgun/lasrifle/volkite/cope/predeployed, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_sw) -"oyc" = ( -/obj/effect/turf_decal/tile/corsatstraight/gray, -/obj/structure/table/black, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/lz_control) -"oyk" = ( -/obj/structure/prop/mainship/research/destructive_analyzer, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"oyq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"oyX" = ( -/obj/structure/monorail, -/obj/machinery/door/poddoor/mainship/indestructible{ - dir = 2 - }, -/turf/closed/wall/indestructible, -/area/rocinante_base/surface/building/tram_line) -"ozc" = ( -/obj/structure/prop/brokenvendor/surplusclothes, -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"ozw" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/command_hall) -"ozD" = ( -/obj/structure/flora/tree/dead, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_e) -"ozY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"oAv" = ( -/obj/structure/cryofeed, -/turf/open/liquid/water/river, -/area/rocinante_base/surface/building/engineering) -"oBv" = ( -/obj/structure/cable, -/obj/structure/platform/metalplatform, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"oBH" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/door/window{ - dir = 8 - }, -/obj/structure/curtain/open/shower, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/science/tele_lab) -"oCe" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"oCm" = ( -/obj/structure/cable, -/turf/open/floor/mainship/cargo/arrow{ - dir = 8 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"oCK" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/rocinante_base/ground/base_se) -"oDj" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/break_room) -"oFk" = ( -/obj/structure/stairs/seamless{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"oFF" = ( -/turf/open/floor/plating/dmg2, -/area/rocinante_base/surface/building/southern_construction) -"oFT" = ( -/obj/structure/cable, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"oGh" = ( -/obj/machinery/bodyscanner, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"oGj" = ( -/obj/structure/prop/mainship/protolathe/engi, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"oGu" = ( -/obj/structure/prop/mainship/protolathe/sci, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"oGY" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"oHg" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"oHH" = ( -/obj/structure/rack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"oHO" = ( -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"oIh" = ( -/obj/structure/prop/brokenvendor/brokenweaponsrack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"oIi" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/prep) -"oIl" = ( -/obj/machinery/vending/boozeomat{ - density = 0; - pixel_y = 19; - wrenchable = 0 - }, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"oIz" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/research_lab) -"oJh" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/administration) -"oJs" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/rocinante_base/surface/building/security/command_sec) -"oJE" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"oJX" = ( -/obj/structure/rack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"oKt" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/lz_control) -"oLu" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/prep) -"oLU" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"oMo" = ( -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/barracks) -"oNg" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/ground/base_s) -"oNh" = ( -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/barracks) -"oNw" = ( -/obj/structure/cargo_container/hd{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"oNy" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 4 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"oOb" = ( -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_w) -"oOh" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"oOA" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/west_barracks) -"oOH" = ( -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"oPp" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/rocinante_base/surface/building/security/hub) -"oPY" = ( -/obj/structure/prop/vehicle/crane/cranecargo, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"oQK" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"oRb" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"oRp" = ( -/turf/closed/mineral/smooth{ - color = "#c2e4ff" - }, -/area/rocinante_base/ground/underground/caveW) -"oRu" = ( -/obj/structure/prop/mainship/research/mechafab, -/obj/structure/platform/metalplatform{ - dir = 5 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/crystal_lab) -"oRF" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/ground/base_cent) -"oRU" = ( -/obj/effect/turf_decal/tile/corsatstraight/gray, -/obj/structure/prop/mainship/gelida/propserveralt, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/lz_control) -"oTh" = ( -/obj/structure/powerloader_wreckage, -/obj/structure/somcas/seven, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"oUd" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#5b7857" - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"oUr" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"oUJ" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/administration/command) -"oUK" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"oUS" = ( -/obj/machinery/cic_maptable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"oVs" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/cargo/southern_aux) -"oVQ" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 9 - }, -/turf/open/floor/mainship/som/ne, -/area/rocinante_base/surface/building/science/tele_lab) -"oVZ" = ( -/obj/machinery/computer/som_two, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/administration/central_com) -"oWx" = ( -/obj/structure/prop/mainship/sensor_computer3, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"oWD" = ( -/turf/closed/mineral/smooth/snowrock, -/area/rocinante_base/ground/base_sw) -"oWO" = ( -/obj/structure/table/black, -/obj/machinery/computer/security, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"oWS" = ( -/obj/structure/closet/fireaxecabinet, -/turf/closed/shuttle/escapeshuttle, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"oYm" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/south_smes) -"oYv" = ( -/obj/effect/turf_decal/warning_stripes/engineer, -/obj/structure/cable, -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/rocinante_base/surface/building/living/prep) -"oYx" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/ground/base_s) -"oZy" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"oZB" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/ground/firing_range) -"oZS" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/security/garage_sec) -"paS" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/north_aux) -"paZ" = ( -/obj/item/stack/sheet/animalhide/monkey, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/bio_lab) -"pbb" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"pbc" = ( -/obj/machinery/computer/som, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/central_com) -"pbs" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/command_sec) -"pci" = ( -/obj/effect/turf_decal/warning_stripes/linethick{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes, -/obj/structure/hoop{ - dir = 8 - }, -/turf/open/floor/wood, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"pcp" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/som_two, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/medical_sec) -"pdR" = ( -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"peO" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"pfz" = ( -/obj/machinery/newscaster, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"pfA" = ( -/obj/effect/turf_decal/warning_stripes/box/arrow{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/rocinante_base/ground/base_se) -"pfZ" = ( -/obj/structure/table/black, -/obj/structure/platform/metalplatform{ - dir = 6 - }, -/turf/open/floor/mainship/black{ - dir = 6 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"pgf" = ( -/obj/structure/prop/vehicle/van{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"pgj" = ( -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/administration/central_com) -"pgp" = ( -/obj/structure/prop/mainship/protolathe, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/central_com) -"phj" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/rocinante_base/ground/base_w) -"phC" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"phI" = ( -/obj/structure/platform/rockcliff{ - dir = 8 - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_w) -"phK" = ( -/obj/structure/table/black, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"phV" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/cargo/arrow{ - dir = 4 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"phX" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 6 - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_e) -"piQ" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/rocinante_base/surface/landing/landing_pad_one) -"pjg" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/obj/structure/platform/metalplatform, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_e) -"pjo" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/train_station) -"pjz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/hub) -"pjL" = ( -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_ne) -"pjR" = ( -/turf/closed/mineral/smooth/snowrock, -/area/rocinante_base/ground/base_nw) -"pkV" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"plo" = ( -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"plp" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_n) -"pmu" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/prep) -"pmJ" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"pmN" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 6 - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_n) -"pnB" = ( -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"poE" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"poT" = ( -/obj/structure/table/black, -/obj/item/clipboard, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"ppZ" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/north_aux) -"pra" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"prx" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"prD" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/ground/base_w) -"prT" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/effect/turf_decal/warning_stripes/linethick{ - dir = 4 - }, -/turf/open/floor/wood, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"pso" = ( -/obj/machinery/power/apc, -/obj/structure/cable, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/prep) -"psv" = ( -/obj/machinery/light, -/turf/open/floor/mainship/silver, -/area/rocinante_base/surface/building/administration/command) -"psI" = ( -/obj/structure/table/black, -/obj/machinery/computer/camera, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/command_sec) -"ptA" = ( -/obj/structure/prop/vehicle/truck, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"puB" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/rocinante_base/surface/building/train_station) -"pvG" = ( -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_s) -"pvI" = ( -/obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/research_lab) -"pvT" = ( -/turf/open/floor/mainship/black/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"pwA" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/train_station) -"pwJ" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/rocinante_base/ground/base_nw) -"pwO" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tram_line) -"pxf" = ( -/obj/machinery/light, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"pxJ" = ( -/obj/machinery/vending/marineFood, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/barracks) -"pxO" = ( -/obj/structure/table/black, -/obj/machinery/door/window{ - dir = 8 - }, -/obj/machinery/door/window, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"pyy" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration) -"pzK" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"pzS" = ( -/obj/structure/bed/chair/alt, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"pAt" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/medical) -"pAD" = ( -/obj/effect/landmark/corpsespawner/som, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"pBb" = ( -/obj/effect/attach_point/electronics/dropship1, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_two) -"pBj" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"pBQ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/train_station) -"pBR" = ( -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"pBX" = ( -/turf/open/floor/mainship/black/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/air_storage) -"pCj" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/ground/base_w) -"pCS" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 4 - }, -/area/rocinante_base/surface/landing/landing_pad_two) -"pCU" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"pDa" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/surface/building/train_station) -"pDG" = ( -/obj/structure/platform/metalplatform{ - dir = 10 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"pDK" = ( -/obj/structure/toilet/alternate{ - dir = 4 - }, -/obj/machinery/door/window, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/west_barracks) -"pDX" = ( -/obj/machinery/door/airlock/mainship/marine{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"pEb" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/ground/base_s) -"pEc" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"pEd" = ( -/obj/machinery/light, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"pEm" = ( -/turf/closed/mineral/smooth{ - color = "#c2e4ff" - }, -/area/rocinante_base/ground/base_s) -"pEE" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/rocinante_base/ground/base_cent) -"pEP" = ( -/obj/machinery/power/monitor, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"pGo" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"pGR" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 1 - }, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/surface/building/science/bio_lab) -"pHg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"pJe" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/surface/building/cargo/southern_aux) -"pJB" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"pJG" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/effect/forcefield{ - desc = "You can't get in. Heh."; - name = "Blocker" - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveE) -"pJV" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/medical) -"pJY" = ( -/obj/machinery/door/airlock/multi_tile/mainship/medidoor{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"pLo" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"pLH" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/break_room) -"pMG" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#5b7857" - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_cent) -"pMS" = ( -/obj/structure/platform/metalplatform, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"pNc" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/north_aux) -"pNp" = ( -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/living/prep) -"pNr" = ( -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"pNu" = ( -/obj/structure/table/black, -/obj/machinery/computer/security, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"pOj" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"pOl" = ( -/turf/open/floor/mainship/silver{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/command) -"pPb" = ( -/obj/machinery/vending/cola, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"pPj" = ( -/obj/structure/flora/tree/dead, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_n) -"pPz" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/red/full, -/area/rocinante_base/surface/building/administration) -"pPS" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/administration) -"pQc" = ( -/obj/structure/bed/chair/pew{ - dir = 6 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"pQj" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/rocinante_base/ground/base_nw) -"pRA" = ( -/obj/machinery/computer/som_two{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"pRD" = ( -/obj/structure/bed/chair/alt{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/command_sec) -"pRU" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/administration/meeting) -"pRX" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/comm_post) -"pTu" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/barracks) -"pTH" = ( -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/hub) -"pTY" = ( -/obj/machinery/computer/som_two, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"pUO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"pUV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/tele_lab) -"pVb" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_ne) -"pVz" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 5 - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_e) -"pVU" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 8 - }, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"pWd" = ( -/turf/open/floor/mainship/red/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/barracks) -"pWD" = ( -/obj/structure/table/black, -/obj/item/phone, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"pWP" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/ground/base_nw) -"pWY" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"pXu" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 1 - }, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"pXD" = ( -/obj/structure/platform/metalplatform{ - dir = 10 - }, -/obj/item/weapon/gun/energy/lasgun/lasrifle/volkite/cope/predeployed, -/obj/structure/barricade/concrete{ - dir = 8 - }, -/obj/structure/barricade/concrete, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"pZY" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"qaS" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"qbj" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"qbP" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"qci" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer3/server, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"qcQ" = ( -/obj/structure/table/black, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"qcX" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/prep) -"qds" = ( -/obj/structure/cable, -/turf/open/floor/mainship/silver, -/area/rocinante_base/surface/building/administration/command) -"qec" = ( -/obj/structure/prop/vehicle/truck/truckcargo{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"qev" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/laundromat) -"qeM" = ( -/obj/structure/prop/mainship/gelida/lightstick, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 6 - }, -/area/rocinante_base/ground/base_w) -"qeT" = ( -/obj/machinery/door/airlock/mainship/marine, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/prep) -"qfk" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/structure/prop/train/empty, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"qfy" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"qfK" = ( -/obj/machinery/computer3/server/rack, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"qgf" = ( -/obj/structure/window/reinforced, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"qgo" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/command_hall) -"qgX" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/medical) -"qib" = ( -/obj/structure/barricade/concrete, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"qjd" = ( -/obj/effect/turf_decal/warning_stripes/linethick{ - dir = 4 - }, -/turf/open/floor/wood, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"qjk" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"qjA" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"qjE" = ( -/obj/effect/turf_decal/warning_stripes/box, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/living/prep) -"qjG" = ( -/obj/structure/toilet/alternate{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/meeting) -"qjL" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/break_room) -"qkd" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/som_two, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/hub) -"qkw" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"qkG" = ( -/obj/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/icefloor/warnplate{ - dir = 8 - }, -/area/rocinante_base/surface/landing/landing_pad_two) -"qlr" = ( -/obj/structure/table/reinforced, -/obj/structure/sink{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/purple/corner, -/area/rocinante_base/surface/building/science/tele_lab) -"qlP" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"qmd" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"qmO" = ( -/turf/open/floor/mainship/red/corner, -/area/rocinante_base/surface/building/living/barracks) -"qnC" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"qnR" = ( -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"qoa" = ( -/obj/machinery/door/airlock/mainship/marine{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/prep) -"qoq" = ( -/obj/structure/urinal, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration) -"qph" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/ground/base_w) -"qpM" = ( -/obj/structure/platform/rockcliff{ - dir = 6 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"qqp" = ( -/turf/open/floor/mainship/sterile/purple/corner, -/area/rocinante_base/surface/building/science/crystal_lab) -"qqZ" = ( -/obj/structure/prop/mainship/missile_tube, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"qrq" = ( -/obj/machinery/vending/snack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"qrT" = ( -/obj/structure/prop/mainship/protolathe, -/turf/open/floor/mainship/sterile/purple, -/area/rocinante_base/surface/building/science/research_lab) -"qsb" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"qsh" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/west_aux) -"qss" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"qsA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/security/medical_sec) -"qsB" = ( -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/living/barracks) -"qtg" = ( -/obj/structure/table/black, -/obj/machinery/computer3/server, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"qtp" = ( -/turf/open/shuttle/elevator/grating, -/area/rocinante_base/ground/base_sw) -"qtq" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/living/barracks) -"qtt" = ( -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/central_com) -"quf" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"quk" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/ground/base_cent) -"qvr" = ( -/obj/structure/sign/double/map/right, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"qvG" = ( -/obj/structure/platform/rockcliff{ - dir = 4 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"qvM" = ( -/obj/structure/table/black, -/obj/structure/platform/metalplatform, -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"qwm" = ( -/obj/structure/cargo_container/red{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"qxc" = ( -/obj/structure/table/black, -/obj/machinery/door_control{ - id = "chckpnt"; - name = "Security Checkpoint Control" - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"qxp" = ( -/obj/structure/largecrate/packed, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"qxA" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"qxD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/red/corner, -/area/rocinante_base/surface/building/security/medical_sec) -"qyE" = ( -/turf/open/floor/plating/ground/concrete/edge, -/area/rocinante_base/ground/base_nw) -"qyW" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/firing_range) -"qzc" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/rocinante_base/ground/base_w) -"qzm" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/west_barracks) -"qzV" = ( -/obj/structure/prop/turbine, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"qzY" = ( -/obj/structure/bed/chair/sofa/corsat/right, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"qAd" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"qAo" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/dmg1, -/area/rocinante_base/ground/base_w) -"qBb" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/command_hall) -"qBG" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/security/medical_sec) -"qCm" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"qCA" = ( -/obj/machinery/vending/sovietsoda, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/laundromat) -"qDQ" = ( -/obj/machinery/door/poddoor/mainship/open, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/air_storage) -"qEg" = ( -/obj/structure/table/black, -/obj/item/reagent_containers/food/snacks/pizzapasta/meatpizzaslice, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/break_room) -"qEh" = ( -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"qEi" = ( -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"qEm" = ( -/obj/structure/sign/double/map/right, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/science/research_lab) -"qEC" = ( -/obj/structure/reagent_dispensers, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"qEJ" = ( -/obj/item/ammo_magazine/tank/tank_glauncher, -/obj/structure/rack, -/obj/effect/turf_decal/warning_stripes/box, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"qFs" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"qFT" = ( -/obj/structure/monorail{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveE) -"qGa" = ( -/obj/structure/largecrate/random, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"qGk" = ( -/obj/structure/cargo_container/horizontal{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"qGH" = ( -/obj/effect/turf_decal/warning_stripes/nscenter, -/turf/open/floor/wood, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"qHn" = ( -/obj/structure/prop/brokenvendor/brokencorpsmanvendor, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/rocinante_base/surface/building/living/prep) -"qHs" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/science/complex_hall_e) -"qHy" = ( -/obj/structure/platform/rockcliff{ - dir = 10 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_sw) -"qHU" = ( -/obj/structure/table/black, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"qIg" = ( -/obj/structure/prop/vehicle/crane/cranecargo, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"qIm" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/meeting) -"qIF" = ( -/obj/structure/platform/rockcliff{ - dir = 9 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_sw) -"qJy" = ( -/obj/structure/ship_ammo/cas/heavygun, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/air_storage) -"qJz" = ( -/obj/structure/window_frame/mainship/gray, -/turf/open/floor/plating, -/area/rocinante_base/surface/building/southern_construction) -"qJF" = ( -/obj/machinery/light{ - light_color = "#da2f1b" - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"qJI" = ( -/obj/structure/cargo_container/gorg, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"qLj" = ( -/obj/machinery/door/window{ - dir = 1 - }, -/turf/open/floor/mainship/tcomms, -/area/rocinante_base/surface/building/administration/central_com) -"qNe" = ( -/obj/machinery/computer/som_two, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"qNt" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_n) -"qNy" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 10 - }, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/surface/building/science/bio_lab) -"qNX" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/living/barracks) -"qOi" = ( -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/science/complex_hall_e) -"qOu" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/medical) -"qOx" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857" - }, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/surface/building/science/bio_lab) -"qOE" = ( -/obj/structure/prop/mainship/gelida/rails, -/obj/structure/prop/mainship/gelida/railbumper{ - dir = 2 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_w) -"qPd" = ( -/obj/structure/table/black, -/obj/machinery/computer3/laptop, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"qPn" = ( -/obj/machinery/door/poddoor/mainship/open, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/southern_aux) -"qPs" = ( -/obj/machinery/door/airlock/mainship/marine, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/po_quarters) -"qPV" = ( -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"qQF" = ( -/obj/structure/window/reinforced, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"qRh" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"qRr" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 5 - }, -/area/rocinante_base/ground/base_cent) -"qRP" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/underground/caveN) -"qSd" = ( -/obj/machinery/door/airlock/multi_tile/mainship/engineering, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"qSu" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"qSx" = ( -/obj/structure/cargo_container/hd_blue{ - dir = 4 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveN) -"qSK" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"qSV" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/rocinante_base/surface/building/security/hub) -"qTi" = ( -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"qTm" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/command_sec) -"qTw" = ( -/obj/structure/toilet/alternate{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"qUz" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"qUA" = ( -/obj/machinery/vending/coffee, -/obj/machinery/light{ - light_color = "#da2f1b" - }, -/turf/open/floor/mainship/black{ - dir = 6 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"qUT" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 10 - }, -/turf/open/floor/mainship/som/se, -/area/rocinante_base/surface/building/administration) -"qVb" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"qWm" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/command_hall) -"qWT" = ( -/obj/structure/dispenser, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"qXJ" = ( -/obj/item/paper, -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/comm_post) -"qYg" = ( -/obj/structure/table/black, -/obj/item/pizzabox/margherita, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/break_room) -"qYE" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/laundromat) -"qYK" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"qZa" = ( -/obj/structure/prop/mainship/protolathe, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"qZb" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"qZk" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"qZt" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/mainship/sterile/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/medical) -"qZH" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 6 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_w) -"qZN" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 8 - }, -/turf/open/floor/mainship/black/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"qZV" = ( -/obj/structure/platform_decoration/metalplatform_deco, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_cent) -"raK" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_e) -"rbV" = ( -/obj/structure/desertdam/decals/road/line, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"rcq" = ( -/obj/machinery/science/pathogenic_Isolator, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"rcC" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"rcD" = ( -/obj/machinery/computer/emails, -/obj/structure/table/black, -/obj/structure/platform/metalplatform{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/crystal_lab) -"rcE" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/mining_construction) -"rcQ" = ( -/obj/structure/prop/brokenvendor/brokenuniformvendor, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/living/prep) -"rdj" = ( -/obj/structure/barricade/guardrail{ - dir = 1 - }, -/obj/structure/platform/metalplatform{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tram_line) -"rdB" = ( -/obj/structure/largecrate, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"rdN" = ( -/obj/structure/table/black, -/obj/machinery/computer/atmos_alert, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"rdR" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_ne) -"red" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/administration) -"rev" = ( -/obj/item/tool/crowbar/red, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"reG" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"reS" = ( -/obj/structure/platform/rockcliff{ - dir = 5 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_sw) -"reY" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer3/laptop, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"rfF" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"rfG" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"rgk" = ( -/obj/machinery/telecomms/relay/preset/telecomms, -/turf/closed/mineral/smooth/indestructible, -/area/storage/testroom) -"rgB" = ( -/obj/machinery/computer/som_two{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/train_station) -"rgT" = ( -/obj/structure/sink/bathroom{ - dir = 4 - }, -/obj/structure/mirror{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/south_com) -"rgY" = ( -/obj/structure/cargo_container/hd_blue, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"rhB" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"rhL" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/command_hall) -"rhM" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/command_sec) -"rhO" = ( -/obj/structure/prop/mainship/hangar_stencil, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"rit" = ( -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/living/barracks) -"rjf" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 9 - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_cent) -"rjU" = ( -/obj/structure/prop/vehicle/tank/north/armor, -/obj/structure/prop/vehicle/tank/north/decoration/artmodzero, -/obj/structure/prop/vehicle/tank/north/decoration/towlauncherzero, -/obj/structure/prop/vehicle/tank/north/decoration/armor/concussivearmor, -/obj/structure/prop/vehicle/tank/north/barrel/minigun, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"rkk" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/security/medical_sec) -"rkq" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric{ - dir = 2 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/break_room) -"rks" = ( -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration) -"rlF" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/silver, -/area/rocinante_base/surface/building/administration/command) -"rmk" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"rmA" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"rmK" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"rmO" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"rnW" = ( -/obj/machinery/door/airlock/mainship/generic, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"rob" = ( -/obj/machinery/light{ - light_color = "#da2f1b" - }, -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/security/hub) -"roy" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"roN" = ( -/obj/structure/somcas{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"rqy" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"rqE" = ( -/obj/structure/prop/brokenvendor/brokenmarinemedvendor, -/obj/machinery/light, -/turf/open/floor/mainship/sterile/side, -/area/rocinante_base/surface/building/medical) -"rqT" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_e) -"rsb" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/science/tele_lab) -"rsF" = ( -/obj/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/icefloor/warnplate{ - dir = 4 - }, -/area/rocinante_base/surface/landing/landing_pad_one) -"rtp" = ( -/obj/machinery/computer/camera, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"rtX" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/monkeycubes, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"rul" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"ruF" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/door/window{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/curtain/open/shower, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/science/tele_lab) -"rvp" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/north_aux) -"rvQ" = ( -/obj/structure/rack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"rwI" = ( -/obj/structure/sink/bathroom{ - dir = 4 - }, -/obj/structure/mirror{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/meeting) -"rwK" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_sw) -"rxK" = ( -/obj/structure/rock/variable/crystal_mound, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"rxV" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"rxZ" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"ryA" = ( -/turf/open/liquid/water/river, -/area/rocinante_base/surface/building/science/bio_lab) -"ryM" = ( -/obj/structure/prop/mainship/protolathe, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/administration) -"rzK" = ( -/turf/closed/mineral/smooth/snowrock, -/area/rocinante_base/ground/underground/caveW) -"rzM" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"rAe" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/laundromat) -"rAj" = ( -/obj/machinery/vending/engivend, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"rAp" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#5b7857" - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/bio_lab) -"rAy" = ( -/obj/structure/sign/double/map/right, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/science/complex_hall_e) -"rBc" = ( -/obj/machinery/cic_maptable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"rBO" = ( -/obj/structure/table/black, -/obj/item/storage/donut_box, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"rDU" = ( -/obj/structure/flora/pottedplant/two, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/hub) -"rEu" = ( -/obj/structure/bed/chair/alt{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/break_room) -"rEO" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/administration/south_com) -"rFp" = ( -/turf/open/floor/plating/dmg1, -/area/rocinante_base/ground/base_w) -"rFL" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"rGD" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"rGG" = ( -/obj/machinery/vending/snack, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"rHk" = ( -/turf/open/floor/mainship/black{ - dir = 6 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"rHE" = ( -/turf/open/floor/mainship/red/corner, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"rIb" = ( -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_e) -"rIv" = ( -/obj/structure/somcas{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"rJg" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"rJn" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"rJx" = ( -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/break_room) -"rJK" = ( -/obj/structure/prop/brokenvendor/engivend, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/barracks) -"rJU" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/command_hall) -"rKX" = ( -/obj/structure/sink{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/science/break_room) -"rLa" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"rLp" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"rLs" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_n) -"rLF" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"rLT" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"rMx" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/structure/platform/metalplatform, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"rMC" = ( -/obj/machinery/computer/som, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"rNT" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/door/window{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/curtain/open/shower, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"rOf" = ( -/obj/item/weapon/gun/energy/lasgun/lasrifle/volkite/cope/predeployed, -/obj/structure/barricade/concrete, -/turf/open/floor/plating, -/area/rocinante_base/surface/building/train_station) -"rOQ" = ( -/turf/open/floor/mainship/silver{ - dir = 9 - }, -/area/rocinante_base/surface/building/administration/command) -"rPs" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"rPz" = ( -/obj/structure/bed/chair/alt{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"rQB" = ( -/obj/structure/prop/mainship/turretprop, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration/north_com) -"rRa" = ( -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"rRh" = ( -/turf/open/floor/mainship/red/full, -/area/rocinante_base/surface/building/science/break_room) -"rRz" = ( -/obj/structure/table/black, -/obj/item/clipboard, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"rRM" = ( -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"rRZ" = ( -/obj/machinery/door/poddoor/mainship/indestructible, -/turf/closed/wall/indestructible, -/area/rocinante_base/surface/building/tram_line) -"rSf" = ( -/obj/machinery/door/airlock/mainship/secure/free_access{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/research_lab) -"rSC" = ( -/obj/structure/mine_structure/wooden/support_wall, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveW) -"rSU" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/rocinante_base/ground/underground/caveN) -"rTu" = ( -/turf/open/floor/mainship/red/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/barracks) -"rUc" = ( -/obj/structure/prop/mainship/turretprop, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/security/garage_sec) -"rUu" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"rVf" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"rVq" = ( -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/research_lab) -"rVA" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"rWf" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/train_station) -"rWy" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"rWO" = ( -/obj/structure/table/black, -/obj/machinery/computer/camera, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/central_com) -"rXj" = ( -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"rYl" = ( -/obj/structure/somcas/two{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"rYJ" = ( -/turf/open/floor/plating/dmg1, -/area/rocinante_base/ground/base_nw) -"rZp" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 8 - }, -/area/rocinante_base/ground/base_cent) -"rZE" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"rZN" = ( -/obj/structure/rack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"sab" = ( -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"sad" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 5 - }, -/turf/open/floor/mainship/som/nw, -/area/rocinante_base/surface/building/science/tele_lab) -"sai" = ( -/obj/machinery/newscaster{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"saQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"saU" = ( -/obj/structure/prop/mainship/protolathe/service, -/turf/open/floor/mainship/silver{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/command) -"saZ" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"sbd" = ( -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/north_com) -"sbf" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/rocinante_base/ground/base_nw) -"sbG" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"sbQ" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration/south_com) -"scz" = ( -/obj/structure/somcas/eight, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"sdq" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration) -"sdz" = ( -/turf/open/floor/plating/dmg1, -/area/rocinante_base/surface/building/mining_construction) -"sdN" = ( -/turf/closed/shuttle/re_corner, -/area/rocinante_base/surface/building/science/tele_lab) -"seF" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_cent) -"seN" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"sgf" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/effect/turf_decal/warning_stripes/box, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"sgI" = ( -/obj/machinery/computer/som_two{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"shh" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"shj" = ( -/obj/structure/prop/mainship/protolathe/sci, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"sho" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/administration/south_com) -"sil" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 8 - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_e) -"siu" = ( -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"sjx" = ( -/obj/structure/fence, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"sjB" = ( -/obj/structure/closet/secure_closet/freezer, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"skj" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"slc" = ( -/obj/structure/table/reinforced, -/obj/item/tool/surgery/scalpel/laser3, -/obj/item/stock_parts/micro_laser/ultra, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/crystal_lab) -"slf" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/command_hall) -"slh" = ( -/obj/machinery/light, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"slu" = ( -/obj/structure/table/black, -/obj/item/storage/donut_box, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/hub) -"slz" = ( -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"slV" = ( -/obj/machinery/cic_maptable, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/command_sec) -"sma" = ( -/obj/effect/attach_point/electronics/dropship1, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_one) -"smb" = ( -/obj/structure/cable, -/turf/open/floor/scorched, -/area/rocinante_base/surface/building/science/bio_lab) -"smh" = ( -/obj/machinery/door/airlock/mainship/marine{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/prep) -"sms" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"smx" = ( -/obj/structure/table/black, -/obj/item/reagent_containers/food/snacks/sandwiches/tofubreadslice, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/break_room) -"smM" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/purple, -/area/rocinante_base/surface/building/science/research_lab) -"snd" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/command_hall) -"snu" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/ground/base_s) -"sny" = ( -/obj/structure/window/framed/mainship, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"snF" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_s) -"snT" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"soK" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"sps" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/central_com) -"spO" = ( -/obj/structure/somcas{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"sqg" = ( -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/living/laundromat) -"sqG" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"sqI" = ( -/obj/structure/cargo_container/gorg{ - dir = 4 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"srr" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"srD" = ( -/obj/structure/somcas/eight{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"ssp" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"ssZ" = ( -/obj/structure/prop/mainship/mapping_computer, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/hub) -"stB" = ( -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"stQ" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"suk" = ( -/obj/docking_port/stationary/marine_dropship/lz2, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_two) -"suS" = ( -/obj/item/ammo_casing, -/obj/item/weapon/gun/pistol/m1911, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_e) -"suY" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"svr" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/scorched/two, -/area/rocinante_base/surface/building/science/bio_lab) -"svF" = ( -/obj/effect/turf_decal/tile/corsatstraight/gray, -/obj/structure/table/black, -/obj/machinery/computer3/laptop, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/lz_control) -"svJ" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"svT" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/laundromat) -"svW" = ( -/obj/structure/table/black, -/obj/item/weapon/gun/rifle/mpi_km/black/magharness, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/living/prep) -"swc" = ( -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/science/break_room) -"swp" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 4 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_ne) -"swQ" = ( -/obj/structure/bed/chair/alt, -/turf/open/floor/mainship/red/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/break_room) -"sxC" = ( -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"syf" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"syG" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"syX" = ( -/obj/effect/turf_decal/warning_stripes/thick/corner{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"szf" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"szE" = ( -/obj/structure/cargo_container/red{ - dir = 1 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"sAi" = ( -/obj/structure/table/reinforced, -/obj/item/paper/crumpled, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"sAB" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"sAG" = ( -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/command_hall) -"sAR" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"sAZ" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"sBq" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/bar) -"sCv" = ( -/obj/machinery/door/airlock/mainship/secure/free_access, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"sCJ" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/double/map/left, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/research_lab) -"sCM" = ( -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"sDa" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"sDj" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"sDn" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/prep) -"sDs" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/southern_aux) -"sDB" = ( -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/living/barracks) -"sDO" = ( -/obj/structure/table/black, -/obj/item/tool/kitchen/tray, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/science/break_room) -"sEg" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/security/medical_sec) -"sEB" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/west_aux) -"sEF" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"sEM" = ( -/obj/structure/table/black, -/obj/item/storage/fancy/cigar, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"sFH" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/bio_lab) -"sFX" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/blue/full, -/area/rocinante_base/surface/building/administration) -"sGh" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"sGU" = ( -/obj/effect/turf_decal/siding/dark, -/obj/structure/bed/chair/alt, -/obj/structure/cable, -/turf/open/floor/mainship/som/s, -/area/rocinante_base/surface/building/living/barracks) -"sGY" = ( -/obj/structure/cargo_container/horizontal{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_ne) -"sHq" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"sHL" = ( -/turf/open/floor/mainship/blue/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"sHT" = ( -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_w) -"sIb" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/breakroom) -"sIg" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"sIJ" = ( -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/research_lab) -"sIL" = ( -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/hub) -"sIO" = ( -/obj/structure/cargo_container/horizontal, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"sJf" = ( -/obj/structure/somcas/two, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"sJi" = ( -/obj/machinery/vending/sovietsoda, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration) -"sKf" = ( -/turf/closed/wall/mainship/gray/outer, -/area/rocinante_base/surface/building/engineering) -"sKv" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/laundromat) -"sKT" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"sLt" = ( -/obj/effect/turf_decal/warning_stripes/nscenter, -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/wood, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"sMC" = ( -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"sMP" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration) -"sNi" = ( -/obj/structure/barricade/concrete, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"sNt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/silver{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/command) -"sNU" = ( -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/administration) -"sNV" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/north_aux) -"sNZ" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_cent) -"sOa" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"sOH" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"sQl" = ( -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/administration) -"sQv" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/command_hall) -"sQG" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/medical) -"sQQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/bed/bunkbed, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"sRJ" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/command_hall) -"sRP" = ( -/obj/machinery/cic_maptable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"sRU" = ( -/turf/open/floor/mainship/silver{ - dir = 5 - }, -/area/rocinante_base/surface/building/administration/command) -"sSi" = ( -/obj/structure/window/reinforced, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"sSy" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer3/laptop, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"sSG" = ( -/obj/machinery/computer/som_two{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/comm_post) -"sTh" = ( -/turf/closed/shuttle/dropship_regular/top_corner/alt, -/area/rocinante_base/ground/base_sw) -"sTn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/bio_lab) -"sTu" = ( -/obj/structure/cargo_container/red, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"sTB" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/rocinante_base/surface/building/administration/central_com) -"sUg" = ( -/obj/structure/somcas/four{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"sUk" = ( -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/lz_control) -"sUq" = ( -/turf/open/floor/mainship/red/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/laundromat) -"sUr" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"sUK" = ( -/obj/structure/prop/vehicle/truck, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/ground/base_se) -"sUQ" = ( -/obj/structure/cargo_container/green{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"sVl" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/laundromat) -"sVp" = ( -/turf/open/floor/plating/ground/concrete/edge, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"sVY" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration/breakroom) -"sWo" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"sWp" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/ground/base_se) -"sWJ" = ( -/obj/effect/attach_point/weapon/dropship1, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_two) -"sWR" = ( -/turf/closed/shuttle/dropship_regular/interior_wall{ - dir = 1 - }, -/area/rocinante_base/ground/base_sw) -"sWX" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/administration/south_com) -"sWY" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"sXo" = ( -/turf/open/floor/mainship/red/corner, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"sXw" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 9 - }, -/area/rocinante_base/ground/base_s) -"sYh" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/breakroom) -"sYw" = ( -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"sYH" = ( -/obj/structure/sink/bathroom{ - dir = 4 - }, -/obj/structure/mirror{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration) -"sZo" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_se) -"sZU" = ( -/obj/item/stool, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"tao" = ( -/obj/structure/table/black, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"tar" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/west_barracks) -"taE" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/ground/base_n) -"tbl" = ( -/obj/structure/prop/vehicle/apc, -/obj/structure/prop/vehicle/apc/dualcannonzero, -/obj/structure/prop/vehicle/apc/decoration/flarelaunchertwo, -/obj/structure/prop/vehicle/apc/wheelszero, -/obj/structure/prop/vehicle/apc/decoration/frontturretzero, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"tbz" = ( -/obj/structure/cable, -/turf/open/floor/scorched/two, -/area/rocinante_base/surface/building/science/bio_lab) -"tbH" = ( -/turf/closed/mineral/smooth/indestructible, -/area/space) -"tbZ" = ( -/obj/structure/somcas/one, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"tcF" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"tcV" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"tdL" = ( -/obj/structure/somcas/four, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"tdS" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/crystal_lab) -"tey" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"tez" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/red/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"tgA" = ( -/obj/structure/prop/mainship/gelida/rails, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_w) -"tgT" = ( -/obj/structure/somcas/six{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"thf" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"thm" = ( -/obj/structure/target_stake, -/obj/item/target, -/obj/item/clothing/suit/replica, -/obj/structure/monorail, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/firing_range) -"thp" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/underground/caveN) -"thq" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/engineering/north_smes) -"tie" = ( -/obj/structure/rack, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"tim" = ( -/obj/structure/bed/chair/alt, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"tis" = ( -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"tit" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveS) -"tja" = ( -/obj/machinery/computer3/server/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"tjF" = ( -/obj/machinery/light, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"tjN" = ( -/obj/machinery/power/port_gen/pacman/super, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"tkl" = ( -/obj/structure/table/black, -/obj/item/clipboard, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"tky" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"tkF" = ( -/obj/structure/somcas/seven{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"tkO" = ( -/obj/structure/flora/tree/dead, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"tlV" = ( -/obj/structure/rack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/research_lab) -"tlW" = ( -/obj/structure/flora/tree/pine, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"tmv" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"tmL" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/ground/base_nw) -"tnp" = ( -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"toi" = ( -/obj/machinery/computer/som_two, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"tpe" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/crystal_lab) -"tpi" = ( -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"tpo" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/corner, -/area/rocinante_base/surface/building/medical) -"tpU" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/research_lab) -"tpV" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"tqA" = ( -/obj/structure/desertdam/decals/road/line, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"trc" = ( -/obj/machinery/computer/autodoc_console, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"trr" = ( -/obj/structure/flora/tree/pine, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_n) -"trs" = ( -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_nw) -"trE" = ( -/turf/open/floor/plating/dmg1, -/area/rocinante_base/surface/building/living/west_barracks) -"tsA" = ( -/obj/machinery/computer/som_two{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"tsC" = ( -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_cent) -"tsJ" = ( -/turf/closed/mineral/smooth/snowrock, -/area/rocinante_base/surface/building/engineering) -"ttE" = ( -/obj/structure/filingcabinet, -/obj/structure/cable, -/obj/machinery/power/apc, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"ttK" = ( -/obj/structure/rack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"tuc" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"tuE" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/west_barracks) -"tuF" = ( -/obj/machinery/door/poddoor/mainship/open, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_sw) -"tvU" = ( -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/living/chapel_ne) -"twl" = ( -/obj/machinery/computer/emails, -/obj/structure/table/black, -/obj/structure/window/reinforced, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/hub) -"two" = ( -/obj/structure/prop/mainship/protolathe/sci, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"twq" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"twr" = ( -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveW) -"twT" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge{ - dir = 4 - }, -/area/rocinante_base/ground/base_cent) -"txs" = ( -/obj/structure/table/black, -/obj/machinery/door/window, -/obj/machinery/door/window{ - dir = 8 - }, -/obj/item/clipboard, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"txy" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"tyN" = ( -/obj/machinery/door/airlock/multi_tile/mainship/marine{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/west_barracks) -"tzl" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/tele_lab) -"tzL" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_ne) -"tAm" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_s) -"tAp" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"tBn" = ( -/turf/open/floor/plating/ground/concrete/edge, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"tBu" = ( -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/ground/base_cent) -"tBW" = ( -/obj/structure/monorail, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"tCg" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/effect/turf_decal/warning_stripes/box, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"tCk" = ( -/obj/structure/window, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"tCV" = ( -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/ground/base_w) -"tDg" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"tDq" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"tDN" = ( -/obj/structure/prop/mainship/missile_tube, -/obj/structure/prop/mainship/missile_tube{ - pixel_x = 14; - pixel_y = 3 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"tEu" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"tEJ" = ( -/obj/structure/table/black, -/obj/item/pizzabox/margherita, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/break_room) -"tES" = ( -/obj/structure/table/black, -/obj/structure/paper_bin, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"tFS" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"tGN" = ( -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"tGP" = ( -/obj/structure/rack, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"tHg" = ( -/obj/machinery/shower, -/obj/structure/curtain/open/shower, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window{ - dir = 2 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/west_barracks) -"tHo" = ( -/obj/machinery/door/airlock/mainship/generic, -/obj/structure/cable, -/turf/open/floor/mainship/red/full, -/area/rocinante_base/surface/building/administration) -"tHp" = ( -/obj/structure/urinal, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/ground/base_cent) -"tHJ" = ( -/obj/structure/toilet/alternate{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration) -"tHK" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 8 - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_cent) -"tIi" = ( -/obj/structure/barricade/concrete, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"tIr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"tIA" = ( -/turf/closed/shuttle/dropship_regular/interior_corner, -/area/rocinante_base/ground/base_sw) -"tIO" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"tJe" = ( -/obj/machinery/space_heater, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/barracks) -"tJN" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"tJZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"tKf" = ( -/turf/closed/shuttle/escapeshuttle, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"tKz" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"tKQ" = ( -/obj/machinery/light, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/administration/breakroom) -"tLg" = ( -/obj/structure/bed/chair/sofa/corsat/verticalsouth, -/obj/structure/barricade/guardrail{ - dir = 4; - pixel_y = 7 - }, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"tLv" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"tLz" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"tLT" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/prep) -"tMJ" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/administration/south_com) -"tNh" = ( -/obj/item/tool/crowbar/red, -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"tNj" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"tNx" = ( -/obj/structure/sink{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"tNW" = ( -/obj/structure/prop/vehicle/van, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"tOl" = ( -/obj/structure/stairs/seamless, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"tOw" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"tOH" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration) -"tPe" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/som, -/area/rocinante_base/surface/building/living/barracks) -"tPq" = ( -/obj/machinery/computer/som, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"tPs" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/security/command_sec) -"tPG" = ( -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/meeting) -"tPI" = ( -/obj/structure/somcas/four{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"tPS" = ( -/obj/structure/flora/grass/tallgrass{ - color = "#5b7857" - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_e) -"tQa" = ( -/obj/machinery/power/geothermal, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"tQl" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/tele_lab) -"tQo" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/command_hall) -"tQO" = ( -/obj/structure/closet/walllocker/hydrant/extinguisher{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"tQP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"tRC" = ( -/obj/structure/sink{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"tRH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/central_com) -"tRN" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"tTK" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/west_barracks) -"tTX" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"tUC" = ( -/obj/structure/somcas/one{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"tVd" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"tVx" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"tVO" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"tWf" = ( -/obj/structure/bed/chair, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_s) -"tWO" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"tXA" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/shuttle/dropship/floor, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"tXI" = ( -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/meeting) -"tXS" = ( -/obj/machinery/door/poddoor/mainship/open, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/air_storage) -"tYr" = ( -/obj/structure/prop/mainship/protolathe, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"tYt" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/hub) -"tYy" = ( -/obj/structure/cargo_container/red{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_ne) -"tZf" = ( -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveCent) -"tZt" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/hub) -"tZF" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/edge, -/area/rocinante_base/ground/base_w) -"uao" = ( -/obj/structure/cargo_container/hd_blue, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveN) -"uaH" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/science/break_room) -"uba" = ( -/obj/structure/rack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/north_aux) -"uby" = ( -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"ubV" = ( -/obj/machinery/power/apc, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"ucc" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/ground/base_nw) -"ucG" = ( -/obj/structure/closet/secure_closet/medical3, -/turf/open/floor/mainship/sterile/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/medical) -"ucN" = ( -/obj/structure/bed/chair/sofa/corsat/verticalmiddle, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"udx" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"udB" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"udP" = ( -/obj/structure/window/reinforced, -/obj/structure/curtain/open/shower, -/obj/machinery/door/window, -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"uec" = ( -/obj/machinery/computer/som{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"ueg" = ( -/obj/structure/table/black, -/obj/item/reagent_containers/food/snacks/pizzapasta/meatpizzaslice, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/science/break_room) -"ueY" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"ufp" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"ufu" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"ufQ" = ( -/obj/structure/rack, -/obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/north_smes) -"ugt" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"uhf" = ( -/obj/machinery/light{ - light_color = "#da2f1b" - }, -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"uhF" = ( -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_cent) -"uhS" = ( -/obj/machinery/door/airlock/mainship/medical/free_access{ - dir = 2 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"uiw" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/science/tele_lab) -"uiA" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"uiH" = ( -/obj/structure/prop/brokenvendor/brokencorpsmanvendor, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"ujm" = ( -/obj/effect/turf_decal/warning_stripes/thick, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"ujn" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/crystal_lab) -"ujv" = ( -/obj/structure/stairs/seamless/edge{ - dir = 8 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"ujU" = ( -/obj/structure/bed/chair/alt{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"ukr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 6 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"ukI" = ( -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_n) -"ulo" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/living/barracks) -"ulu" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"umi" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"uml" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/command) -"umm" = ( -/obj/machinery/door/airlock/mainship/secure/free_access{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_n) -"umq" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/ground/base_sw) -"uns" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_n) -"uoc" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/rocinante_base/ground/base_s) -"uoh" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"uou" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/comm_post) -"uoG" = ( -/obj/item/stack/rods, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"uoI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"uph" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/chapel_ne) -"upi" = ( -/obj/structure/cargo_container/red{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"ups" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"upw" = ( -/obj/structure/monorail{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tram_line) -"upY" = ( -/obj/structure/somcas/six{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"urn" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration) -"urp" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"urQ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"usf" = ( -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/rocinante_base/surface/building/security/hub) -"usp" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/breakroom) -"usE" = ( -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/command_hall) -"uts" = ( -/obj/effect/turf_decal/warning_stripes/thick/corner, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"utG" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/science/bio_lab) -"utP" = ( -/obj/structure/somcas/one{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"uuq" = ( -/obj/effect/turf_decal/warning_stripes/stripedsquare/tile/border, -/obj/machinery/telecomms/receiver, -/obj/structure/prop/mainship/gelida/powerccable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"uuH" = ( -/obj/machinery/photocopier, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"uuY" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"uva" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/crystal_lab) -"uvg" = ( -/obj/machinery/telecomms/processor, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/comm_post) -"uvi" = ( -/obj/machinery/door/window/secure, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"uvt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"uvu" = ( -/obj/structure/stairs/seamless, -/obj/structure/platform/metalplatform{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"uvS" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"uwy" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/complex_hall_e) -"uwz" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"uwD" = ( -/obj/structure/noticeboard{ - desc = "Due to budget, we could not get multiple chapels for the different religions here, please see schedule at status display." - }, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/chapel_ne) -"uxz" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/living/laundromat) -"uya" = ( -/obj/effect/attach_point/weapon/dropship1{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/warnplate{ - dir = 8 - }, -/area/rocinante_base/surface/landing/landing_pad_one) -"uyb" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/engineering/south_smes) -"uyi" = ( -/obj/structure/rack, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_se) -"uyr" = ( -/obj/machinery/cic_maptable, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/hub) -"uyw" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"uyI" = ( -/obj/structure/bed/chair/dropship/passenger, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"uzi" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 1 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"uzo" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/hub) -"uzr" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"uzG" = ( -/obj/structure/table/black, -/obj/machinery/microwave, -/obj/item/reagent_containers/food/snacks/soup/milosoup, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/break_room) -"uzO" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/south_smes) -"uAg" = ( -/obj/structure/cryofeed/right, -/turf/open/liquid/water/river, -/area/rocinante_base/surface/building/engineering) -"uAP" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/effect/forcefield{ - desc = "You can't get in. Heh."; - name = "Blocker" - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveN) -"uAT" = ( -/turf/open/floor/mainship/black/corner, -/area/rocinante_base/surface/building/cargo/air_storage) -"uAZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"uBY" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/break_room) -"uCA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"uDc" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"uDA" = ( -/turf/closed/shuttle/escapeshuttle, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"uDB" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"uDY" = ( -/turf/closed/mineral/smooth/snowrock, -/area/rocinante_base/ground/base_se) -"uEh" = ( -/turf/open/floor/mainship/black{ - dir = 6 - }, -/area/rocinante_base/surface/building/living/prep) -"uEy" = ( -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"uFb" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/west_barracks) -"uFn" = ( -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/air_storage) -"uFt" = ( -/obj/effect/turf_decal/medical_decals/cryo/cell/two, -/turf/open/floor/mainship/sterile/side{ - dir = 5 - }, -/area/rocinante_base/surface/building/medical) -"uFz" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue/corner, -/area/rocinante_base/surface/building/administration/central_com) -"uFC" = ( -/obj/structure/somcas/five{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"uGM" = ( -/obj/structure/somcas/one{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"uGN" = ( -/obj/structure/monorail{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"uGV" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 10 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_n) -"uHr" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"uHP" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"uId" = ( -/obj/machinery/light, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_ne) -"uIf" = ( -/obj/structure/toilet/alternate{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/west_barracks) -"uIv" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/research_lab) -"uIH" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"uIZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/computer/som_two, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/hub) -"uJB" = ( -/turf/open/floor/mainship/cargo/arrow{ - dir = 4 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"uJI" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 8 - }, -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"uKe" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_cent) -"uKj" = ( -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/administration) -"uKl" = ( -/obj/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/icefloor/warnplate{ - dir = 4 - }, -/area/rocinante_base/surface/landing/landing_pad_two) -"uLo" = ( -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"uMD" = ( -/obj/machinery/computer/telecomms/server, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"uMT" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"uNe" = ( -/obj/structure/table/black, -/obj/machinery/computer3/laptop, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"uNB" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"uOE" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"uOH" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/som_two, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"uOX" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/rocinante_base/surface/building/security/hub) -"uPl" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/ground/base_w) -"uPs" = ( -/obj/structure/mirror, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration/north_com) -"uPz" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"uPL" = ( -/obj/structure/platform, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"uQa" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/tele_lab) -"uQb" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"uQu" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/rocinante_base/ground/base_cent) -"uQD" = ( -/obj/structure/rack, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"uQG" = ( -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"uQT" = ( -/obj/item/tool/wet_sign, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"uRt" = ( -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/rocinante_base/surface/building/administration/central_com) -"uRx" = ( -/obj/structure/desertdam/decals/road/stop{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"uRT" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/mainship/black/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"uSb" = ( -/obj/machinery/door/airlock/mainship/security/glass/free_access{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"uSm" = ( -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/hub) -"uSr" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"uSz" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"uSD" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"uSP" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"uTs" = ( -/obj/structure/bed/chair/alt{ - dir = 8 - }, -/turf/open/floor/mainship/black/corner, -/area/rocinante_base/surface/building/living/prep) -"uTw" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/engineering) -"uVZ" = ( -/obj/machinery/door/airlock/mainship/security{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/garage_sec) -"uXj" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/meeting) -"uXm" = ( -/obj/structure/prop/mainship/protolathe/sci, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"uXr" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"uYB" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/garage_sec) -"uYD" = ( -/obj/machinery/computer/area_atmos, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/command_hall) -"uZi" = ( -/obj/machinery/science/pathogenic_Isolator, -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/research_lab) -"uZj" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/hub) -"uZx" = ( -/obj/structure/flora/pottedplant/two, -/turf/open/floor/mainship/blue{ - dir = 10 - }, -/area/rocinante_base/surface/building/security/hub) -"uZB" = ( -/turf/open/floor/mainship/red/full, -/area/rocinante_base/surface/building/security/medical_sec) -"uZE" = ( -/obj/machinery/power/apc{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"uZR" = ( -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_w) -"vaD" = ( -/obj/structure/platform/metalplatform{ - dir = 6 - }, -/obj/item/weapon/gun/energy/lasgun/lasrifle/volkite/cope/predeployed, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"vbh" = ( -/turf/open/floor/mainship/blue/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/hub) -"vbi" = ( -/obj/structure/ship_ammo/cas/heavygun, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/cargo/air_storage) -"vbj" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/break_room) -"vbF" = ( -/obj/structure/prop/mainship/gelida/powercconnectorthreeside{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"vdg" = ( -/obj/machinery/door/airlock/multi_tile/mainship/secdoor{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"vdu" = ( -/obj/machinery/optable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"vdy" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/science/crystal_lab) -"vdE" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"vdF" = ( -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"vdO" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_ne) -"vdT" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"veL" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/break_room) -"vfy" = ( -/obj/structure/prop/mainship/sensor_computer1, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"vgn" = ( -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/administration/central_com) -"vhd" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/south_smes) -"vhO" = ( -/obj/structure/table/black, -/obj/structure/paper_bin, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"vid" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"vig" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"vjz" = ( -/obj/structure/platform/metalplatform{ - dir = 9 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"vjP" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"vkb" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/medical_sec) -"vkn" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black/corner, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"vkp" = ( -/obj/machinery/computer/som_two, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"vkF" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue/corner, -/area/rocinante_base/surface/building/security/hub) -"vkQ" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"vlc" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration/north_air_com) -"vmw" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"vmC" = ( -/obj/structure/somcas/five, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"vmN" = ( -/obj/structure/dropship_equipment/cas/weapon/heavygun, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/cargo/air_storage) -"vnt" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/south_smes) -"vnA" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/lz_control) -"vnK" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/administration/south_com) -"vol" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 5 - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_cent) -"voB" = ( -/turf/closed/mineral/smooth{ - color = "#c2e4ff" - }, -/area/rocinante_base/ground/underground/caveCent) -"vpe" = ( -/turf/open/floor/mainship/silver{ - dir = 6 - }, -/area/rocinante_base/surface/building/administration/command) -"vpi" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"vpn" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"vpp" = ( -/obj/structure/prop/brokenvendor/brokenuniformvendor/specialist, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/rocinante_base/surface/building/living/prep) -"vpt" = ( -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"vpx" = ( -/obj/machinery/door/poddoor/mainship/open{ - dir = 2 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/ground/base_w) -"vpR" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/rocinante_base/ground/base_sw) -"vpS" = ( -/obj/machinery/door/airlock/multi_tile/mainship/secdoor/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/sec_dorms) -"vpW" = ( -/obj/machinery/computer3/server/rack, -/turf/open/floor/mainship/tcomms, -/area/rocinante_base/surface/building/security/medical_sec) -"vqc" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"vqA" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"vqK" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 9 - }, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/surface/building/science/bio_lab) -"vqQ" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"vrw" = ( -/obj/machinery/computer/som_two{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/hub) -"vrE" = ( -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"vsu" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"vsH" = ( -/obj/structure/monorail{ - dir = 6 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveE) -"vto" = ( -/turf/open/floor/mainship/red/full, -/area/rocinante_base/surface/building/administration) -"vtB" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/research_lab) -"vuu" = ( -/obj/structure/prop/brokenvendor/brokenweaponsrack, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"vuJ" = ( -/obj/machinery/flasher, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/security/brig) -"vvh" = ( -/obj/structure/prop/brokenvendor/brokenspecialistvendor/corpsman, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/prep) -"vvE" = ( -/obj/structure/prop/vehicle/truck, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/southern_aux) -"vwm" = ( -/obj/structure/cargo_container/horizontal{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/surface/building/train_station) -"vww" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"vwO" = ( -/obj/machinery/door/airlock/mainship/marine, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"vxl" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_nw) -"vyy" = ( -/obj/structure/cargo_container/red, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"vyz" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"vyL" = ( -/obj/structure/platform/rockcliff{ - dir = 1 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_sw) -"vzm" = ( -/obj/structure/table/black, -/obj/machinery/computer3/laptop, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"vzU" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"vAp" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 9 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_w) -"vAs" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/breakroom) -"vAH" = ( -/obj/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/icefloor/warnplate{ - dir = 8 - }, -/area/rocinante_base/surface/landing/landing_pad_one) -"vBr" = ( -/obj/machinery/computer/som_two{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"vCc" = ( -/turf/open/floor/mainship/red{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"vCz" = ( -/obj/structure/cable, -/obj/machinery/power/apc, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"vCT" = ( -/obj/machinery/vending/snack, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"vCV" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 5 - }, -/turf/open/floor/mainship/som/nw, -/area/rocinante_base/surface/building/security/hub) -"vDr" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"vDQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/surface/building/train_station) -"vEr" = ( -/obj/machinery/door/poddoor/two_tile_hor, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"vEt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"vFm" = ( -/obj/structure/cargo_container/green, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"vFn" = ( -/obj/structure/prop/brokenvendor/brokenweaponsrack, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"vFJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/barracks) -"vFQ" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 6 - }, -/area/rocinante_base/ground/base_cent) -"vGB" = ( -/obj/structure/bed/chair/pew{ - dir = 10 - }, -/turf/open/floor/carpet/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/chapel_ne) -"vHx" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"vHC" = ( -/obj/structure/prop/mainship/turretprop, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration) -"vIa" = ( -/obj/item/stool, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/living/bar) -"vIX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/administration/central_com) -"vJH" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"vJY" = ( -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"vKt" = ( -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_s) -"vKD" = ( -/turf/closed/shuttle/dropship_regular/top_corner/alt{ - dir = 1 - }, -/area/rocinante_base/ground/base_sw) -"vLj" = ( -/obj/structure/stairs/seamless/edge{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_sw) -"vLo" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"vLr" = ( -/obj/structure/barricade/guardrail{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tram_line) -"vLt" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"vMh" = ( -/obj/structure/platform/metalplatform{ - dir = 10 - }, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/ground/base_sw) -"vMT" = ( -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"vNe" = ( -/obj/machinery/computer/atmoscontrol, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"vNV" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 5 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/bio_lab) -"vOd" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"vOs" = ( -/obj/machinery/power/apc, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/janitor) -"vPC" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 1 - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_cent) -"vPW" = ( -/obj/structure/cargo_container/hd, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"vQk" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/medical) -"vQp" = ( -/obj/structure/table/black, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"vQH" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/surface/building/train_station) -"vQS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"vRm" = ( -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_n) -"vRq" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"vRG" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration/air_com) -"vRN" = ( -/obj/structure/barricade/guardrail{ - dir = 4; - pixel_y = 7 - }, -/obj/structure/platform/metalplatform{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tram_line) -"vSb" = ( -/turf/open/floor/plating/dmg1, -/area/rocinante_base/surface/building/southern_construction) -"vSl" = ( -/obj/structure/rock/crystal/small, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_cent) -"vSu" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/west_barracks) -"vTq" = ( -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/engineering) -"vTw" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 4 - }, -/area/rocinante_base/ground/base_s) -"vTC" = ( -/obj/item/shard, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"vUi" = ( -/obj/structure/platform/rockcliff{ - dir = 4 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_sw) -"vUr" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/comm_post) -"vUA" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_w) -"vVd" = ( -/obj/structure/platform/metalplatform{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/ground/base_s) -"vVA" = ( -/obj/machinery/door/airlock/multi_tile/mainship/marine{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/po_quarters) -"vVD" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_air_com) -"vVF" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 9 - }, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_e) -"vWa" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/obj/structure/platform/metalplatform, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"vXc" = ( -/obj/structure/stairs/seamless{ - dir = 1 - }, -/obj/structure/platform/metalplatform{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"vXJ" = ( -/obj/structure/sink/bathroom{ - dir = 4 - }, -/obj/structure/mirror{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"vYD" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 6 - }, -/turf/open/floor/mainship/som/sw, -/area/rocinante_base/surface/building/administration) -"vYI" = ( -/obj/structure/prop/vehicle/truck/truckcargo, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"vYY" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/po_quarters) -"vZr" = ( -/obj/structure/table/black, -/obj/machinery/computer/camera, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"vZx" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/barracks) -"vZy" = ( -/obj/machinery/computer3/server/rack, -/obj/structure/window/full{ - dir = 1 - }, -/turf/open/floor/mainship/tcomms, -/area/rocinante_base/surface/building/administration/central_com) -"vZQ" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/south_smes) -"wac" = ( -/obj/structure/toilet/alternate{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/meeting) -"wag" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/cargo/arrow{ - dir = 4 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"waM" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"wbf" = ( -/obj/structure/prop/mainship/mission_planning_system, -/turf/open/floor/mainship/silver{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/command) -"wbs" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"wbz" = ( -/obj/structure/prop/mainship/gelida/smallwire, -/obj/structure/prop/mainship/gelida/smallwire, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"wbF" = ( -/obj/structure/urinal, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/breakroom) -"wbN" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"wcg" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_w) -"wck" = ( -/obj/structure/rock/crystal, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"wcp" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/sec_dorms) -"wcs" = ( -/obj/structure/barricade/concrete, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"wcx" = ( -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/administration/command) -"wcy" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/break_room) -"wcQ" = ( -/obj/machinery/computer/emails, -/obj/structure/table/reinforced, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"wcS" = ( -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"weg" = ( -/obj/structure/toilet/alternate{ - dir = 4 - }, -/obj/machinery/door/window, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"weG" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/rocinante_base/ground/underground/caveN) -"weR" = ( -/obj/structure/sign/double/map/left, -/turf/open/floor/mainship/red/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/barracks) -"wgb" = ( -/obj/structure/dropship_equipment/cas/weapon/rocket_pod, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/cargo/air_storage) -"wgN" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"wgV" = ( -/obj/structure/rack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/south_smes) -"whz" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/air_storage) -"wiB" = ( -/obj/structure/bed/bunkbed, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/west_barracks) -"wjb" = ( -/obj/machinery/light, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/barracks) -"wjc" = ( -/obj/structure/dropship_equipment/cas/weapon/rocket_pod, -/obj/machinery/light, -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/rocinante_base/surface/building/cargo/air_storage) -"wjT" = ( -/obj/machinery/power/apc, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"wke" = ( -/turf/closed/mineral/smooth{ - color = "#c2e4ff" - }, -/area/rocinante_base/ground/base_se) -"wkj" = ( -/obj/machinery/computer/prisoner, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"wkv" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/barracks) -"wkU" = ( -/obj/machinery/door/airlock/mainship/engineering, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/south_smes) -"wlG" = ( -/obj/machinery/elevator_strut/bottom, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"wme" = ( -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_sw) -"wmo" = ( -/obj/machinery/door/window/secure, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"wmx" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_ne) -"wmU" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"wnu" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"woe" = ( -/obj/machinery/vending/marineFood, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/living/barracks) -"woJ" = ( -/obj/structure/shuttle/engine/heater, -/turf/closed/shuttle/dropship_regular/backhatch, -/area/rocinante_base/ground/base_sw) -"woV" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/medical) -"wpn" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/research_lab) -"wpG" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/bio_lab) -"wpN" = ( -/obj/effect/turf_decal/warning_stripes/box, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/living/prep) -"wpO" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"wpQ" = ( -/obj/structure/somcas/three{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"wqb" = ( -/obj/machinery/light, -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"wqv" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/medical) -"wqL" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/hub) -"wrq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/break_room) -"wrC" = ( -/obj/structure/prop/mainship/gelida/powercconnectorthreeside{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"wrG" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/science/research_lab) -"wrM" = ( -/obj/structure/sink/bathroom{ - dir = 4 - }, -/obj/structure/mirror{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/science/tele_lab) -"wsF" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/west_barracks) -"wsQ" = ( -/obj/machinery/door/airlock/prison/horizontal/open, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"wsR" = ( -/obj/effect/turf_decal/warning_stripes/thick{ - dir = 4 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"wtb" = ( -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/living/barracks) -"wtc" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"wtL" = ( -/turf/open/floor/mainship/red/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration) -"wtO" = ( -/obj/effect/turf_decal/warning_stripes/thin, -/turf/open/floor/wood, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"wtV" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"wuv" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/west_aux) -"wuW" = ( -/obj/structure/prop/mainship/turretprop, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"wvb" = ( -/obj/effect/turf_decal/warning_stripes/nscenter, -/obj/effect/turf_decal/warning_stripes, -/obj/item/toy/beach_ball/basketball, -/turf/open/floor/wood, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"wvz" = ( -/obj/structure/prop/mainship/gelida/powerccable, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"wvD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/rocinante_base/surface/building/administration/meeting) -"wvG" = ( -/obj/structure/table/black, -/obj/machinery/door/window, -/obj/machinery/door/window{ - dir = 8 - }, -/obj/item/clipboard, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"wvS" = ( -/turf/open/floor/carpet/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/chapel_ne) -"wwb" = ( -/obj/machinery/computer/telecomms/server, -/turf/open/floor/mainship/red/full, -/area/rocinante_base/surface/building/security/medical_sec) -"wwk" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/garage_sec) -"wwz" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/medical) -"wwJ" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"wxb" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/living/prep) -"wxJ" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/laundromat) -"wym" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 10 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"wyr" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/barracks) -"wyO" = ( -/turf/closed/wall/mainship, -/area/rocinante_base/ground/base_cent) -"wzg" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"wzj" = ( -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/living/west_barracks) -"wzl" = ( -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"wzz" = ( -/obj/machinery/light, -/obj/machinery/computer/som{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/train_station) -"wzM" = ( -/obj/machinery/door/window{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"wAc" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/sec_dorms) -"wAs" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/structure/cable, -/turf/open/floor/mainship/sterile/purple/side, -/area/rocinante_base/surface/building/science/research_lab) -"wAz" = ( -/obj/machinery/door/airlock/mainship/generic/glass{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/central_com) -"wAB" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 10 - }, -/area/rocinante_base/surface/landing/landing_pad_two) -"wAL" = ( -/obj/structure/bed/chair/sofa/corsat/verticaltop, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/command_hall) -"wAR" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"wBu" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/research_lab) -"wBB" = ( -/obj/item/shard, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"wBO" = ( -/obj/structure/closet/walllocker/hydrant/extinguisher, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"wCs" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 5 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"wCV" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration) -"wDf" = ( -/obj/structure/bed/chair/alt{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/barracks) -"wDk" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"wDr" = ( -/obj/structure/rack, -/obj/item/armor_module/module/eshield, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 6 - }, -/area/rocinante_base/surface/building/science/research_lab) -"wDy" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/ground/base_w) -"wEC" = ( -/turf/open/floor/carpet/side, -/area/rocinante_base/surface/building/living/chapel_ne) -"wEH" = ( -/obj/structure/dropship_equipment/cas/weapon/heavygun, -/obj/machinery/light, -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/rocinante_base/surface/building/cargo/air_storage) -"wFe" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"wFz" = ( -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/security/command_sec) -"wFW" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/security/sec_dorms) -"wGe" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"wGt" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/administration/command) -"wGG" = ( -/obj/structure/cable, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/crystal_lab) -"wGX" = ( -/obj/machinery/power/smes/buildable/empty{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/north_smes) -"wHg" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"wHj" = ( -/turf/open/floor/mainship/sterile/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/medical) -"wHC" = ( -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/administration/breakroom) -"wHJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/central_com) -"wHX" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 9 - }, -/area/rocinante_base/surface/landing/landing_pad_two) -"wIk" = ( -/obj/machinery/door/airlock/mainship/engineering, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering/north_smes) -"wIv" = ( -/obj/machinery/computer/som_two, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/command) -"wIz" = ( -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"wJc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/command_hall) -"wKi" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 6 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"wKl" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/black/corner, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"wKv" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"wKV" = ( -/turf/open/floor/mainship/black{ - dir = 4 - }, -/area/rocinante_base/surface/building/living/prep) -"wLx" = ( -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_e) -"wLM" = ( -/obj/structure/prop/brokenvendor/brokennanomedvendor, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"wMw" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 9 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/bio_lab) -"wOA" = ( -/obj/structure/toilet/alternate{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/north_com) -"wOH" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass{ - dir = 2 - }, -/turf/open/floor/mainship/red/full, -/area/rocinante_base/surface/building/security/command_sec) -"wOR" = ( -/obj/machinery/power/apc, -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/air_storage) -"wPr" = ( -/obj/structure/cargo_container/hd, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"wPE" = ( -/obj/structure/prop/brokenvendor/surplusclothes, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"wPL" = ( -/turf/open/floor/plating/ground/concrete/edge, -/area/rocinante_base/ground/base_s) -"wQt" = ( -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_sw) -"wRc" = ( -/obj/machinery/newscaster, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"wRU" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black{ - dir = 8 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"wSR" = ( -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/laundromat) -"wST" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/blue{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/sec_dorms) -"wSW" = ( -/obj/machinery/power/apc, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"wSY" = ( -/obj/machinery/computer/som, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/research_lab) -"wTi" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_e) -"wTz" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_se) -"wTP" = ( -/obj/machinery/computer3/server/rack, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"wTU" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/rocinante_base/surface/building/cargo/air_storage) -"wTV" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/meeting) -"wTX" = ( -/obj/structure/table/black, -/obj/item/phone, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration) -"wUu" = ( -/obj/structure/prop/mainship/gelida/lightstick, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"wUG" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/mainship/red{ - dir = 9 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"wUR" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"wUX" = ( -/obj/structure/dropship_equipment/cas/weapon/heavygun, -/turf/open/floor/mainship/black{ - dir = 6 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"wVn" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_ne) -"wXl" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_n) -"wYb" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/security/garage_sec) -"wYw" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"wYS" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/meeting) -"wYU" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"wZh" = ( -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/rocinante_base/surface/building/administration) -"wZI" = ( -/obj/machinery/vending/cola, -/turf/open/floor/mainship/sterile/corner, -/area/rocinante_base/surface/building/medical) -"xbb" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/cargo/air_storage) -"xbH" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_sw) -"xbO" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/silver, -/area/rocinante_base/surface/building/administration/command) -"xbX" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 4 - }, -/area/rocinante_base/ground/base_s) -"xcr" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"xcw" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"xdW" = ( -/obj/structure/table/black, -/obj/item/storage/box/donkpockets, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/breakroom) -"xdY" = ( -/obj/structure/barricade/concrete{ - dir = 8 - }, -/obj/structure/barricade/concrete, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_cent) -"xej" = ( -/obj/structure/rack, -/obj/machinery/power/apc, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/west_aux) -"xeM" = ( -/obj/machinery/mech_bay_recharge_port, -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"xfz" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"xfD" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/hub) -"xfG" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"xfV" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red/corner, -/area/rocinante_base/surface/building/living/laundromat) -"xgq" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/complex_hall_e) -"xhc" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 1 - }, -/area/rocinante_base/ground/base_sw) -"xhy" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/research_lab) -"xhz" = ( -/turf/closed/shuttle/dropship_regular/top_corner, -/area/rocinante_base/ground/base_sw) -"xhR" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 10 - }, -/turf/open/floor/mainship/som/se, -/area/rocinante_base/surface/building/science/tele_lab) -"xif" = ( -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_n) -"xin" = ( -/obj/effect/turf_decal/warning_stripes/box, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/prep) -"xiA" = ( -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/underground/caveW) -"xiO" = ( -/obj/machinery/door/airlock/mainship/security/glass/free_access, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/brig) -"xiT" = ( -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_e) -"xiU" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/southern_aux) -"xjd" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/central_com) -"xjr" = ( -/obj/machinery/status_display, -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/administration) -"xjZ" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/breakroom) -"xku" = ( -/obj/structure/prop/mainship/cannon_cable_connector, -/obj/machinery/light, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"xkF" = ( -/turf/open/floor/mainship/sterile/purple/side{ - dir = 6 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"xkR" = ( -/obj/structure/prop/mainship/gelida/rails{ - dir = 4 - }, -/obj/structure/prop/mainship/gelida/railbumper{ - dir = 8 - }, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/base_w) -"xkW" = ( -/obj/structure/rack, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/west_aux) -"xli" = ( -/obj/machinery/door/airlock/glass, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"xlj" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/ground/base_cent) -"xlm" = ( -/turf/open/floor/mainship/blue{ - dir = 9 - }, -/area/rocinante_base/surface/building/administration) -"xmb" = ( -/obj/machinery/prop/computer/rdservercontrol, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/crystal_lab) -"xmx" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"xmB" = ( -/obj/structure/cargo_container/gorg, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_cent) -"xmE" = ( -/obj/structure/prop/brokenvendor/surplusarmor, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"xmW" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"xmY" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/structure/monorail{ - dir = 9 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"xnl" = ( -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/hub) -"xnu" = ( -/turf/open/floor/mainship/red/corner, -/area/rocinante_base/surface/building/command_hall) -"xnI" = ( -/obj/structure/table/reinforced, -/obj/item/newspaper, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/living/bar) -"xot" = ( -/obj/structure/prop/mainship/research/mechafab, -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"xox" = ( -/obj/machinery/computer/som_two{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/air_com) -"xoJ" = ( -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/living/bar) -"xpB" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"xpG" = ( -/obj/structure/rock/variable/stalagmite, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveS) -"xpP" = ( -/obj/structure/somcas/seven, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"xqL" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 5 - }, -/area/rocinante_base/surface/landing/landing_pad_one) -"xqP" = ( -/obj/structure/cable, -/obj/machinery/light, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"xra" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/surface/building/lz_control) -"xrD" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"xrE" = ( -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"xsd" = ( -/obj/machinery/processor, -/obj/machinery/light, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/break_room) -"xsu" = ( -/obj/machinery/door/airlock/multi_tile/mainship/blackgeneric/glass{ - dir = 2 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/train_station) -"xsy" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/structure/cable, -/turf/open/floor/mainship/blue{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration/central_com) -"xsC" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"xsR" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/tele_lab) -"xsU" = ( -/obj/structure/largecrate, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"xtj" = ( -/obj/machinery/door/poddoor/mainship/indestructible{ - dir = 2 - }, -/obj/structure/cable, -/turf/closed/wall/indestructible, -/area/rocinante_base/surface/building/tram_line) -"xtl" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/command_hall) -"xtZ" = ( -/obj/machinery/door/airlock/mainship/security, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"xux" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/laundromat) -"xuI" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/emails, -/obj/structure/window, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"xuV" = ( -/obj/effect/turf_decal/warning_stripes/nscenter, -/obj/effect/turf_decal/warning_stripes, -/turf/open/floor/wood, -/area/rocinante_base/surface/building/tramstation/tramstation_nw) -"xva" = ( -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/science/break_room) -"xvs" = ( -/obj/structure/monorail{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"xwx" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/rocinante_base/surface/building/living/prep) -"xwV" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mainship/silver{ - dir = 6 - }, -/area/rocinante_base/surface/building/administration/command) -"xxc" = ( -/obj/machinery/door/airlock/mainship/generic/glass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"xxJ" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/complex_hall_e) -"xyk" = ( -/obj/machinery/computer/som_two, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"xym" = ( -/turf/open/floor/mainship/blue/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/security/hub) -"xyO" = ( -/obj/structure/stairs/seamless{ - dir = 4 - }, -/obj/structure/platform/metalplatform, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"xza" = ( -/obj/item/weapon/gun/energy/lasgun/lasrifle/volkite/cope/predeployed, -/obj/structure/barricade/concrete{ - dir = 8 - }, -/obj/structure/barricade/concrete, -/turf/open/floor/mainship/mono, -/area/rocinante_base/ground/base_cent) -"xzc" = ( -/obj/machinery/door/airlock/multi_tile/mainship/personalglass, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/central_com) -"xzp" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"xzv" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/break_room) -"xAf" = ( -/turf/open/floor/mainship/red{ - dir = 1 - }, -/area/rocinante_base/surface/building/science/break_room) -"xAr" = ( -/obj/structure/cargo_container/horizontal{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"xAN" = ( -/turf/open/floor/plating, -/area/rocinante_base/ground/underground/caveCent) -"xBf" = ( -/turf/open/floor/plating/dmg2, -/area/rocinante_base/surface/building/mining_construction) -"xBu" = ( -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"xBJ" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/office_n) -"xBR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/medical_sec) -"xCj" = ( -/obj/structure/table/reinforced, -/obj/machinery/science/analyser, -/turf/open/floor/mainship/sterile/dark, -/area/rocinante_base/surface/building/science/bio_lab) -"xCx" = ( -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/living/barracks) -"xCR" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/obj/structure/platform/metalplatform, -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"xCT" = ( -/obj/structure/somcas/two{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/warnplate{ - dir = 8 - }, -/area/rocinante_base/ground/base_s) -"xCY" = ( -/obj/structure/cable, -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tram_line) -"xDc" = ( -/turf/open/floor/mainship/black/corner{ - dir = 8 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"xDn" = ( -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/command_hall) -"xDz" = ( -/obj/structure/largecrate, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"xDC" = ( -/obj/structure/cable, -/turf/open/floor/plating/ground/desertdam/asphalt, -/area/rocinante_base/ground/underground/caveW) -"xEm" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 5 - }, -/area/rocinante_base/ground/base_nw) -"xEn" = ( -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/garage_sec) -"xEN" = ( -/obj/structure/somcas/five{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"xGy" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"xHU" = ( -/obj/structure/cable, -/turf/open/floor/mainship/black/corner{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"xIS" = ( -/obj/structure/window/framed/mainship/gray, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/science/tele_lab) -"xJb" = ( -/obj/machinery/computer3/server, -/obj/structure/table/black, -/obj/structure/platform/metalplatform{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"xJE" = ( -/obj/machinery/computer/nuke_disk_generator/green, -/turf/open/floor/mainship/sterile/side, -/area/rocinante_base/surface/building/medical) -"xKs" = ( -/obj/structure/sink/bathroom, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"xKR" = ( -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"xLq" = ( -/obj/machinery/light{ - light_color = "#da2f1b" - }, -/turf/open/floor/plating/ground/concrete/lines, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"xLR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mainship/silver{ - dir = 10 - }, -/area/rocinante_base/surface/building/administration/command) -"xMn" = ( -/obj/structure/bed/chair{ - desc = "This tiny folding chair looks like a torture device in comparison to the chair next to it."; - dir = 4 - }, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"xMx" = ( -/obj/machinery/door/airlock/multi_tile/mainship/marine, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/barracks) -"xMO" = ( -/obj/structure/cargo_container/horizontal, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"xMS" = ( -/obj/structure/girder/displaced, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_w) -"xNm" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"xNq" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 8 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"xNv" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/train_station) -"xNG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/red{ - dir = 10 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"xPe" = ( -/obj/structure/table/black, -/obj/item/clothing/suit/techpriest, -/obj/item/clothing/shoes/techpriest, -/obj/item/clothing/gloves/techpriest, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/chapel_ne) -"xPE" = ( -/turf/closed/wall/mainship/gray, -/area/rocinante_base/ground/southern_containers) -"xQd" = ( -/obj/machinery/computer/som{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/north_com) -"xQC" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/train_station) -"xRy" = ( -/obj/structure/table/black, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/administration/south_com) -"xRZ" = ( -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/firing_range) -"xSc" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/mainship/red, -/area/rocinante_base/surface/building/administration) -"xTi" = ( -/obj/structure/monorail{ - dir = 4 - }, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/southern_containers) -"xTl" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 9 - }, -/turf/open/floor/plating/ground/dirt_alt, -/area/rocinante_base/ground/base_n) -"xTt" = ( -/turf/open/floor/plating/icefloor/warnplate{ - dir = 1 - }, -/area/rocinante_base/surface/landing/landing_pad_two) -"xTA" = ( -/obj/machinery/door/airlock/mainship/generic{ - dir = 1 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"xTB" = ( -/obj/machinery/door/airlock/mainship/security, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/surface/building/train_station) -"xTN" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_nw) -"xVy" = ( -/obj/effect/turf_decal/warning_stripes/thin{ - dir = 4 - }, -/obj/effect/turf_decal/warning_stripes/thin, -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/open/floor/plating/ground/concrete, -/area/rocinante_base/ground/base_s) -"xWK" = ( -/obj/structure/cable, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/living/prep) -"xYi" = ( -/obj/structure/bed/chair/sofa/corsat/left, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"xYl" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 5 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"xYp" = ( -/obj/effect/turf_decal/warning_stripes/box/arrow{ - dir = 1 - }, -/turf/open/floor/plating/ground/concrete/lines{ - dir = 8 - }, -/area/rocinante_base/ground/base_se) -"xYu" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/administration) -"xYM" = ( -/turf/open/floor/plating/ground/concrete/lines{ - dir = 10 - }, -/area/rocinante_base/surface/landing/landing_pad_two_external) -"xYT" = ( -/obj/machinery/power/apc, -/obj/structure/cable, -/turf/open/floor/mainship/black/full, -/area/rocinante_base/surface/building/living/bar) -"yak" = ( -/obj/structure/barricade/concrete{ - dir = 8 - }, -/turf/open/floor/plating/ground/mars/random/cave/darker, -/area/rocinante_base/ground/underground/caveS) -"yau" = ( -/obj/machinery/mech_bay_recharge_port, -/turf/open/floor/mainship/black, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"ybf" = ( -/turf/open/floor/mainship/red{ - dir = 6 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"ybh" = ( -/obj/machinery/computer/som_two{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/purple/side{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"ybm" = ( -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/living/prep) -"ybt" = ( -/turf/open/floor/mainship/sterile/purple/corner{ - dir = 4 - }, -/area/rocinante_base/surface/building/science/tele_lab) -"ybw" = ( -/obj/structure/table/black, -/obj/machinery/computer/emails, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/silver{ - dir = 1 - }, -/area/rocinante_base/surface/building/administration/command) -"ybz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/white/full, -/area/rocinante_base/surface/building/lz_control) -"ybL" = ( -/turf/open/floor/mainship/blue{ - dir = 5 - }, -/area/rocinante_base/surface/building/security/hub) -"ycn" = ( -/obj/structure/prop/mainship/cannon_cable_connector, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/cargo/southern_aux) -"ycO" = ( -/obj/structure/flora/grass/tallgrass/tallgrasscorner{ - color = "#5b7857"; - dir = 6 - }, -/obj/structure/sign/kiddieplaque, -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/ground/base_n) -"ydA" = ( -/turf/open/ground/grass/weedable/patch, -/area/rocinante_base/surface/building/science/bio_lab) -"yeQ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/train_station) -"yeW" = ( -/obj/structure/cable, -/turf/open/floor/mainship/red{ - dir = 4 - }, -/area/rocinante_base/surface/building/security/medical_sec) -"yff" = ( -/turf/open/floor/mainship/blue{ - dir = 8 - }, -/area/rocinante_base/surface/building/administration/central_com) -"ygu" = ( -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/engineering) -"ygZ" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/plating/icefloor/warnplate{ - dir = 8 - }, -/area/rocinante_base/ground/base_s) -"yhb" = ( -/turf/open/floor/plating/ground/concrete/edge{ - dir = 8 - }, -/area/rocinante_base/surface/landing/landing_pad_one_external) -"yhc" = ( -/turf/open/floor/plating/ground/snow, -/area/rocinante_base/ground/base_nw) -"yhP" = ( -/turf/open/floor/mainship/black{ - dir = 1 - }, -/area/rocinante_base/surface/building/cargo/air_storage) -"yhR" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mainship/black{ - dir = 10 - }, -/area/rocinante_base/surface/building/living/po_quarters) -"yie" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mainship/blue, -/area/rocinante_base/surface/building/administration/central_com) -"yiT" = ( -/obj/item/weapon/gun/energy/lasgun/lasrifle/volkite/cope/predeployed, -/obj/structure/barricade/concrete{ - dir = 1 - }, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/west_sec) -"yja" = ( -/obj/structure/prop/mainship/sensor_computer3, -/obj/structure/platform/metalplatform{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"yjz" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/mainship/mono, -/area/rocinante_base/surface/building/security/hub) -"yjP" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mainship/blue{ - dir = 6 - }, -/area/rocinante_base/surface/building/living/barracks) -"yjS" = ( -/obj/structure/toilet/alternate{ - dir = 8 - }, -/turf/open/floor/mainship/sterile/white, -/area/rocinante_base/surface/building/administration/breakroom) -"ylm" = ( -/obj/structure/desertdam/decals/road/line{ - dir = 4 - }, -/turf/open/floor/mainship/black{ - dir = 9 - }, -/area/rocinante_base/surface/building/cargo/vehicle_garage) -"ylA" = ( -/turf/open/floor/mainship/red{ - dir = 8 - }, -/area/rocinante_base/surface/building/tramstation/tramstation_e) -"ylU" = ( -/turf/open/floor/plating/plating_catwalk, -/area/rocinante_base/surface/building/tramstation/tramstation_cent) -"ylX" = ( -/turf/closed/mineral/smooth/snowrock, -/area/rocinante_base/ground/underground/caveN) - -(1,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -tbH -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -cDL -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -tbH -nZQ -nZQ -nZQ -nZQ -nZQ -nZQ -nZQ -nZQ -nZQ -nZQ -nZQ -nZQ -nZQ -"} -(2,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -fIa -fIa -fIa -pjR -pjR -pjR -vpt -vpt -vpt -vpt -vpt -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -nZQ -"} -(3,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -fIa -rgk -fIa -pjR -pjR -pjR -vpt -vpt -vpt -vpt -vpt -vpt -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -dDx -xBu -xBu -xBu -eSp -xBu -xBu -xBu -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -nZQ -"} -(4,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -fIa -fIa -fIa -pjR -pjR -pjR -vpt -vpt -vpt -vpt -vpt -vpt -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -uZR -sHT -sHT -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -gLg -gLg -gLg -gLg -hkO -hkO -hkO -hkO -hkO -mFk -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -pWY -xYM -hkO -gLg -gLg -gLg -oWD -oWD -oWD -wme -wme -wme -oWD -oWD -oWD -oWD -oWD -oWD -nZQ -"} -(5,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -pjR -pjR -pjR -adO -vpt -vpt -vpt -vpt -vpt -vpt -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -vpt -vpt -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -duz -xBu -xBu -xBu -uZR -sHT -sHT -sHT -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -gLg -hkO -hkO -hkO -hkO -hkO -xmx -hkO -hkO -nsK -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -tqA -rfF -rfF -rfF -iuP -hkO -hkO -gLg -gLg -oWD -oWD -mEe -wme -wme -wme -wme -oWD -oWD -oWD -oWD -oWD -nZQ -"} -(6,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -pjR -pjR -vpt -vpt -vpt -vpt -vpt -vpt -xTN -vpt -vpt -vpt -vpt -pjR -pjR -pjR -pjR -yhc -yhc -yhc -trs -trs -vpt -vpt -adO -vpt -vpt -vpt -pjR -vpt -vpt -xBu -pLo -xBu -dDx -dDx -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -pLo -uZR -sHT -dDx -dDx -dDx -dDx -hnp -sHT -sHT -sHT -sHT -uZR -sHT -sHT -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -gLg -kYd -hkO -hkO -hkO -hkO -hkO -hkO -hkO -nsK -rfF -rfF -wHX -gtL -gtL -gtL -gtL -gtL -gtL -dJI -gtL -gtL -qkG -gtL -gtL -gtL -gtL -gtL -gtL -gtL -gtL -gtL -wAB -rfF -rfF -tqA -rfF -rfF -rfF -iuP -hkO -hkO -hkO -gLg -oWD -oWD -wme -wme -wme -wme -wme -wme -wme -wme -oWD -oWD -nZQ -"} -(7,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -pjR -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -pjR -pjR -pjR -pjR -yhc -trs -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -xBu -xBu -dDx -dDx -dDx -dDx -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -uZR -uZR -sHT -sHT -dDx -dDx -uZR -uZR -uZR -uZR -uZR -xBu -xBu -sHT -sHT -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -nsK -rfF -rfF -xTt -erF -amw -sWJ -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -amw -erF -nlv -rfF -rfF -tqA -rfF -rfF -rfF -iuP -hkO -hkO -hkO -hkO -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -oWD -oWD -nZQ -"} -(8,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -vpt -vpt -vpt -vpt -vpt -pQj -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -prD -prD -qzc -dDx -dDx -fHj -fHj -fHj -fHj -fHj -hhI -uZR -uZR -xBu -xBu -xBu -lRF -lRF -xBu -uZR -xBu -pLo -xBu -uZR -xBu -xBu -sHT -kPW -sHT -xBu -xBu -xBu -xBu -xBu -pLo -xBu -xBu -xBu -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -nsK -rfF -rfF -xTt -erF -erF -pBb -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -nlv -rfF -rfF -tqA -rfF -rfF -rfF -iuP -hkO -hkO -hkO -hkO -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -oWD -nZQ -"} -(9,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -vpt -vpt -vpt -vpt -vpt -juk -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -jMK -jMK -tCV -fHj -fHj -fHj -xBf -dfT -dfT -fHj -fHj -fHj -sHT -uZR -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -sHT -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -nsK -rfF -rfF -xTt -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -nlv -rfF -rfF -tqA -rfF -rfF -rfF -iuP -hkO -hkO -hkO -hkO -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -oWD -nZQ -"} -(10,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -vpt -vpt -vpt -vpt -vpt -juk -bwq -qyE -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -phj -jMK -tCV -fHj -dfT -dfT -dfT -dfT -dfT -ilB -dfT -fHj -sHT -uZR -sHT -sHT -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -hkO -hkO -hkO -hkO -hkO -iuc -hkO -hkO -hkO -nsK -rfF -rfF -xTt -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -nlv -rfF -rfF -tqA -rfF -rfF -rfF -iuP -hkO -hkO -hkO -hkO -wme -wme -wme -rwK -wme -wme -wme -mEe -wme -wme -wme -oWD -nZQ -"} -(11,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -vpt -vpt -vpt -vpt -vpt -juk -bwq -eIN -vpt -xTN -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -ucc -ucc -ctV -ucc -ucc -pjR -trs -vpt -vpt -vpt -vpt -vpt -trs -pCj -jMK -tCV -fHj -fHj -fHj -dfT -dfT -dfT -dfT -dfT -fHj -fHj -fHj -sHT -nzc -odQ -nzc -nzc -odQ -wUu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -duz -xBu -xBu -xBu -xBu -xBu -xBu -hkO -hkO -hkO -hkO -hkO -hkO -hkO -gLg -hkO -nsK -rfF -rfF -xTt -erF -erF -erF -erF -erF -erF -erF -erF -erF -suk -erF -erF -erF -erF -erF -erF -erF -erF -erF -nlv -rfF -rfF -tqA -rfF -vYI -rfF -iuP -hkO -hkO -hkO -hkO -wme -wme -wme -wme -wme -wme -oWD -oWD -oWD -wme -wme -oWD -nZQ -"} -(12,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -vpt -vpt -vpt -vpt -vpt -juk -bwq -eIN -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -ucc -cBH -ctV -rYJ -ucc -pjR -trs -trs -trs -vpt -vpt -xTN -vpt -pCj -jMK -tCV -fHj -fUB -dfT -dfT -dfT -dfT -dfT -dfT -fUB -fUB -fHj -sHT -nzc -fdH -jMK -cnl -nzc -wbz -xBu -dDx -dDx -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -hkO -hkO -hkO -xmx -hkO -hkO -gLg -gLg -gLg -nsK -rfF -rfF -xTt -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -nlv -rfF -rfF -tqA -rfF -rfF -rfF -iuP -hkO -hkO -hkO -hkO -wme -wme -wme -wme -wme -oWD -oWD -oWD -oWD -wme -wme -oWD -nZQ -"} -(13,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -vpt -vpt -vpt -vpt -vpt -juk -bwq -eIN -vpt -vpt -vpt -pjR -pjR -pjR -vpt -vpt -vpt -vpt -vpt -ucc -cBH -ctV -ctV -ucc -pjR -pjR -pjR -pjR -vpt -vpt -vpt -vpt -pCj -jMK -tCV -fHj -fHj -fHj -fHj -dfT -dfT -dfT -dfT -dfT -dfT -dfT -sHT -nzc -jMK -eRe -jMK -nzc -che -xBu -dDx -dDx -dDx -dDx -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -hkO -hkO -hkO -hkO -hkO -gLg -gLg -gLg -gLg -nsK -rfF -rfF -xTt -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -nlv -rfF -rfF -tBn -qaS -qaS -qaS -obg -xmx -hkO -gLg -gLg -oWD -oWD -wme -wme -wme -oWD -oWD -oWD -oWD -wme -wme -oWD -nZQ -"} -(14,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -vpt -vpt -vpt -vpt -vpt -juk -bwq -eIN -vpt -vpt -vpt -pjR -pjR -pjR -pjR -vpt -vpt -vpt -vpt -ucc -ctV -cBH -ctV -ucc -pjR -pjR -pjR -pjR -vpt -vpt -vpt -vpt -pCj -jMK -tCV -sHT -dDx -dDx -fHj -fHj -fHj -dfT -dfT -dfT -dfT -dfT -nzc -nzc -aFC -jMK -qeM -nzc -sHT -dDx -dDx -dDx -dDx -dDx -xBu -xBu -xBu -xBu -xBu -xBu -xBu -uZR -uZR -xBu -dDx -dDx -gLg -hkO -hkO -hkO -hkO -gLg -gLg -gLg -gLg -nsK -rfF -rfF -xTt -erF -erF -pBb -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -nlv -rfF -rfF -iuP -hkO -hkO -hkO -hkO -hkO -hkO -gLg -gLg -oWD -oWD -wme -wme -wme -oWD -oWD -oWD -oWD -wme -wme -oWD -nZQ -"} -(15,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -vpt -vpt -vpt -vpt -vpt -juk -bwq -eIN -vpt -vpt -adO -pjR -pjR -pjR -pjR -pjR -vpt -vpt -vpt -ucc -ltC -ctV -ucc -ucc -pjR -pjR -pjR -pjR -vpt -vpt -adO -yhc -pCj -jMK -tCV -uZR -uZR -xBu -xBu -bqF -fHj -fUB -dfT -dfT -ilB -fHj -nzc -nzc -nzc -nzc -nzc -sHT -fIs -dDx -dDx -dDx -dDx -dDx -uZR -xBu -pLo -xBu -xBu -xBu -xBu -uZR -uZR -dDx -dDx -dDx -gLg -hkO -hkO -hkO -hkO -gLg -gLg -gLg -gLg -nsK -rfF -rfF -xTt -erF -amw -sWJ -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -erF -amw -erF -nlv -rfF -rfF -iuP -hkO -hkO -hkO -hkO -hkO -hkO -gLg -gLg -oWD -oWD -wme -wme -wme -wme -oWD -oWD -oWD -wme -wme -oWD -nZQ -"} -(16,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -vpt -vpt -vpt -vpt -vpt -juk -bwq -eIN -vpt -vpt -vpt -pjR -pjR -pjR -pjR -pjR -vpt -vpt -vpt -ucc -ucc -ucc -ucc -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -yhc -pCj -jMK -tCV -uZR -uZR -xBu -xBu -bqF -fHj -fUB -dfT -fHj -fHj -fHj -nzc -xkR -xkR -nzc -sHT -fIs -fIs -dDx -dDx -dDx -dDx -dDx -uZR -xBu -xBu -xBu -xBu -duz -xBu -hhI -dDx -dDx -dDx -dDx -gLg -hkO -hkO -hkO -hkO -gLg -gLg -gLg -gLg -nsK -rfF -rfF -grM -pCS -pCS -pCS -pCS -pCS -pCS -pCS -pCS -pCS -uKl -pCS -pCS -pCS -pCS -pCS -pCS -pCS -pCS -pCS -iNk -rfF -rfF -iuP -hkO -hkO -hkO -hkO -hkO -hkO -gLg -gLg -gLg -oWD -wme -wme -wme -wme -oWD -oWD -oWD -wme -wme -oWD -nZQ -"} -(17,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -vpt -vpt -vpt -xTN -juk -bwq -eIN -vpt -vpt -vpt -vpt -pjR -pjR -pjR -pjR -vpt -xTN -vpt -vpt -pjR -trs -yhc -yhc -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pCj -jMK -faf -prD -prD -qzc -jMK -jMK -rcE -dfT -dfT -nzc -fdH -jMK -cnl -qZH -iwI -nzc -oOb -sHT -che -xBu -dDx -dDx -dDx -dDx -uZR -xBu -xBu -xBu -xBu -xBu -sHT -sHT -dDx -dDx -dDx -dDx -gLg -mFk -pWY -pWY -pWY -pWY -pWY -pWY -pWY -mSU -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -eqD -cnH -pWY -pWY -pWY -pWY -pWY -pWY -pWY -xYM -gLg -oWD -oWD -bdd -wme -wme -wme -oWD -wme -wme -wme -oWD -nZQ -"} -(18,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -pjR -pjR -vpt -vpt -juk -bwq -eIN -vpt -vpt -vpt -vpt -vpt -pjR -pjR -pjR -vpt -vpt -vpt -vpt -vpt -trs -trs -trs -yhc -yhc -trs -trs -pjR -pjR -pjR -yhc -pCj -jMK -rbV -jMK -jMK -tCV -jMK -jMK -rcE -dfT -dfT -nzc -jMK -eRe -jMK -nzc -fGa -nzc -nzc -nzc -gNV -pLo -xBu -dDx -dDx -dDx -uZR -uZR -uZR -xBu -xBu -xBu -sHT -sHT -dDx -dDx -dDx -dDx -gLg -nsK -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -rfF -iuP -gLg -oWD -oWD -wme -wme -wme -wme -wme -wme -wme -wme -oWD -nZQ -"} -(19,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -pjR -pjR -pjR -pjR -juk -bwq -eIN -ucc -vpt -vpt -vpt -vpt -pjR -pjR -pjR -vpt -vpt -vpt -vpt -vpt -vpt -vpt -trs -trs -trs -trs -vpt -vpt -vpt -vpt -vpt -pCj -jMK -rbV -jMK -jMK -tCV -jMK -jMK -rcE -dfT -fUB -nzc -aFC -jMK -qeM -nzc -fGa -fdH -jMK -cnl -gNV -xBu -xBu -xBu -dDx -dDx -uZR -uZR -uZR -xBu -xBu -sHT -sHT -iSJ -dDx -dDx -dDx -dDx -gLg -nsK -rfF -tBn -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -qaS -lFY -rfF -iuP -gLg -oWD -oWD -oWD -mEe -wme -wme -wme -wme -wme -wme -oWD -nZQ -"} -(20,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -pjR -pjR -pjR -pjR -juk -bwq -eIN -xra -vnA -vnA -xra -xra -pjR -pjR -vpt -vpt -vpt -vpt -vpt -vpt -vpt -xTN -vpt -vpt -vpt -xTN -vpt -vpt -vpt -vpt -vpt -pCj -jMK -rbV -jMK -jMK -tCV -xBu -jNh -fHj -dfT -dfT -fHj -nzc -nzc -nzc -nzc -fGa -jMK -fvr -jMK -nzc -wUu -xBu -xBu -dDx -dDx -dDx -uZR -uZR -xBu -xBu -sHT -sHT -sHT -sHT -dDx -dDx -dDx -gLg -nsK -rfF -iuP -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -xmx -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -nsK -rfF -iuP -gLg -oWD -oWD -oWD -wme -wme -wme -rwK -wme -mEe -wme -oWD -nZQ -"} -(21,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -pjR -pjR -pjR -pjR -juk -bwq -eIN -xra -afV -hxk -gHH -xra -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -yhc -pCj -jMK -rbV -jMK -jMK -tCV -dDx -dDx -fHj -dfT -dfT -fHj -nzc -sHT -sHT -nzc -fGa -aFC -jMK -qeM -nzc -xBu -xBu -xBu -dDx -dDx -dDx -uZR -uZR -xBu -xBu -sHT -sHT -sHT -sHT -dDx -dDx -dDx -gLg -nsK -rfF -iuP -hkO -hkO -hkO -xmx -hkO -hkO -hkO -hkO -iuc -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -phK -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -hkO -gLg -gLg -gLg -hkO -hkO -xmx -hkO -nsK -rfF -iuP -gLg -oWD -oWD -oWD -wme -wme -wme -wme -wme -oWD -oWD -oWD -nZQ -"} -(22,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -pjR -pjR -pjR -pjR -juk -bwq -eIN -xra -oyc -ybz -dVL -xra -vpt -vpt -vpt -vpt -vpt -pjR -pjR -pjR -vpt -vpt -vpt -vpt -pjR -pjR -pjR -pjR -yhc -yhc -yhc -hue -uPl -uPl -uPl -uPl -jLC -dDx -fHj -fHj -dfT -xBf -fHj -fHj -fHj -pLo -sHT -qZH -tgA -tgA -dBv -dBv -tgA -vAp -xBu -dDx -dDx -dDx -uZR -uZR -xBu -xBu -sHT -sHT -sHT -sHT -dDx -dDx -dDx -gLg -nsK -rfF -iuP -hkO -hkO -hkO -hkO -hkO -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -xmx -hkO -hkO -hkO -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -hkO -hkO -hkO -nsK -rfF -iuP -gLg -oWD -bOP -bOP -bOP -bOP -bOP -wme -wme -oWD -oWD -oWD -nZQ -"} -(23,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -pjR -pjR -pjR -pjR -juk -bwq -eIN -oKt -bnV -sUk -mjz -xra -vpt -vpt -vpt -vpt -vpt -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -dDx -dDx -sHT -uZR -uZR -xBu -dDx -fHj -dfT -dfT -dfT -dfT -fUB -fHj -dDx -iSJ -sHT -sHT -uZR -uZR -nzc -nzc -fGa -xBu -xBu -dDx -dDx -dDx -uZR -eSp -xBu -sHT -iSJ -sHT -sHT -dDx -dDx -dDx -gLg -nsK -rfF -iuP -hkO -hkO -hkO -hkO -hkO -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -gLg -hkO -hkO -nsK -rfF -iuP -gLg -oWD -bOP -eHe -eHe -oFF -bOP -wme -wme -oWD -oWD -oWD -nZQ -"} -(24,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -pjR -pjR -pjR -pjR -juk -jQE -eOM -mSK -aol -atb -muD -xra -vpt -vpt -vpt -vpt -vpt -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -dDx -dDx -sHT -sHT -uZR -xBu -dDx -fHj -dfT -dfT -dfT -fUB -fUB -fHj -dDx -dDx -dDx -dDx -dDx -uZR -nzc -nzc -fGa -xBu -xBu -xBu -dDx -dDx -uZR -xBu -xBu -sHT -sHT -sHT -sHT -dDx -dDx -dDx -gLg -nsK -rfF -iuP -hkO -hkO -hkO -gLg -gLg -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -wme -wme -xhc -ifD -jQw -oWD -oWD -bOP -eHe -bTG -bTG -bOP -wme -wme -oWD -oWD -oWD -nZQ -"} -(25,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -eRg -eRg -eRg -eRg -eRg -eRg -rxV -rzM -qkw -xra -svF -fEm -mjz -xra -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -dDx -dDx -sHT -sHT -uZR -xBu -dDx -fHj -ilB -dfT -dfT -dfT -fUB -fHj -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -fGa -clz -xBu -xBu -xBu -xBu -xBu -xBu -xBu -uZR -sHT -sHT -dDx -dDx -dDx -dDx -gLg -nsK -rfF -iuP -hkO -hkO -hkO -gLg -gLg -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -wme -wme -xhc -ifD -jQw -oWD -oWD -bOP -oky -bTG -bTG -bOP -wme -wme -oWD -oWD -oWD -nZQ -"} -(26,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -eRg -eRg -eRg -eRg -jul -jul -rxV -rzM -qkw -xra -oRU -eIR -gQc -xra -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -dDx -dDx -sHT -sHT -uZR -xBu -dDx -fHj -dfT -dfT -dfT -dfT -dfT -fHj -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -qZH -mxh -tgA -qOE -nzc -xBu -xBu -xBu -xBu -uZR -sHT -sHT -dDx -dDx -dDx -dDx -gLg -nsK -rfF -iuP -hkO -hkO -gLg -gLg -gLg -oWD -oWD -oWD -oWD -wme -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -ikm -ikm -ikm -ikm -oWD -oWD -oWD -wme -wme -wme -xhc -ifD -jQw -oWD -oWD -bOP -bTG -bTG -bTG -bOP -bdd -wme -oWD -oWD -oWD -nZQ -"} -(27,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -jul -jul -jul -jul -jul -jul -rxV -rzM -qkw -xra -xra -xra -xra -xra -jul -jul -jul -jul -jul -jul -jul -jul -jul -jul -jul -jul -jul -jul -eRg -eRg -eRg -eRg -eRg -dDx -dDx -dDx -sHT -uZR -xBu -xBu -sdz -dfT -dfT -dfT -sdz -dfT -fHj -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -qZH -tgA -qOE -nzc -xBu -xBu -xBu -xBu -xBu -sHT -dDx -dDx -dDx -dDx -dDx -gLg -nsK -rfF -iuP -xmx -hkO -gLg -gLg -gLg -oWD -oWD -oWD -wme -wme -wme -wme -wme -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -ikm -ikm -ikm -wme -wme -wme -wme -wme -wme -wme -xhc -ifD -jQw -oWD -oWD -bOP -bTG -bTG -bTG -bOP -wme -wme -oWD -oWD -oWD -nZQ -"} -(28,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -jul -pzK -jul -jul -jul -jul -rxV -rzM -qkw -jul -jul -jul -jul -jul -jul -jul -jul -pzK -jul -jul -jul -jFG -jul -jul -pzK -jul -jul -jul -jul -jul -eRg -eRg -eRg -dDx -dDx -dDx -uZR -nDM -xBu -xBu -dfT -xBf -ilB -fHj -fHj -fHj -fHj -xBu -xBu -xBu -xBu -dDx -dDx -dDx -dDx -dDx -clz -nzc -nzc -odQ -xBu -xBu -xBu -xBu -xBu -xBu -dDx -dDx -dDx -dDx -dDx -dDx -pCj -jMK -tCV -xBu -xBu -dDx -dDx -dDx -oWD -oWD -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -ikm -ikm -ikm -oWD -oWD -oWD -oWD -oWD -oWD -ikm -ikm -ikm -wme -wme -rwK -wme -mEe -wme -wme -wme -xhc -ifD -jQw -oWD -oWD -bOP -bOP -bOP -bTG -bOP -qJz -qJz -bOP -oWD -oWD -nZQ -"} -(29,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -bUE -cmq -cmq -cmq -cmq -cmq -pXu -rzM -yhb -cmq -cmq -cmq -cmq -cmq -cmq -cmq -cmq -cmq -cmq -cmq -cmq -cmq -cmq -cmq -cmq -cmq -cmq -cmq -cmq -cmq -suY -eRg -eRg -dDx -dDx -dDx -uZR -xBu -xBu -xBu -fHj -fHj -fHj -fHj -xBu -xBu -xBu -xBu -xMn -xBu -xBu -xBu -xBu -dDx -jMK -prD -prD -prD -qzc -xBu -xBu -xBu -xBu -xBu -xBu -dDx -dDx -dDx -dDx -dDx -dDx -dDx -pCj -jMK -tCV -xBu -xBu -dDx -dDx -dDx -oWD -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -ikm -ikm -ikm -oWD -oWD -oWD -oWD -oWD -oWD -ikm -ikm -ikm -wme -wme -wme -wme -wme -wme -wme -wme -xhc -ifD -jQw -oWD -oWD -oWD -bOP -bTG -bTG -bTG -oky -bTG -bOP -bOP -oWD -nZQ -"} -(30,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -rxV -vJY -vJY -vJY -vJY -vJY -vJY -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -jns -vJY -mYm -vJY -qkw -eRg -eRg -dDx -dDx -dDx -dDx -dDx -eXz -xBu -duz -xBu -xBu -xBu -xBu -uoG -uZR -uZR -uNe -xBu -xBu -xBu -xBu -xBu -jMK -jMK -jMK -jMK -tCV -xBu -xBu -xBu -xBu -xBu -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -pCj -jMK -tCV -xBu -xBu -dDx -dDx -dDx -oWD -wme -wme -rwK -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -ikm -ikm -oWD -oWD -oWD -oWD -oWD -ikm -ikm -wme -wme -wme -wme -wme -wme -wme -wme -wme -xhc -ifD -jQw -wme -oWD -oWD -bOP -bTG -bTG -bTG -bTG -bTG -bTG -bOP -oWD -nZQ -"} -(31,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -rxV -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -rzM -jns -vJY -vJY -vJY -qkw -eRg -eRg -dDx -dDx -dDx -dDx -dDx -xBu -xBu -xBu -xBu -pLo -uoG -uZR -uZR -uZR -jnm -xBu -xBu -xBu -xBu -xBu -xBu -jMK -jMK -jMK -jMK -tCV -duz -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -xBu -pCj -jMK -tCV -xBu -sHT -dDx -dDx -dDx -oWD -wme -wme -wme -wme -oWD -oWD -oWD -mEe -wme -wme -wme -wme -wme -ikm -ikm -ikm -ikm -oWD -oWD -oWD -oWD -ikm -ikm -wme -wme -wme -wme -wme -bdd -wme -wme -xhc -ifD -jQw -wme -wme -oWD -bOP -bTG -oFF -bTG -bTG -oky -eHe -bOP -oWD -nZQ -"} -(32,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -rxV -vJY -vJY -niI -edx -edx -edx -edx -edx -edx -uya -edx -edx -vAH -edx -edx -edx -edx -edx -edx -edx -edx -edx -cnG -vJY -rzM -jns -vJY -vJY -vJY -qkw -eRg -eRg -dDx -dDx -dDx -dDx -dDx -dDx -xBu -xBu -xBu -xBu -xBu -uZR -irk -loj -mWE -mWE -mWE -uZR -xBu -uZR -xBu -jMK -rFp -jMK -jMK -faf -prD -prD -prD -prD -prD -prD -prD -prD -prD -prD -prD -prD -prD -inn -jMK -tCV -xBu -sHT -sHT -dDx -dDx -oWD -wme -wme -wme -wme -oWD -oWD -oWD -ikm -wme -rwK -wme -wme -wme -wme -wme -ikm -ikm -ikm -oWD -oWD -oWD -oWD -xbH -wme -wme -wme -wme -wme -wme -wme -wme -xhc -ifD -jQw -bOP -bOP -bOP -bOP -bOP -bOP -bTG -bTG -bTG -eHe -bOP -oWD -nZQ -"} -(33,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -rxV -vJY -vJY -aJl -bjX -iEn -dfF -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -iEn -bjX -piQ -vJY -rzM -jns -vJY -vJY -vJY -qkw -eRg -eRg -dDx -dDx -dDx -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xMS -uZR -irk -kIo -kIo -kIo -mWE -uZR -uZR -uZR -uZR -rFp -jMK -uZR -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -tCV -xBu -sHT -sHT -xBu -xBu -wme -wme -wme -wme -wme -oWD -oWD -ikm -ikm -wme -wme -wme -wme -wme -wme -wme -vyL -wme -wme -oWD -oWD -oWD -oWD -oWD -nmv -wme -wme -wme -wme -wme -wme -wme -xhc -ifD -jQw -bOP -vSb -bTG -bTG -bTG -fvG -bTG -bTG -eHe -vSb -bOP -oWD -nZQ -"} -(34,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -rxV -vJY -vJY -aJl -bjX -bjX -sma -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -piQ -vJY -rzM -jns -vJY -vJY -vJY -qkw -jul -jul -dDx -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -uZR -qAo -dXj -byc -kIo -mWE -uZR -uZR -uZR -uZR -uZR -jMK -irk -jMK -iVu -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -phj -jMK -tCV -sHT -sHT -xBu -xBu -xBu -wme -bdd -wme -wme -oWD -oWD -oWD -ikm -ikm -wme -wme -wme -wme -wme -wme -wme -vyL -wme -wme -wme -wme -oWD -oWD -wme -wme -wme -wme -wme -wme -oWD -oWD -wme -xhc -ifD -jQw -bOP -bTG -bTG -bTG -eHe -bTG -bTG -bTG -bTG -bTG -bOP -oWD -nZQ -"} -(35,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -rxV -vJY -vJY -aJl -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -piQ -vJY -rzM -jns -vJY -vJY -vJY -qkw -jul -jul -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -uoG -xBu -xMS -mWE -kIo -kIo -mWE -mWE -xBu -uZR -xBu -uZR -uZR -rFp -uZR -jMK -tCV -xBu -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -xBu -xBu -xBu -pCj -jMK -tCV -sHT -sHT -xBu -xBu -xBu -wme -wme -wme -wme -oWD -oWD -oWD -ikm -wme -wme -wme -wme -wme -wme -wme -wme -reS -vUi -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -oWD -oWD -oWD -wme -xhc -ifD -jQw -bOP -gQM -bTG -eHe -eHe -eHe -oky -bTG -bTG -dPb -bOP -oWD -nZQ -"} -(36,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -rxV -vJY -vJY -aJl -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -piQ -vJY -rzM -jns -vJY -vJY -vJY -qkw -jul -jul -xBu -xBu -xBu -xBu -xBu -pLo -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -jMK -jMK -rFp -jMK -tCV -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -xBu -xBu -xBu -xBu -pCj -jMK -tCV -sHT -xBu -xBu -mTp -xBu -wme -wme -wme -wme -oWD -oWD -oWD -ikm -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -reS -vUi -wme -wme -wme -mEe -wme -wme -wme -wme -oWD -oWD -oWD -wme -xhc -ifD -jQw -bOP -mII -bTG -eHe -eHe -eHe -eHe -bTG -bTG -dPb -bOP -oWD -nZQ -"} -(37,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -rxV -vJY -vJY -aJl -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -hBY -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -piQ -vJY -rzM -jns -vJY -vJY -vJY -qkw -jul -jul -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -rdB -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -rFp -jMK -jMK -jMK -tCV -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -xBu -xBu -xBu -sHT -pCj -jMK -tCV -sHT -pLo -xBu -xBu -lYQ -qHy -wme -wme -wme -wme -ikm -ikm -ikm -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -oWD -oWD -wme -xhc -ifD -jQw -bOP -bOP -bTG -bTG -eHe -bTG -bTG -bTG -ecE -dPb -bOP -oWD -nZQ -"} -(38,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -rxV -vJY -vJY -aJl -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -piQ -vJY -rzM -fQo -phC -phC -phC -iHr -jul -jul -xBu -xBu -xBu -xBu -xBu -xBu -xBu -uZR -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -eRu -xBu -xBu -xBu -xBu -jMK -jMK -jMK -jMK -tCV -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -xBu -pLo -sHT -sHT -pCj -jMK -tCV -xBu -xBu -xBu -xBu -xBu -wme -wme -wme -wme -wme -ikm -ikm -wme -wme -bdd -oWD -oWD -wme -wme -bdd -wme -wme -wme -wme -wme -rwK -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -xhc -ifD -jQw -wme -bOP -oky -bTG -bTG -bTG -bTG -bTG -bTG -bTG -bOP -oWD -nZQ -"} -(39,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -rxV -vJY -vJY -aJl -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -piQ -vJY -rzM -qkw -jul -jul -jul -jul -jul -jFG -xBu -dDx -uZR -uZR -xBu -xBu -xBu -wcg -uZR -pLo -wsR -wsR -wsR -wsR -wsR -hoY -bMi -wsR -xBu -xBu -xBu -jMK -jMK -uPl -uPl -jLC -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -xBu -xBu -sHT -cHa -inn -jMK -tCV -xBu -xBu -sHT -sHT -sHT -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -oWD -oWD -wme -ikm -ikm -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -rwK -xhc -ifD -jQw -wme -qJz -bTG -bTG -bTG -bTG -bTG -bTG -bTG -oky -bOP -oWD -nZQ -"} -(40,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -rxV -vJY -vJY -aJl -bjX -bjX -sma -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -piQ -vJY -rzM -qkw -pzK -jul -jul -eRg -eRg -eRg -dDx -dDx -uFb -uFb -uFb -uFb -uFb -xBu -uZR -uZR -xBu -irk -xBu -xBu -xBu -xBu -xBu -xBu -xBu -xBu -wuv -wuv -cFc -wuv -wuv -wuv -wuv -wuv -dDx -dDx -dDx -dDx -dDx -dDx -dDx -phI -mHO -xBu -pCj -jMK -jMK -tCV -xBu -xBu -sHT -dDx -dDx -oWD -wme -wme -wme -wme -wme -wme -wme -wme -wme -oWD -oWD -oWD -ikm -ikm -ikm -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -xhc -ifD -jQw -wme -bTG -bTG -bTG -bTG -oFF -bTG -bTG -eHe -eHe -bOP -oWD -nZQ -"} -(41,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -rxV -vJY -vJY -aJl -bjX -iEn -dfF -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -iEn -bjX -piQ -vJY -rzM -qkw -jul -jul -jul -eRg -eRg -eRg -dDx -dDx -uFb -wiB -wiB -wiB -uFb -qzm -qzm -uFb -uFb -mjE -mQQ -uFb -uFb -uFb -uFb -uFb -uFb -uFb -wuv -xkW -qsh -fAY -qsh -fqX -fqT -wuv -dDx -dDx -dDx -dDx -dDx -dDx -dDx -kPW -mTp -xBu -pCj -jMK -iVu -jLC -huK -huK -huK -dDx -dDx -oWD -oWD -oWD -oWD -wme -wme -wme -wme -wme -wme -oWD -ccb -ccb -kNr -iDw -vMh -vLj -eMI -vjz -cvk -cvk -cvk -cvk -cvk -cvk -cvk -cvk -cvk -cvk -cvk -nOt -pXD -xhc -ifD -jQw -wme -vSb -bTG -bTG -bTG -bTG -bTG -eHe -eHe -bOP -bOP -oWD -nZQ -"} -(42,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -rxV -vJY -vJY -xqL -mgy -mgy -mgy -mgy -mgy -mgy -mgy -mgy -mgy -rsF -mgy -mgy -mgy -mgy -mgy -mgy -mgy -mgy -mgy -eBi -vJY -rzM -qkw -jul -jul -jul -eRg -eRg -eRg -dDx -dDx -uFb -tar -tar -tar -tar -tar -tar -uFb -nMX -trE -emK -bJb -uFb -uIf -uIf -uIf -uIf -pDK -wuv -xkW -qsh -qsh -qsh -kQU -eBe -wuv -dDx -dDx -dDx -dDx -dDx -dDx -sHT -xBu -mTp -xBu -pCj -jMK -tCV -jMK -jMK -jMK -jMK -jMK -jMK -oWD -oWD -oWD -oWD -wme -wme -wme -wme -wme -qIF -wme -ccb -lCY -lCY -lCY -ccb -ifD -ifD -ifD -ifD -cjL -kHb -kHb -kHb -kHb -kHb -kHb -kHb -kHb -kHb -gVl -ete -xhc -ifD -jQw -wme -bOP -bTG -bTG -oky -bTG -vSb -bOP -bOP -bOP -oWD -oWD -nZQ -"} -(43,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -rxV -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -vJY -rhO -yhb -cmq -cmq -suY -eRg -eRg -eRg -dDx -dDx -uFb -vSu -tar -tar -tar -tar -tar -uFb -tHg -wzj -lkm -bJb -uFb -tTK -wzj -wzj -wzj -tTK -wuv -xej -sEB -qsh -kmt -wuv -wuv -wuv -huK -huK -huK -huK -huK -xBu -xBu -xBu -xBu -xBu -pCj -jMK -tCV -jMK -aTf -bYc -eyH -jMK -jMK -oWD -oWD -oWD -oWD -oWD -wme -rwK -wme -wme -wme -wme -ccb -lCY -lCY -lCY -lCY -ifD -ifD -ifD -ifD -ujm -dun -vKD -lhl -tuF -dXt -woJ -eVI -dun -dun -gxz -cKk -xhc -ifD -jQw -bOP -bOP -bOP -bTG -bOP -fqL -fqL -bOP -oWD -oWD -oWD -oWD -nZQ -"} -(44,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -rxV -vJY -vJY -vJY -vJY -vJY -vJY -vJY -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -rzM -qkw -jul -eRg -eRg -dDx -dDx -uFb -wiB -wiB -wiB -uFb -tar -tuE -uFb -tHg -emK -wzj -doP -uFb -iyC -wzj -iyC -iyC -wzj -wuv -xkW -sEB -gFg -jhF -wuv -cHa -prD -prD -prD -prD -qzc -huK -xBu -duz -xBu -xBu -xBu -pCj -jMK -tCV -jMK -jMK -jMK -jMK -jMK -jMK -oWD -oWD -oWD -oWD -oWD -wme -wme -wme -wme -wme -wme -oxL -lCY -lCY -lCY -ccb -ifD -ifD -ifD -ifD -ujm -vKD -tIA -inB -lCY -nxg -xhz -dXt -eDy -eVI -gxz -cKk -xhc -ifD -jQw -bOP -bTG -bTG -vSb -bOP -fqL -fqL -wme -wme -rwK -oWD -oWD -nZQ -"} -(45,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -cnN -phC -phC -phC -phC -phC -phC -akN -rzM -fQo -phC -phC -phC -phC -phC -phC -phC -phC -phC -phC -phC -phC -phC -phC -phC -phC -phC -akN -rzM -qkw -jul -jul -eRg -dDx -dDx -uFb -uFb -uFb -uFb -uFb -tar -oOA -uFb -tHg -wzj -wzj -iIF -uFb -eLY -bRg -uFb -uFb -bRg -wuv -wuv -bmt -wuv -wuv -wuv -pCj -jMK -jMK -jMK -jMK -tCV -huK -xBu -xBu -xBu -qvG -xBu -pCj -jMK -tCV -jMK -aTf -bYc -eyH -jMK -jMK -oWD -oWD -oWD -oWD -wme -wme -wme -wme -wme -wme -wme -wQt -lCY -lCY -lCY -ccb -ifD -ifD -ifD -ifD -ujm -dEa -noe -bqW -qtp -qtp -nxg -nxg -clb -dun -gxz -cKk -xhc -ifD -jQw -bOP -bTG -bTG -bTG -bOP -fqL -fqL -wme -wme -wme -oWD -oWD -nZQ -"} -(46,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -eRg -eRg -jul -jFG -jul -jul -jul -rxV -rzM -qkw -jul -jul -jul -jul -jFG -jul -jul -jul -jul -jul -jul -jul -jul -pzK -jul -jul -jul -rxV -rzM -qkw -jul -jul -eRg -dDx -dDx -uFb -wiB -wiB -wiB -uFb -tar -oOA -uFb -uFb -uFb -feo -uFb -uFb -tar -tar -uFb -cHa -prD -prD -prD -qph -prD -qzc -huK -pCj -jMK -jMK -jMK -jMK -tCV -huK -xBu -xBu -qpM -xBu -mVw -pCj -jMK -tCV -jMK -jMK -jMK -jMK -jMK -jMK -oWD -oWD -oWD -oWD -wme -wme -wme -wme -qIF -wme -wme -ccb -lCY -lCY -lCY -lCY -ifD -ifD -ifD -ifD -ujm -dEa -noe -bqW -qtp -qtp -inB -inB -clb -dun -gxz -cKk -xhc -ifD -jQw -bOP -bTG -bTG -bTG -bOP -fqL -fqL -mEe -wme -wme -oWD -oWD -nZQ -"} -(47,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -eRg -eRg -eRg -jul -jul -jul -jul -rxV -rzM -qkw -jul -jul -qcQ -jul -jul -jul -pzK -jul -jul -jul -jFG -jul -jul -jul -jul -jul -jul -rxV -rzM -qkw -jul -jul -eRg -dDx -dDx -uFb -vSu -tar -tar -tar -tar -tar -tar -ekW -tar -tar -ekW -niV -tar -tar -qzm -pCj -jMK -jMK -jMK -qlP -jMK -tCV -huK -pCj -ncL -ncL -ncL -ncL -tCV -huK -xBu -xBu -xBu -xBu -xBu -pCj -jMK -tCV -jMK -jMK -jMK -jMK -jMK -jMK -oWD -oWD -oWD -oWD -wme -wme -wme -wme -reS -wme -ikm -ccb -ccb -oWD -oWD -ccb -oWD -ifD -ifD -ifD -ujm -sTh -erp -nxg -lCY -inB -kof -sWR -hMG -eVI -gxz -cKk -xhc -ifD -jQw -bOP -bTG -bTG -bTG -bOP -fqL -fqL -wme -wme -wme -oWD -oWD -nZQ -"} -(48,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -eRg -eRg -eRg -jul -pzK -jul -jul -rxV -rzM -qkw -jul -jul -eRg -eRg -eRg -jul -jul -jul -jul -jul -jul -ega -ega -jul -jul -jul -jul -rxV -rzM -qkw -jul -jul -eRg -dDx -dDx -uFb -tar -tar -tar -tar -tar -wsF -wsF -wsF -wsF -wsF -wsF -wsF -tar -tar -qzm -pCj -ncL -ncL -ncL -uSr -ncL -faf -prD -inn -jMK -jMK -jMK -jMK -faf -prD -prD -prD -prD -prD -prD -inn -jMK -tCV -vUA -jMK -lsc -jMK -jHV -jMK -oWD -oWD -oWD -oWD -wme -wme -wme -wme -wme -ikm -ikm -oWD -oWD -oWD -oWD -oWD -oWD -ifD -ifD -ifD -ujm -dun -sTh -lhl -tuF -sWR -eTX -eVI -dun -dun -gxz -vaD -xhc -ifD -jQw -bOP -bTG -bTG -mII -bOP -fqL -fqL -wme -wme -wme -oWD -oWD -nZQ -"} -(49,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -eRg -eRg -eRg -eRg -tlW -jul -jul -rxV -rzM -qkw -jul -eRg -eRg -eRg -eRg -eRg -eRg -eRg -jul -jul -ega -ega -eRg -eRg -jul -jul -jul -rxV -rzM -qkw -jul -jul -eRg -dDx -dDx -uFb -wiB -wiB -wiB -uFb -tar -wsF -uFb -tar -tar -hdb -oOA -oOA -tar -tar -uFb -pCj -jMK -jMK -jMK -qlP -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -dnD -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -tCV -jMK -jMK -ehl -jMK -cMq -jMK -oWD -oWD -oWD -oWD -oWD -wme -wme -wme -ikm -ikm -ikm -oWD -oWD -oWD -oWD -oWD -oWD -oWD -ifD -ifD -syX -ecF -ecF -ecF -ecF -ecF -ecF -ecF -ecF -ecF -uts -ifD -xhc -ifD -jQw -bOP -bOP -bOP -bOP -bOP -fqL -fqL -bdd -wme -wme -oWD -oWD -nZQ -"} -(50,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -eRg -eRg -eRg -eRg -eRg -eRg -eRg -jul -rxV -rzM -qkw -jul -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -eRg -rxV -rzM -qkw -jul -jul -eRg -dDx -dDx -uFb -uFb -uFb -uFb -uFb -tar -tyN -uFb -gXK -ndY -uFb -qzm -uFb -fdG -ndY -uFb -wDy -qlP -tZF -mmx -mmx -mmx -mmx -mmx -mmx -mmx -mmx -mmx -mmx -mmx -mmx -mmx -mmx -mmx -mmx -mmx -cVk -qlP -lSv -jMK -jMK -jMK -jMK -jMK -jMK -oWD -oWD -oWD -oWD -oWD -wme -wme -ikm -ikm -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -xhc -ifD -jQw -fqL -fqL -fqL -fqL -fqL -fqL -fqL -wme -wme -oWD -oWD -oWD -nZQ -"} -(51,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -pjR -pjR -pjR -pjR -vpt -juk -jQE -eIN -vpt -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -juk -jQE -eIN -vpt -vpt -vpt -xBu -sHT -sHT -nUa -nUa -nUa -nUa -nUa -bsr -uFb -uFb -uFb -uFb -tar -uFb -uFb -uFb -uFb -wDy -jMK -tCV -haE -pdR -kdm -kdm -aOb -kdm -kdm -aOb -txs -kdm -xtZ -kdm -xBu -duz -qib -xBu -sHT -pCj -jMK -lSv -jMK -jMK -lsc -jMK -oPY -jMK -oWD -oWD -oWD -oWD -oWD -wme -wme -ikm -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -xhc -ifD -jQw -fqL -fqL -fqL -fqL -fqL -fqL -fqL -wme -oWD -oWD -oWD -oWD -nZQ -"} -(52,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -pjR -pjR -pjR -pjR -vpt -juk -jQE -eIN -vpt -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -juk -jQE -msq -onW -onW -onW -qph -qph -qph -qph -qph -qph -qph -qph -qph -qph -qph -qph -qph -qph -qph -qph -qph -qph -lYk -jMK -tCV -owB -aHX -aHX -dwS -aHX -aHX -dwS -aHX -peO -oWO -nTp -kdm -xBu -xBu -qib -xBu -sHT -pCj -jMK -lSv -jMK -jMK -ehl -jMK -jMK -jMK -oWD -oWD -oWD -oWD -oWD -wme -ikm -ikm -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -ifD -ifD -cjL -kHb -kHb -kHb -kHb -kHb -kHb -kHb -kHb -kHb -gVl -ifD -xhc -ifD -jQw -fqL -fqL -fqL -fqL -fqL -fqL -fqL -oWD -oWD -oWD -oWD -oWD -nZQ -"} -(53,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -pjR -pjR -pjR -pjR -vpt -juk -jQE -eIN -vpt -yhc -yhc -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -vpt -sjx -vpt -juk -bwq -bwq -bwq -bwq -bwq -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -jMK -tCV -aHX -aHX -aHX -aOb -uoI -aHX -kdm -ieB -aHX -nTp -oFT -kdm -sHT -xBu -qib -xBu -xBu -pCj -tNW -lSv -jMK -huK -huK -huK -huK -huK -lKk -lKk -lKk -lKk -lKk -xbb -cwH -cwH -xbb -xbb -xbb -lKk -lKk -lKk -lKk -lKk -lKk -tAp -tAp -tAp -ujm -dun -vKD -lhl -tuF -dXt -woJ -eVI -dun -dun -gxz -pDG -xhc -ifD -jQw -fqL -fqL -fqL -fqL -fqL -fqL -fqL -oWD -oWD -oWD -oWD -oWD -nZQ -"} -(54,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -pjR -pjR -yhc -yhc -vpt -juk -jQE -eIN -vpt -yhc -yhc -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -adO -vpt -sjx -vpt -xEm -hUI -hUI -hUI -hUI -hUI -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -uPl -jLC -kdm -aHX -aAV -kdm -dmi -bHR -kdm -hws -aHX -ioQ -byA -kdm -sHT -sHT -xBu -xBu -xBu -pCj -jMK -bQD -prD -prD -prD -akR -prD -prD -cat -cat -cat -cat -uoc -xbb -ice -lgT -uFn -wjc -xbb -lKk -lKk -lKk -lKk -lKk -uAZ -tAp -tAp -tAp -ujm -vKD -tIA -inB -lCY -nxg -xhz -dXt -eDy -eVI -gxz -cKk -xhc -ifD -jQw -wme -wme -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -nZQ -"} -(55,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -yhc -yhc -yhc -yhc -vpt -juk -jQE -eIN -vpt -yhc -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -pjR -vpt -vpt -vpt -sjx -vpt -vpt -trs -trs -vpt -vpt -vpt -uZR -uZR -xBu -xBu -xBu -xBu -xBu -jSH -lYQ -xBu -xBu -lYQ -mHO -xBu -xBu -xBu -xBu -eSp -xBu -xBu -xBu -owB -aHX -aHX -kdm -kdm -kdm -kdm -kdm -aHX -osx -kdm -kdm -dDx -sHT -xBu -xBu -xBu -pCj -jMK -qlP -qlP -qlP -qlP -iGf -qlP -qlP -jMk -jMk -jMk -tAp -bqM -xbb -eSP -whz -whz -wgb -xbb -lKk -lKk -lKk -lKk -lKk -uAZ -tAp -tAp -tAp -ujm -dEa -noe -bqW -qtp -qtp -nxg -nxg -clb -dun -gxz -cKk -xhc -ifD -jQw -wme -wme -wme -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -oWD -nZQ -"} -(56,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -yhc -yhc -vpt -vpt -vpt -juk -jQE -eIN -xTN -yhc -pjR -pjR -pjR -pjR -pjR -pjR -oUd -oUd -twq -vpt -xTN -vpt -vpt -sjx -vpt -pjR -pjR -yhc -vpt -vpt -vpt -xBu -uZR -uZR -xBu -xBu -xBu -xBu -jXg -xBu -xBu -xBu -xBu -mTp -xBu -xBu -xBu -pLo -xBu -xBu -xBu -xBu -yiT -aHX -aHX -aOb -aHX -aHX -wFe -byA -aHX -nTp -kdm -dDx -dDx -eSp -xBu -xBu -duz -pCj -jMK -jMK -jMK -jMK -jMK -dQW -jMK -jMK -tAp -tAp -jMk -tAp -bqM -lgs -yhP -whz -whz -nxo -xbb -dmf -dmf -dmf -dmf -dmf -dmf -tAp -tAp -tAp -ujm -dEa -noe -bqW -qtp -qtp -inB -inB -clb -dun -gxz -cKk -xhc -ifD -hUK -umq -umq -umq -umq -umq -umq -umq -umq -vpR -oWD -oWD -oWD -nZQ -"} -(57,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -yhc -yhc -vpt -vpt -nJq -juk -jQE -eIN -vpt -vpt -pjR -pjR -pjR -pjR -yhc -bUo -eNM -twq -vpt -vpt -vpt -vpt -vpt -sjx -vpt -pjR -pjR -yhc -yhc -vpt -vpt -eSp -xBu -pLo -xBu -xBu -xBu -xBu -xBu -uZR -sHT -sHT -uZR -xBu -lYQ -mHO -xBu -xBu -xBu -xBu -xBu -xBu -kdm -dDx -dDx -kdm -fuQ -aHX -aHX -aHX -aHX -noU -kdm -dDx -dDx -dDx -dDx -dDx -sHT -pCj -jMK -jMK -jMK -iVu -uPl -vpx -uPl -uPl -pEb -pEb -fPW -tAp -bqM -lgs -yhP -whz -aEO -gJs -xbb -hmR -mcI -mcI -nau -yhR -hlq -tAp -tAp -tAp -ujm -sTh -erp -nxg -lCY -inB -kof -sWR -hMG -eVI -gxz -cKk -xhc -ifD -ifD -ifD -ifD -ifD -ifD -qIg -ifD -ifD -ifD -jQw -oWD -oWD -oWD -nZQ -"} -(58,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -yhc -mhM -vpt -vpt -vpt -juk -jQE -eIN -vpt -trs -vpt -yhc -yhc -yhc -yhc -yhc -vpt -vpt -vpt -vpt -vpt -vpt -nJq -sjx -pjR -pjR -pjR -yhc -yhc -trs -trs -xBu -xBu -xBu -xBu -jSH -xBu -xBu -uZR -uZR -dDx -dDx -sHT -uZR -uZR -xBu -xBu -xBu -hDw -dIT -xBu -dDx -dDx -dDx -dDx -kdm -kdm -lJp -kPI -uHP -dXu -kdm -kdm -dDx -dDx -dDx -dDx -dDx -sHT -pCj -jMK -jMK -jMK -tCV -huK -huK -huK -huK -jMp -jMp -gZa -tAp -bqM -xbb -eSP -uAT -msr -nGe -xbb -snT -vYY -vYY -aGV -dif -kTz -tAp -tAp -tAp -ujm -dun -sTh -lhl -tuF -sWR -eTX -eVI -dun -dun -gxz -cKk -faN -opG -opG -opG -opG -dvv -tJN -tJN -tJN -tJN -tJN -jQw -oWD -oWD -oWD -nZQ -"} -(59,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -yhc -yhc -vpt -vpt -vpt -juk -jQE -eIN -vpt -trs -nJq -vpt -vpt -vpt -vpt -vpt -vpt -vpt -iXk -bAR -vpt -vpt -vpt -vpt -pjR -pjR -pjR -pjR -yhc -yhc -trs -xBu -xBu -uZR -uZR -jXg -xBu -xBu -uZR -dDx -dDx -dDx -sHT -sHT -xBu -xBu -xBu -hDw -nKE -uzi -xBu -dDx -dDx -dDx -dDx -dDx -kdm -kdm -kdm -kdm -kdm -kdm -dDx -dDx -dDx -dDx -dDx -dDx -dDx -pCj -jMK -jMK -jMK -faf -prD -akR -prD -prD -cat -cat -bbS -tAp -bqM -xbb -tXS -luA -xbb -xbb -xbb -flN -aGV -aGV -aGV -dif -kTz -tAp -tAp -tAp -syX -ecF -ecF -ecF -ecF -ecF -ecF -ecF -ecF -ecF -uts -cKk -ifD -ifD -ifD -ifD -ifD -xhc -ifD -ifD -ifD -ifD -ifD -jQw -oWD -oWD -oWD -nZQ -"} -(60,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -vpt -vpt -vpt -vpt -vpt -juk -jQE -eIN -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -ifJ -ifJ -vpt -bNv -vpt -vpt -vpt -vpt -trs -pjR -pjR -pjR -cZU -cZU -sjx -eKj -xBu -uZR -uZR -jXg -xBu -sHT -dDx -dDx -dDx -dDx -dDx -sHT -sHT -xBu -xBu -dnc -nKE -uzi -xBu -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -pCj -jMK -jMK -jMK -jMK -jMK -dQW -jMK -jMK -tAp -tAp -jMk -tAp -bqM -xbb -wOR -pBX -uFn -wEH -xbb -gNx -iwb -iwb -ovE -rHk -dmf -tAp -tAp -tAp -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -cKk -ifD -ifD -ifD -ifD -ifD -xhc -ifD -ifD -ifD -ifD -ifD -jQw -oWD -oWD -oWD -nZQ -"} -(61,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -juk -jQE -eIN -vpt -trs -trs -vpt -xTN -vpt -vpt -vpt -vpt -vpt -trs -trs -bAR -vpt -vpt -xTN -trs -yhc -yhc -yhc -trs -vpt -vpt -eKj -xBu -xBu -xBu -kKB -xBu -sHT -sHT -dDx -dDx -dDx -dDx -dDx -dDx -dDx -xBu -bCZ -nKE -uzi -xBu -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -dDx -pCj -jMK -jMK -jMK -jMK -jMK -dQW -jMK -jMK -tAp -tAp -jMk -tAp -bqM -lgs -doB -whz -whz -vmN -xbb -dmf -dmf -dmf -dmf -qPs -dmf -dmf -tAp -tAp -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -ifD -cKk -ifD -ifD -ifD -ifD -ifD -faN -opG -opG -opG -opG -opG -gja -oWD -oWD -oWD -nZQ -"} -(62,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -juk -jQE -eIN -vpt -trs -trs -vpt -vpt -vpt -vpt -trs -yhc -yhc -yhc -trs -bNv -vpt -vpt -vpt -vpt -vpt -trs -trs -vpt -vpt -vpt -abz -sab -sab -sab -sab -kNJ -sab -mWC -gKs -mAt -mAt -mAt -mAt -mAt -mAt -sab -sab -eFn -aUr -sab -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -awy -giQ -giQ -giQ -giQ -giQ -aJn -giQ -giQ -pEb -pEb -fPW -tAp -bqM -lgs -doB -whz -qJy -vbi -xbb -xmE -pra -wRU -uZE -nau -hcZ -dmf -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -pMS -tAp -tAp -tAp -tAp -sbQ -sbQ -sbQ -neq -neq -neq -sbQ -sbQ -lKk -lKk -lKk -bSW -"} -(63,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -tbH -tbH -tbH -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -juk -jQE -eIN -vpt -trs -trs -trs -trs -vpt -aWd -trs -yhc -pjR -pjR -yhc -vpt -vpt -vpt -vpt -vpt -vpt -jnL -jss -vpt -vpt -vpt -abz -mWC -mWC -mWC -sab -sab -sab -mWC -mWC -mAt -mAt -mAt -mAt -mAt -mWC -mWC -sab -sab -sab -sab -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -qJI -sab -tsC -tsC -sab -vRG -vRG -vRG -dNZ -dNZ -vRG -gZa -tAp -bqM -xbb -wTU -msr -dWU -obl -xbb -ozc -ovE -sHq -ovE -ncP -nqO -kTz -jMk -jMk -jMk -jMk -jMk -jMk -jMk -jMk -tAp -tAp -tAp -tAp -tAp -pMS -tAp -tAp -tAp -tAp -sbQ -rvQ -saZ -saZ -saZ -bBj -bBj -sbQ -lKk -lKk -lKk -bSW -"} -(64,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -pQj -fpc -fpc -fpc -fpc -fpc -fpc -fpc -laW -jQE -eIN -vpt -vpt -vpt -trs -trs -vpt -vpt -gGy -yhc -pjR -pjR -pjR -fyP -vpt -vpt -vpt -jnL -jss -vpt -vpt -vpt -vpt -vpt -abz -mWC -iIa -oNy -idx -sab -sab -sab -mWC -mAt -mAt -mAt -mAt -uhF -uhF -mWC -sab -mTJ -sab -gDP -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -sqI -sab -tsC -tsC -sab -vRG -rLp -jAE -xox -rUu -vRG -gZa -tAp -bqM -xbb -bHJ -qDQ -xbb -xbb -xbb -dmf -aGV -vVA -dmf -dmf -dmf -dmf -jMk -tAp -tAp -tAp -tAp -tAp -tAp -jMk -tAp -tAp -tAp -tAp -tAp -tAp -sbQ -sbQ -saZ -nwe -sbQ -rvQ -saZ -saZ -saZ -saZ -jiI -sbQ -lKk -lKk -lKk -bSW -"} -(65,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -juk -bwq -bwq -bwq -bwq -bwq -bwq -bwq -bwq -jQE -eIN -vpt -vpt -vpt -vpt -vpt -vpt -vpt -hiK -vpt -trs -pjR -pjR -trs -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -lQc -abz -sab -eFn -kOw -flu -sab -sab -kNJ -gDP -mAt -mAt -sab -uhF -uhF -sab -sab -sab -sab -nsh -sab -sab -sab -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -tsC -tsC -tsC -dxh -vRG -dbO -aru -ilP -gpu -vRG -gZa -tAp -bqM -jMp -awh -jMk -jMk -jMk -jMk -jMk -jMk -jMk -jMk -jMk -jMk -lpj -awh -tAp -xPE -xPE -xPE -xPE -jOa -ftX -jOa -xPE -xPE -xPE -xPE -sho -xRy -xRy -saZ -saZ -sbQ -dUg -kpb -xRy -saZ -wuW -wuW -sbQ -lKk -lKk -lKk -bSW -"} -(66,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -juk -bwq -bwq -jQE -jQE -jQE -jQE -jQE -jQE -jQE -eIN -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -vpt -trs -trs -vpt -vpt -vpt -vpt -vpt -trs -trs -vpt -vpt -trs -trs -trs -iyi -sab -sab -eFn -aUr -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -kNJ -nsh -sab -sab -sab -sab -sab -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mZL -tsC -tsC -uKe -dNZ -iMN -eQk -eQk -eQk -lGm -gZa -tAp -bqM -jMp -jMk -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -xPE -jOa -jOa -jOa -jOa -ftX -jOa -jOa -jOa -jOa -lSf -rJn -dep -gTi -saZ -syG -sbQ -xRy -lbj -xRy -saZ -wuW -wuW -sbQ -lKk -lKk -lKk -bSW -"} -(67,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -pjR -pjR -pjR -xEm -hUI -hUI -tmL -hUI -hUI -hUI -hUI -sbf -jQE -eIN -vpt -vpt -vpt -vpt -vpt -vpt -pjR -yhc -vpt -vpt -jnL -jnL -vpt -xTN -vpt -ucc -ucc -ucc -ucc -ucc -ucc -ucc -ucc -otn -sab -sab -sab -sab -mWC -mWC -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -tsC -tsC -tsC -tsC -dNZ -sRP -aru -lQO -lQO -lQO -gZa -tAp -bqM -jMp -jMk -mlE -bcZ -bcZ -bcZ -xCT -bcZ -bcZ -bcZ -bcZ -erz -gGc -tAp -tAp -xPE -jOa -jOa -jOa -jOa -ftX -jOa -jOa -jOa -cLR -xTi -sbQ -hfd -saZ -saZ -saZ -naR -saZ -saZ -saZ -saZ -saZ -syG -sbQ -lKk -lKk -lKk -bSW -"} -(68,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -aRq -aRq -aRq -sBq -sBq -wzl -wzg -sBq -sBq -aRq -aRq -juk -jQE -eIN -vpt -vpt -vpt -vpt -vpt -pjR -pjR -pjR -vpt -vpt -vpt -vpt -vpt -vpt -vpt -ucc -pQj -fpc -fpc -fpc -fpc -fpc -bMc -otn -sab -sab -mWC -mWC -mWC -sab -sab -sab -sab -mTJ -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mZL -tsC -tsC -tsC -vRG -iMN -eQk -nHp -pRA -vRG -gZa -tAp -bqM -jMp -jMk -kma -tAp -tAp -jBV -rYl -kVV -tAp -tAp -tAp -tAp -bTn -tAp -iVI -xPE -jOa -jOa -jOa -jOa -ftX -jOa -bBw -jOa -jOa -xTi -sbQ -muh -saZ -saZ -saZ -saZ -saZ -saZ -saZ -saZ -saZ -tDN -sbQ -lKk -lKk -lKk -bSW -"} -(69,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -aRq -wHg -wzl -wzl -wzl -wzl -iFn -wzl -sZU -dPa -hdU -juk -jQE -eIN -vpt -vpt -vpt -vpt -vpt -pjR -pjR -pjR -pjR -vpt -vpt -vpt -vpt -vpt -trs -ucc -juk -bwq -bwq -bwq -bwq -bwq -eIN -otn -abz -abz -abz -abz -abz -abz -abz -abz -abz -abz -abz -abz -abz -abz -abz -abz -abz -abz -abz -abz -abz -abz -abz -abz -abz -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -tsC -tsC -tsC -tsC -vRG -dbO -tLv -lQO -rUu -vRG -gZa -jMk -onu -rLT -jMk -kma -tAp -oTh -dRg -scz -sUg -tgT -kuH -uFC -tAp -bTn -iVI -tAp -xPE -jOa -aKN -jOa -jOa -ftX -jOa -jOa -jOa -jOa -xTi -sbQ -sbQ -sbQ -saZ -nwe -sbQ -uOH -gTi -saZ -saZ -saZ -dia -sbQ -lKk -lKk -lKk -bSW -"} -(70,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -hpp -wzl -xoJ -xoJ -cSg -sZU -vIa -aZW -aZW -wzl -aRq -juk -jQE -pwJ -fpc -fpc -fpc -fpc -fpc -fpc -bMc -pjR -pjR -lQc -vpt -vpt -nJq -vpt -trs -ucc -juk -bwq -bwq -bwq -bwq -bwq -eIN -otn -sab -sab -pEE -avo -avo -avo -avo -avo -avo -avo -avo -avo -nAp -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -sab -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -sNZ -sNZ -tsC -tsC -vRG -vRG -vRG -wSW -gTc -vRG -gZa -tAp -bqM -fwi -tAp -kma -eEw -roN -rIv -spO -tbZ -tUC -utP -uGM -fdD -bTn -tAp -tAp -xPE -jOa -aKN -jOa -jOa -ftX -xAr -lFS -sIO -jOa -xTi -sbQ -xRy -xRy -saZ -saZ -sbQ -sbQ -sbQ -sbQ -sbQ -sbQ -sbQ -sbQ -lKk -lKk -lKk -bSW -"} -(71,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -hpp -wzl -xoJ -aRq -fuC -fuC -fuC -aRq -aZW -wzl -aRq -juk -jQE -jQE -jQE -jQE -jQE -jQE -jQE -jQE -eIN -trs -trs -trs -vpt -vpt -vpt -trs -lQc -ucc -juk -vxl -vxl -vxl -vxl -vxl -eIN -otn -sab -sab -jfD -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -khm -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -mAt -mAt -mAt -mAt -mAt -abz -abz -abz -abz -abz -sab -vRG -dNZ -dNZ -vRG -gZa -tAp -bqM -fwi -tAp -kma -tAp -tkF -wpQ -srD -tdL -upY -xEN -vmC -tAp -bTn -tAp -iVI -xPE -jOa -xcr -jOa -jOa -ftX -jOa -jOa -jOa -jOa -xTi -sbQ -uOH -gTi -saZ -syG -sbQ -iuG -rvQ -rvQ -sWX -nFx -vnK -sbQ -lKk -lKk -lKk -bSW -"} -(72,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -aRq -wzl -cSg -fuC -wzl -nce -wzl -fuC -vIa -wzl -aRq -xEm -hUI -hUI -hUI -hUI -hUI -hUI -sbf -jQE -pwJ -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -fpc -laW -bwq -bwq -bwq -bwq -bwq -pwJ -avo -avo -avo -nXn -ltW -alu -giQ -giQ -giQ -giQ -giQ -nhu -ltW -khm -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -mAt -mAt -mAt -mAt -mAt -sab -pEE -avo -avo -avo -avo -avo -avo -cat -cat -bbS -tAp -bqM -jMp -tAp -kma -uAZ -jZQ -lzw -sJf -tPI -tAp -iKo -tAp -tAp -bTn -tAp -tAp -xPE -jOa -jOa -jOa -jOa -ftX -jOa -jOa -jOa -jOa -xTi -rJn -kpb -saZ -saZ -saZ -naR -saZ -saZ -saZ -bdP -jOP -ogJ -sbQ -lKk -lKk -lKk -bSW -"} -(73,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -aRq -wzl -sZU -fuC -wzl -aRq -oIl -sSy -bGo -wzl -aRq -aRq -vpt -vpt -bAR -trs -vpt -vpt -juk -jQE -jQE -jQE -jQE -jQE -jQE -jQE -jQE -jQE -jQE -jQE -jQE -jQE -jQE -jQE -jQE -jQE -bwq -ltW -ltW -ltW -ltW -ltW -khm -mHB -ecp -otn -ecp -mqU -jfD -ltW -khm -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -mAt -mAt -mAt -mAt -mAt -sab -jfD -lAd -lAd -lAd -lAd -lAd -lAd -jMk -jMk -jMk -blC -bqM -jMp -tAp -cRl -vTw -vTw -vTw -gPb -vTw -vTw -vTw -vTw -vTw -aDG -tAp -tAp -jOa -jOa -xAr -qGk -sIO -ftX -jOa -jOa -orO -jOa -xTi -rJn -xRy -saZ -kpb -saZ -saZ -saZ -kpb -saZ -rEO -rEO -jOD -sbQ -lKk -lKk -lKk -bSW -"} -(74,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -aRq -wzl -cSg -xnI -wzl -kJr -wzl -fuC -vIa -pzS -fuC -sBq -vpt -vpt -bNv -trs -vpt -vpt -xEm -hUI -hUI -hUI -hUI -hUI -hUI -hUI -pWP -hUI -hUI -hUI -hUI -hUI -hUI -hUI -hUI -tmL -hUI -giQ -giQ -giQ -giQ -giQ -btc -cjp -jUI -pAD -jUI -tIi -jfD -ltW -khm -ltW -kKA -rZp -rZp -rZp -rZp -rZp -dGi -ltW -ltW -kKA -rZp -rZp -rZp -rZp -rZp -dGi -ltW -ltW -ltW -mAt -mAt -mAt -mAt -mAt -sab -jfD -lAd -alu -giQ -giQ -giQ -giQ -pEb -pEb -pEb -pEb -bdr -jMp -wlG -tAp -tAp -tAp -tAp -tAp -snu -tAp -tAp -tAp -tAp -tAp -wlG -tAp -jOa -jOa -jOa -jOa -jOa -ftX -jOa -jOa -jOa -jOa -xTi -sho -orH -saZ -lbj -xRy -sbQ -xRy -lbj -saZ -nHA -nHA -tMJ -sbQ -lKk -lKk -lKk -bSW -"} -(75,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -aRq -agE -xoJ -aRq -sAi -jBn -ctv -aRq -xYT -wzl -fuC -sBq -ukI -ukI -ukI -ukI -ukI -wXl -ukI -ukI -ukI -ukI -ukI -xif -xif -xif -xif -xif -xif -vHC -goT -goT -wvG -pPz -pPz -tHo -xjr -goT -tsC -jHE -rRM -rRM -sab -otn -jUI -jUI -jUI -otn -jfD -ltW -khm -ltW -jxy -wyO -sny -sny -sny -wyO -uQu -ltW -ltW -jxy -wyO -sny -sny -sny -wyO -uQu -ltW -ltW -ltW -mAt -mAt -mAt -mAt -mAt -sab -jfD -lAd -khm -mHB -ecp -ecp -xza -pvG -pvG -pvG -lKk -jMp -jMp -tAp -tAp -tAp -tAp -tAp -tAp -snu -tAp -tAp -tAp -tAp -tAp -tAp -tAp -jOa -jOa -jOa -jOa -jOa -ftX -jOa -jOa -jOa -jOa -xTi -sbQ -iYR -saZ -sbQ -sbQ -sbQ -sbQ -sbQ -sbQ -sbQ -sbQ -sbQ -sbQ -lKk -lKk -lKk -bSW -"} -(76,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -aRq -agE -fvX -xoJ -hgN -sZU -cSg -xoJ -xoJ -pzS -fuC -aRq -ukI -ukI -xif -ukI -ukI -ukI -ukI -ukI -ukI -cxm -goT -goT -goT -goT -goT -goT -goT -goT -goT -gYO -ifm -qxc -fzp -hqj -loW -goT -tsC -tsC -sab -mTJ -sab -wIz -pAD -jUI -jUI -jHb -jfD -ltW -khm -ltW -jxy -sny -rtp -ljX -oUS -sny -uQu -ltW -ltW -jxy -sny -rtp -ljX -oUS -sny -uQu -ltW -ltW -ltW -mAt -mAt -mAt -mAt -mAt -sab -jfD -lAd -khm -cjp -jUI -jUI -jUI -gpO -eKq -pvG -lKk -jMp -tAp -tAp -mlE -bcZ -bcZ -bcZ -xCT -bcZ -bcZ -ygZ -bcZ -bcZ -cxF -tAp -tAp -xPE -jOa -jOa -vyy -jOa -ftX -jOa -oew -oew -jOa -xTi -sbQ -ttE -xrD -awr -xRy -jJk -sbQ -sbQ -nPp -sbQ -lKk -lKk -lKk -lKk -lKk -lKk -bSW -"} -(77,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -aRq -sGh -pJB -fuC -bRm -wzl -bRm -wzl -aMo -wzl -aRq -cpc -cpc -cpc -trr -xif -xif -xif -dzQ -miJ -ukI -cxm -iza -xlm -tNj -bWA -non -non -dJa -cIT -sFX -glK -bpo -lyX -jhM -jhM -wZh -iza -tsC -tsC -sab -sab -sab -otn -jUI -jUI -jUI -otn -jfD -ltW -khm -ltW -jxy -wyO -hEL -cKV -mkV -wyO -uQu -ltW -ltW -jxy -wyO -hEL -cKV -mkV -wyO -uQu -ltW -ltW -ltW -mAt -mAt -mAt -mAt -mAt -sab -jfD -lAd -khm -otn -jUI -jUI -otn -tWf -eVj -mdV -lKk -jMp -uAZ -tAp -kma -hoL -tAp -jBV -rYl -kVV -tAp -tAp -tAp -tAp -bTn -tAp -tAp -xPE -jOa -jOa -kNO -jOa -ftX -jOa -fWL -fWL -jOa -xTi -sbQ -miY -xrD -saZ -jqz -saZ -icG -ooq -rgT -sbQ -lKk -lKk -lKk -lKk -lKk -lKk -bSW -"} -(78,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -aRq -aRq -aRq -aRq -sGh -aRq -sGh -aRq -aRq -aRq -aRq -cpc -cpc -cpc -cpc -cpc -xif -xif -cmD -iMT -miJ -ukI -goT -glK -lyX -lyX -lyX -lyX -wZh -goT -goT -goT -bRT -mIY -aEm -goT -goT -goT -goT -tsC -sab -sab -pZY -otn -otn -jUI -otn -otn -jfD -ltW -khm -ltW -wyO -wyO -wyO -jgK -wyO -wyO -wyO -ltW -ltW -wyO -wyO -wyO -jgK -wyO -wyO -wyO -ltW -ltW -ltW -mAt -mAt -mAt -mAt -mAt -sab -jfD -lAd -khm -jUI -jUI -jUI -otn -pvG -kkD -pvG -pvG -fwi -tAp -tAp -kma -tAp -xpP -dRg -scz -sUg -tgT -kuH -uFC -tAp -bTn -tAp -tAp -xPE -jOa -jOa -qwm -jOa -ftX -jOa -jOa -jOa -jOa -xTi -naR -saZ -xrD -kpb -saZ -saZ -sbQ -jQU -orm -sbQ -lKk -lKk -lKk -lKk -lKk -lKk -bSW -"} -(79,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -cpc -cpc -cpc -aRq -aRq -aRq -aRq -aRq -cxm -ukI -cpc -cpc -cpc -cpc -cpc -cpc -xif -cxm -cmD -iMT -kyK -xif -goT -goT -cIM -frF -goT -cIM -frF -goT -sNU -urp -gxI -urp -eYF -gxI -nOp -pPS -goT -tsC -sab -sab -sab -sab -sab -sab -sab -sab -jfD -ltW -khm -ltW -htx -wyO -uyI -tBu -gHi -wyO -htx -ltW -ltW -htx -wyO -uyI -tBu -gHi -wyO -htx -ltW -ltW -ltW -mAt -mAt -mAt -mAt -mAt -sab -jfD -lAd -khm -otn -fAC -jUI -otn -fmw -pvG -pvG -pvG -fwi -tAp -tAp -kma -eEw -roN -rIv -spO -tbZ -tUC -utP -uGM -fdD -bTn -tAp -tAp -hqm -jOa -jOa -jOa -jOa -ftX -ftX -ftX -ftX -ftX -xvs -xrD -xrD -dov -hfy -xRy -syG -sbQ -sbQ -sbQ -sbQ -lKk -lKk -lKk -lKk -lKk -lKk -bSW -"} -(80,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -cpc -cpc -cpc -cpc -xif -xif -xif -cxm -cxm -ukI -cpc -cpc -cpc -cpc -cpc -cpc -xif -cxm -uGV -bdI -xTl -xif -xif -goT -ijN -mIY -goT -ijN -mIY -goT -tOH -wCV -wCV -wCV -wCV -wCV -mih -uKj -pPz -tsC -sab -sab -sab -sab -sab -nHU -sab -sab -jfD -ltW -khm -ltW -jxy -jUI -gHi -tBu -uyI -jUI -uQu -ltW -ltW -jxy -jUI -gHi -tBu -uyI -jUI -uQu -ltW -ltW -ltW -mAt -mAt -mAt -mAt -mAt -sab -jfD -lAd -khm -sab -sab -sab -sab -pvG -pvG -pvG -pvG -fwi -tAp -tAp -kma -tAp -tkF -wpQ -srD -tdL -upY -xEN -vmC -tAp -bTn -tAp -tAp -hqm -jOa -jOa -jOa -jOa -ftX -jOa -oew -oew -jOa -xTi -sbQ -sbQ -saZ -xRy -hfy -lqx -icG -ooq -rgT -sbQ -lKk -lKk -lKk -lKk -lKk -lKk -bSW -"} -(81,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -cpc -cpc -cpc -cpc -cpc -cpc -xif -xif -cxm -ukI -ukI -cpc -cpc -cpc -cpc -xif -cxm -wXl -ukI -cxm -cxm -xif -xif -goT -lwA -anM -goT -lwA -anM -goT -sMP -lok -lok -mIY -mIY -wCV -ufp -olo -goT -tsC -sab -sab -gHt -gDP -gDP -gDP -sab -sab -jfD -ltW -khm -ltW -jxy -jUI -jUI -tBu -jUI -jUI -uQu -ltW -ltW -jxy -jUI -jUI -tBu -jUI -jUI -uQu -ltW -ltW -ltW -mAt -mAt -mAt -mAt -mAt -sab -jfD -lAd -khm -sab -sab -sab -sab -pvG -lKk -jMp -jMp -jMp -tAp -tAp -kma -uAZ -iKo -lzw -sJf -tPI -tAp -tAp -tAp -tAp -bTn -tAp -tAp -xPE -jOa -wPr -vyy -jOa -ftX -jOa -fWL -fWL -jOa -lSf -lKk -sbQ -msb -jqz -saZ -saZ -sbQ -ooq -orm -sbQ -lKk -lKk -lKk -lKk -lKk -lKk -bSW -"} -(82,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -cpc -cpc -cpc -cpc -cpc -cpc -xif -xif -xif -cxm -ukI -ukI -xif -xif -xif -cxm -cxm -ukI -ukI -cxm -xif -xif -xif -goT -goT -goT -goT -goT -goT -goT -tOH -rJg -efy -osC -qUT -wCV -mIY -uKj -goT -tsC -sab -sab -jqK -sab -pZY -mWC -mWC -sab -jfD -ltW -kCy -ltW -wyO -wyO -uyI -tBu -gHi -wyO -wyO -ltW -ltW -wyO -wyO -uyI -tBu -gHi -wyO -wyO -ltW -ltW -ltW -mAt -mAt -mAt -mAt -mAt -mAt -jfD -lAd -khm -sab -sab -sab -sab -lKk -lKk -jMp -tAp -tAp -tAp -tAp -cRl -vTw -vTw -vTw -gPb -vTw -vTw -vTw -vTw -vTw -aDG -tAp -tAp -xPE -jOa -irp -kNO -jOa -ftX -jOa -jOa -jOa -jOa -xTi -lKk -sbQ -sbQ -dGu -bpS -sbQ -sbQ -sbQ -sbQ -sbQ -lKk -lKk -lKk -lKk -lKk -lKk -bSW -"} -(83,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -cpc -cpc -cpc -cpc -cpc -cpc -cpc -xif -xif -cxm -ukI -ukI -ukI -ukI -ukI -cpc -cpc -cpc -cpc -cpc -xif -xif -ukI -ukI -goT -ryM -uOE -urp -dyY -xjr -tOH -rJg -drA -hJw -kRm -wCV -mIY -uKj -kcr -tsC -sab -mWC -hvG -sab -uhF -hqD -sab -sab -jfD -ltW -khm -ltW -htx -wyO -uyI -tBu -gHi -wyO -htx -ltW -ltW -htx -wyO -uyI -tBu -gHi -wyO -htx -ltW -ltW -ltW -mAt -mAt -mAt -mAt -mAt -mAt -jfD -lAd -nFv -avo -avo -avo -avo -uoc -lKk -jMp -tAp -tAp -tAp -wlG -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -wlG -tAp -xPE -jOa -oNw -qwm -jOa -ftX -jOa -jOa -jOa -jOa -jOa -lKk -lKk -pvG -tAp -tAp -pvG -pvG -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -bSW -"} -(84,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -ukI -ukI -wXl -ukI -ukI -cpc -cpc -cpc -cpc -cpc -cpc -xif -xif -ukI -ukI -goT -sdq -bay -mIY -uKj -goT -tOH -rJg -efy -dYa -vYD -wCV -mIY -uKj -goT -tsC -mWC -mWC -uhF -uhF -seF -uhF -pZY -sab -jfD -ltW -khm -ltW -jxy -wyO -jUI -jUI -jUI -wyO -uQu -ltW -ltW -jxy -wyO -jUI -jUI -jUI -wyO -uQu -ltW -ltW -ltW -mAt -mAt -mAt -mAt -mAt -mAt -jfD -lAd -lAd -lAd -lAd -lAd -ltW -bqM -lKk -jMp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -xPE -xPE -xPE -xPE -jOa -ftX -jOa -xPE -xPE -xPE -xPE -lKk -lKk -kdp -tAp -tAp -pvG -pvG -pvG -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -bSW -"} -(85,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -ukI -ukI -ukI -cpc -cpc -goT -goT -goT -goT -goT -goT -goT -ukI -ukI -cIM -rks -mIY -mIY -uKj -goT -sMP -lok -luQ -mih -mIY -wCV -ufp -olo -goT -tsC -pZY -seF -uhF -hqD -mAt -uhF -mWC -sab -jfD -ltW -khm -ltW -qRr -eaO -eaO -eaO -eaO -eaO -vFQ -ltW -ltW -qRr -eaO -eaO -eaO -eaO -eaO -vFQ -ltW -ltW -ltW -mAt -mAt -mAt -mAt -mAt -mAt -awy -giQ -giQ -giQ -giQ -twT -ltW -bqM -gDi -gDi -gDi -wkU -gDi -gDi -gDi -wFW -wFW -jyU -jyU -wFW -wFW -jyU -jyU -wFW -tAp -tAp -tAp -tAp -tAp -mMD -tAp -tAp -jMk -tAp -tAp -hAK -wmU -qSK -lKk -lKk -pvG -tAp -tAp -pvG -pvG -pvG -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -bSW -"} -(86,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -goT -sYH -dpI -nfZ -sNU -cAN -goT -goT -goT -goT -urn -fiq -pWD -dPD -kmB -tOH -mIY -mIY -mIY -mIY -wCV -mIY -uKj -pPz -tsC -iIa -gzp -gzp -mAt -mAt -mAt -mWC -sab -jfD -ltW -khm -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -mAt -imd -imd -imd -fYm -imd -imd -imd -sab -sab -sab -glm -ltW -bqM -gDi -iFV -vZQ -oeJ -oeJ -oeJ -uzO -wFW -rcC -tis -tis -qPV -mUl -eIZ -qPV -wFW -wFW -tAp -tAp -tAp -hAK -wpO -tAp -tAp -jMk -tAp -tAp -tAp -hAK -qSK -lKk -pvG -nrB -tAp -tAp -pvG -nrB -pvG -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -bSW -"} -(87,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -goT -tHJ -dpI -goT -rks -cMs -nOp -kwQ -cAN -aZf -tOH -mIY -rul -uKj -vto -gSH -jrX -xYu -sJi -cCL -wCV -pyy -lDI -goT -tsC -eFn -pMG -mAt -mAt -mAt -mAt -gKs -mWC -jfD -ltW -khm -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -mAt -imd -gQu -tnp -ozY -tnp -gQu -quf -sab -sab -sab -glm -ltW -bqM -uyb -wgV -vnt -vnt -vnt -oeJ -oYm -wFW -shh -nVG -ctj -qYK -wFW -uNB -pOj -qPV -wFW -wFW -tAp -aeI -nqr -xVy -tAp -tAp -jMk -tAp -tAp -aeI -ada -xCR -pvG -pvG -pvG -tAp -tAp -pvG -pvG -pvG -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -bSW -"} -(88,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -goT -goT -goT -goT -rks -wCV -wCV -wCV -dPD -wCV -red -jrX -jrX -sQl -goT -goT -goT -goT -goT -goT -rnW -goT -goT -goT -tsC -sab -bfD -mAt -mAt -mAt -mAt -vol -pZY -jfD -ltW -khm -ltW -ltW -ltW -ltW -dsb -ltW -eHU -dsb -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -ltW -mAt -imd -hOK -aro -lEz -clj -tnp -quf -sab -sab -sab -glm -ltW -bqM -uyb -wgV -vnt -vnt -mAx -oeJ -vnt -wFW -wFW -wFW -wFW -wFW -wFW -wST -wAc -sHL -aSl -wFW -tAp -tAp -tAp -tAp -tAp -tAp -jMk -tAp -tAp -tAp -tAp -tAp -qjk -tAp -tAp -tAp -tAp -pvG -pvG -pvG -pvG -pvG -lKk -lKk -lKk -lKk -lKk -lKk -bSW -"} -(89,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -goT -sYH -qoq -goT -rks -jNq -jrX -wtL -uKj -goT -goT -goT -goT -goT -goT -cpc -cpc -cpc -goT -rks -wCV -uKj -goT -sab -sab -pZY -mAt -mAt -mAt -mAt -mAt -pMG -vol -jfD -ltW -otK -vlc -vlc -vlc -vlc -vlc -nFu -oFk -oFk -oft -sab -sab -tsC -tsC -sab -sab -sab -mAt -mAt -mAt -mAt -mAt -imd -tnp -aro -kxI -ceU -tnp -imd -sab -sab -sab -glm -ltW -bqM -gDi -fNp -vnt -gCO -gDi -vhd -oeJ -wFW -rcC -saQ -tis -qPV -mUl -oHO -wAc -wcp -aTM -dYg -tAp -tAp -skj -qSK -tAp -tAp -jMk -tAp -tAp -tAp -tAp -qSK -qjk -tAp -tAp -tAp -tAp -pvG -pvG -pvG -pvG -pvG -pvG -pvG -lKk -lKk -lKk -lKk -bSW -"} -(90,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -goT -tHJ -dpI -nfZ -gSH -oJh -goT -rks -uKj -goT -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -goT -iLs -wCV -iCN -goT -sab -sab -sab -mAt -mAt -mAt -mAt -mAt -tHK -rjf -jfD -ltW -khm -vlc -eqg -qVb -lwZ -vlc -vid -vid -vid -olZ -sab -sab -tsC -tsC -sab -sTu -mAt -mAt -mAt -mAt -mAt -mAt -imd -tnp -uXr -jqh -clj -fwE -imd -imd -imd -imd -glm -ltW -bqM -gDi -vnt -hRe -nWy -gDi -vnt -oeJ -wFW -shh -enz -ctj -qYK -wFW -fmU -goI -enz -aTE -dYg -tAp -jCJ -hAK -qSK -tAp -tAp -jMk -tAp -tAp -tAp -hAK -rMx -pvG -pvG -pvG -pvG -pvG -pvG -pvG -pvG -pvG -pvG -pvG -pvG -lKk -lKk -lKk -lKk -bSW -"} -(91,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -cpc -cpc -cpc -cpc -cpc -cpc -ukI -ukI -ukI -ukI -ukI -cpc -cpc -cpc -cpc -goT -goT -goT -goT -mIY -aEm -goT -eQW -fzL -goT -cpc -cpc -cpc -cpc -pPj -qNt -lNk -oqF -pPz -lMS -wCV -uKj -pPz -sab -sab -mWC -mAt -mAt -mAt -mAt -mAt -seF -hqD -aqP -ltW -khm -vlc -nUK -vid -nXP -vlc -uSz -vid -vid -olZ -qJI -sab -tsC -sab -sab -szE -mAt -mAt -mAt -mAt -mAt -mAt -imd -hOK -aro -qPd -clj -tnp -quf -gXe -jkH -imd -glm -ltW -bqM -gDi -wkU -gDi -gDi -gDi -gDi -fMd -wFW -wFW -wFW -wFW -wFW -wFW -wFW -wAc -vpS -wFW -wFW -tAp -aeI -nqr -xVy -tAp -tAp -jMk -tAp -tAp -aeI -ada -xCR -pvG -pvG -pvG -pvG -pvG -lKk -pvG -pvG -nrB -pvG -pvG -pvG -lKk -lKk -lKk -lKk -bSW -"} -(92,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -aRe -aRe -aRe -aRe -aRe -aRe -aRe -aRe -aRe -cpc -cpc -ukI -ukI -ukI -ukI -wXl -elF -elF -elF -pUO -pUO -vpi -pUO -pUO -hvJ -elF -ohX -goT -cIM -cIM -goT -cpc -cpc -trr -qNt -ukI -xif -rLs -lNk -pPz -bxY -wCV -uKj -pPz -lYg -sab -mWC -mWC -mWC -mAt -mAt -otn -otn -otn -jfD -ltW -khm -vlc -eqg -qVb -vid -vlc -vid -vid -vid -olZ -sqI -sab -tsC -sab -sab -kdl -mAt -mAt -imd -imd -imd -imd -imd -gQu -tnp -wvD -tnp -gQu -quf -eXM -ioo -imd -glm -lAd -nNn -oNg -oNg -oNg -oNg -oNg -oNg -oNg -oNg -oNg -oNg -oNg -oNg -oNg -oNg -oNg -cat -cat -cat -cat -cat -cat -cat -cat -tAp -jMk -tAp -cat -cat -cat -cat -cat -cat -uoc -lKk -lKk -lKk -lKk -pvG -pvG -pvG -pvG -pvG -lKk -lKk -lKk -lKk -bSW -"} -(93,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -ukI -wXl -ukI -cpc -cpc -elF -mTC -rmK -pUO -bDn -bDn -bDn -pUO -ohX -afM -ohX -eGS -ukI -ukI -cpc -cpc -cpc -xif -cxm -uns -cxm -cxm -qNt -pPz -hBK -wCV -uKj -pPz -uhF -sab -sab -sab -mWC -hqD -seF -otn -xcw -uwz -jfD -ltW -khm -vlc -fIH -vid -vMT -vlc -uSP -vlc -vlc -vlc -vlc -abz -tsC -abz -abz -abz -mAt -mAt -imd -qjG -rwI -imd -imd -imd -tnp -bKQ -imd -quf -imd -eXM -aQq -imd -glm -ltW -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -jMk -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -jMk -jMk -jMk -jMk -jMk -jMk -jMk -jMk -bqM -lKk -lKk -lKk -lKk -lKk -lKk -kdp -pvG -pvG -pvG -lKk -lKk -lKk -bSW -"} -(94,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -ukI -ukI -ukI -cpc -cpc -aZM -ivP -elF -pUO -bDn -uGN -bDn -pUO -elF -haL -ohX -jIR -ukI -ukI -cpc -cpc -cpc -rLs -cxm -ukI -ukI -lTN -cpc -goT -rks -wCV -uKj -goT -uhF -seF -pZY -sab -sab -pZY -uhF -otn -xcw -uwz -jfD -ltW -khm -vlc -fIH -vid -fhD -vVD -fhD -bCo -fkH -bMF -ltc -tsC -tsC -tsC -tsC -tsC -mAt -mAt -imd -jdV -tXI -cDS -gXe -lgL -uXj -uXj -uXj -uXj -qIm -kMR -dNa -imd -glm -ltW -wPL -pEb -pEb -pEb -pEb -pEb -pEb -pEb -pEb -pEb -pEb -pEb -pEb -pEb -pEb -xbX -pEb -pEb -pEb -pEb -pEb -pEb -pEb -pEb -pEb -pEb -pEb -pEb -vVd -vVd -vVd -emd -jMk -bqM -lKk -lKk -lKk -lKk -lKk -lKk -pvG -pvG -pvG -pvG -lKk -lKk -lKk -bSW -"} -(95,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -elF -elF -elF -elF -elF -elF -elF -elF -elF -pUO -bDn -uGN -bDn -pUO -elF -elF -ohX -jIR -ukI -wXl -ukI -cxm -cxm -uns -ukI -ukI -ukI -cpc -cpc -goT -iLs -wCV -iCN -goT -uhF -hqD -mWC -sab -sab -mWC -hqD -oHg -jUI -jUI -jfD -lAd -xlj -vVD -fhD -fhD -fhD -vlc -rFL -vid -bVY -bMF -ltc -tsC -ltW -ltW -ltW -tsC -mAt -mAt -imd -imd -imd -imd -eXM -izg -izg -wTV -izg -izg -nYO -nYO -pRU -iGZ -glm -ltW -bfW -pvG -pvG -lKk -lKk -lKk -lKk -lTr -nLG -pxO -lTr -lTr -tAm -snF -snF -jPz -snF -lTr -nLG -lTr -lTr -lTr -lTr -lTr -nLG -nLG -lTr -lKk -pvG -pvG -pvG -oYx -jMk -bqM -pvG -lKk -lKk -lKk -lKk -lKk -pvG -pvG -pvG -pvG -pvG -lKk -lKk -bSW -"} -(96,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -cpc -elF -nky -nky -nIx -nky -wtO -elF -kKs -elF -tKf -vkQ -vkQ -vkQ -tKf -elF -eBw -ufu -vWa -ukI -ukI -ukI -ukI -ukI -ukI -ukI -ukI -ukI -ukI -cpc -goT -rks -tcF -xSc -goT -mAt -uhF -lYg -sab -sab -sab -mWC -oHg -ixy -jUI -jfD -lAd -khm -vlc -vlc -vlc -vlc -vlc -kWQ -qfK -kWQ -kow -vlc -tsC -ltW -ltW -ltW -mAt -mAt -mAt -imd -wac -tXI -cDS -aWG -tPG -lsQ -tPG -tPG -tPG -eUB -wTV -ioo -izg -jfD -ltW -bqM -pvG -pvG -lKk -lKk -lKk -lKk -lTr -fsD -emM -bxI -jLt -snF -snF -snF -jPz -lTr -lTr -pTH -ivS -hBV -bxI -eRl -uzo -hBV -kla -lTr -lKk -pvG -pvG -pvG -oYx -jMk -bqM -pvG -pvG -pvG -lKk -lKk -lKk -pvG -pvG -pvG -nrB -pvG -lKk -lKk -bSW -"} -(97,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -cpc -cpc -ukI -ukI -ukI -ukI -elF -nky -nky -nky -nky -wtO -elF -haL -elF -tKf -elF -kKs -elF -tKf -elF -eGp -iYY -vRm -vRm -vRm -vRm -vRm -vRm -vRm -vRm -vRm -vRm -vRm -vRm -bVx -dJQ -wCV -uKj -goT -mAt -mAt -sab -sab -mWC -uhF -uhF -otn -ueY -tRN -jfD -lAd -khm -mAt -mAt -mAt -mAt -vlc -vlc -vlc -vlc -vlc -vlc -mAt -ltW -ltW -ltW -mAt -mAt -mAt -imd -wYS -cdS -imd -quf -quf -imd -quf -quf -imd -ohs -izg -dNa -imd -jfD -ltW -bqM -pvG -pvG -lKk -lKk -lKk -lKk -lTr -uyr -hMD -usf -lTr -lTr -lTr -qRh -kmb -lTr -uZj -bcP -ehp -qRh -aqL -lTr -fEU -qRh -dNo -lTr -lKk -lKk -pvG -nrB -oYx -jMk -nrA -cat -cat -cat -cat -cat -cat -cat -cat -uoc -pvG -pvG -lKk -lKk -bSW -"} -(98,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -cpc -ukI -ukI -ukI -wXl -ukI -elF -nky -qjd -xuV -qjd -wtO -elF -elF -elF -xli -elF -haL -elF -xli -elF -jIR -iYY -iYY -iYY -iYY -iYY -iYY -iYY -iYY -iYY -iYY -iYY -iYY -iYY -gvk -tOH -wCV -uKj -goT -mAt -mAt -mWC -sab -lYg -uhF -seF -otn -tRN -ueY -jfD -lAd -khm -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -imd -imd -imd -imd -gQu -tnp -ozY -tnp -gQu -imd -hBW -izg -aQq -imd -jfD -ltW -bqM -pvG -pvG -pvG -lKk -lKk -lKk -lTr -lTr -lTr -lTr -lTr -gaz -ssZ -hBV -uOX -lTr -ime -geS -ehp -qRh -hbI -lTr -hdc -poT -dNo -lTr -lKk -lKk -lKk -pvG -oYx -jMk -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -tAp -bqM -pvG -pvG -lKk -lKk -bSW -"} -(99,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -ukI -ukI -ukI -ukI -ukI -ukI -elF -nky -nky -nky -nky -wtO -elF -elF -elF -tKf -elF -qtg -elF -tKf -elF -ePR -vRm -vRm -cxm -cxm -cxm -vRm -iYY -rLs -xif -uns -goT -goT -goT -goT -goT -rnW -goT -goT -goT -goT -goT -goT -goT -goT -goT -otn -otn -otn -jfD -lAd -khm -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -imd -hOK -aro -dgK -clj -tnp -vLt -eXM -izg -ioo -imd -jfD -ltW -bqM -pvG -pvG -pvG -pvG -lKk -lKk -lKk -lKk -lKk -lTr -uIZ -bcP -qRh -qRh -iow -lTr -eZb -qRh -ocg -ehY -rob -lTr -tYt -qRh -dNo -lTr -lKk -lKk -pvG -pvG -oYx -jMk -wPL -pEb -pEb -pEb -pEb -pEb -pEb -emd -tAp -bqM -pvG -pvG -lKk -lKk -bSW -"} -(100,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -ukI -ukI -ukI -ukI -ukI -ukI -ukI -elF -nky -nky -nky -nky -wtO -elF -elF -elF -xli -elF -kKs -elF -xli -elF -jIR -vRm -vRm -cxm -dzQ -miJ -vRm -iYY -qNt -ukI -ukI -pPz -sNU -urp -urp -dRJ -eYF -dRJ -urp -urp -urp -urp -urp -urp -cAN -goT -pEE -avo -avo -nXn -lAd -khm -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -fFq -fFq -fFq -fFq -fFq -mAt -mAt -mAt -imd -tnp -aro -dgK -clj -tnp -tnp -aWG -hMQ -dlP -imd -jfD -ltW -nrA -cat -cat -cat -uoc -pvG -pvG -pvG -pvG -pvG -nLG -bME -qRh -bIq -kRW -eqw -qRh -ybL -nZx -otZ -mwb -dNo -lTr -odt -tZt -oPp -lTr -lKk -lKk -pvG -pvG -oYx -jMk -bqM -oVs -oVs -oOh -oOh -oVs -pvG -oYx -tAp -bqM -pvG -lKk -lKk -lKk -bSW -"} -(101,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -ukI -ukI -ukI -ukI -cpc -cpc -ukI -elF -nky -nky -nky -nky -wtO -elF -kKs -elF -tKf -wBO -haL -elF -oWS -elF -eBw -vRm -vRm -dzQ -iMT -kyK -vRm -iYY -lTN -cxm -ukI -pPz -rks -mIY -mIY -mIY -wCV -mIY -mIY -mIY -mIY -mIY -mIY -mIY -uKj -mle -jfD -ltW -goE -ltW -lAd -khm -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -fFq -fFq -fFq -fFq -fFq -mBN -mBN -sgf -fFq -mAt -mAt -mAt -imd -tnp -aro -tkl -clj -fwE -imd -imd -imd -imd -imd -jfD -ltW -tAp -tAp -tAp -tAp -bqM -pvG -pvG -pvG -pvG -pvG -lTr -orZ -qRh -dSA -oaZ -iUO -lTr -lTr -lTr -lTr -sIL -dNo -lTr -lTr -lTr -lTr -lTr -lTr -sXw -cat -cat -hac -jMk -bqM -oVs -vzm -lJq -fRe -oVs -pvG -oYx -tAp -bqM -pvG -lKk -lKk -lKk -bSW -"} -(102,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -ukI -ukI -ukI -ukI -cpc -cpc -ukI -elF -qGH -qGH -wvb -qGH -sLt -elF -haL -elF -tKf -vkQ -vkQ -vkQ -tKf -elF -eGp -vRm -vRm -cmD -iMT -kyK -vRm -iYY -cxm -ukI -wXl -goT -gSH -jrX -jrX -aPG -mTc -mTc -mTc -mTc -bge -mTc -mTc -mTc -oJh -gvk -glm -lAd -iVi -lAd -lAd -khm -sab -sab -mAt -mAt -mAt -mAt -mAt -mAt -fFq -aDI -slz -bxv -ieG -mcg -mcg -tCg -fFq -mAt -mAt -mAt -imd -hOK -aro -vhO -clj -tnp -imd -mAt -mAt -mAt -mAt -awy -giQ -pEb -pEb -emd -tAp -bqM -vKt -vKt -vKt -vKt -pvG -nLG -bME -ncz -vCV -nae -xfD -twl -pjz -dTl -twl -xym -vbh -hBV -bxI -eRl -pTH -bxI -lTr -oYx -tAp -tAp -hbB -jMk -bqM -oVs -wYw -jaw -jaw -oVs -oVs -oYx -tAp -bqM -lKk -lKk -lKk -lKk -bSW -"} -(103,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -ukI -wXl -ukI -cpc -cpc -cpc -cpc -elF -nky -nky -nky -nky -wtO -elF -elF -elF -pUO -bDn -uGN -bDn -pUO -eyt -jIR -vRm -vRm -uGV -iMT -kyK -vRm -iYY -ukI -ukI -ukI -goT -goT -goT -goT -goT -tHo -goT -fhd -fhd -fhd -vAs -sIb -fhd -fhd -fhd -jfD -ltW -goE -ltW -lAd -khm -sab -sab -sab -sab -mAt -mAt -mAt -mAt -fFq -cay -mcg -cYi -fFq -fDt -mcg -kTZ -fFq -mAt -mAt -mAt -imd -gQu -tnp -wvD -tnp -gQu -imd -mAt -mAt -mAt -fFq -bOk -bOk -fFq -fFq -oYx -tAp -bqM -vKt -vKt -vKt -vKt -vKt -lTr -qkd -mwb -geS -qRh -cgM -qgf -qRh -qRh -qgf -qRh -fuZ -ihZ -rob -lTr -eZb -dNo -bXk -oYx -tAp -tAp -hbB -jMk -bqM -oVs -fId -jaw -cQP -lJq -oVs -oYx -tAp -bqM -lKk -lKk -lKk -lKk -bSW -"} -(104,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -ukI -ukI -ukI -cpc -cpc -cpc -cpc -elF -nky -nky -nky -nky -wtO -aZM -ivP -elF -pUO -bDn -uGN -bDn -czp -ivP -elF -kou -vRm -ukI -uGV -oxa -vRm -iYY -ukI -ukI -ukI -goT -kju -rVf -wTX -eYF -gUG -jQG -fhd -wUG -ffF -ffF -nhw -vdT -cCy -fhd -jfD -ptA -goE -ltW -lAd -khm -sab -sab -sab -sab -sab -sab -mAt -mAt -fFq -nkU -mcg -atk -fFq -fFq -mcg -fFq -fFq -mAt -mAt -mAt -imd -imd -imd -fYm -imd -imd -imd -fFq -fFq -fFq -fFq -fdb -slz -uhf -fFq -oYx -tAp -bqM -ewf -ewf -ewf -ewf -xiO -ewf -ewf -vrw -mYO -mwb -cgM -tDq -eDC -yjz -tDq -qRh -lTr -tYr -dNo -lTr -osg -eqw -cgM -gZa -jMk -jMk -cDg -jMk -bqM -oVs -tVx -jaw -cQP -lJq -oVs -qPn -dtF -lod -oVs -pEm -pEm -pEm -bSW -"} -(105,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -ukI -ukI -ukI -cpc -cpc -cpc -cpc -elF -nky -nky -nky -nky -wtO -elF -mTC -rmK -pUO -bDn -uGN -bDn -qvr -ivP -elF -fsH -vRm -uns -xif -qNt -vRm -iYY -ukI -ukI -ycO -goT -rks -uiA -rRz -nGw -mIY -kaq -fhd -dCv -vAs -ggv -mdF -sYh -wHC -fhd -jfD -ltW -goE -ltW -lAd -nFv -avo -avo -avo -avo -nAp -sab -mAt -mAt -fFq -nkU -nlZ -ijP -fFq -cFI -mcg -qEJ -fFq -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -fFq -vXJ -joo -xTA -cOB -mcg -cYi -fFq -oYx -tAp -bqM -vuJ -qSu -aPg -wsQ -qSu -qSu -ewf -ewf -ewf -mTP -wqL -qRh -qRh -qRh -qRh -cgM -vkF -fRj -qSV -jnQ -xnl -usf -lTr -gZa -tAp -tAp -hbB -tAp -bqM -oVs -oVs -jaw -jaw -oVs -oVs -hPQ -aOd -pJe -oVs -pEm -pEm -pEm -bSW -"} -(106,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -ukI -ukI -ukI -ukI -cpc -cpc -ukI -elF -qjd -nky -xuV -nky -prT -elF -elF -elF -pUO -bDn -uGN -bDn -pUO -elr -flx -vRm -vRm -ukI -rLs -xif -vRm -iYY -ukI -wXl -cmD -goT -rks -tES -lok -wCV -mIY -uKj -fhd -xdW -usp -mdF -ggv -kMh -tKQ -fhd -awy -giQ -giQ -nhu -lAd -lAd -lAd -lAd -lAd -lAd -khm -sab -mAt -mAt -fFq -vuu -mcg -ijP -fFq -dsi -mcg -jSL -fFq -fFq -fFq -fFq -mAt -mAt -mAt -mAt -mAt -mAt -mAt -fFq -qTw -joo -fFq -cOB -mcg -cYi -tKz -oYx -tAp -bqM -ewf -sQQ -vmw -sAR -qSu -qSu -jMP -dUW -ewf -ewf -nvJ -fRj -fRj -fRj -wqL -vkF -usf -lTr -lTr -lTr -lTr -lTr -lTr -gZa -kJw -tAp -hbB -tAp -bqM -uSD -jaw -jaw -aiu -xiU -xiU -aLM -aOd -pJe -oVs -pEm -pEm -pEm -bSW -"} -(107,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -ukI -ukI -ukI -ukI -ukI -ukI -ukI -elF -nky -nky -nky -nky -wtO -elF -elF -elF -pUO -bDn -uGN -bDn -ckR -xif -ukI -vRm -vRm -ukI -ukI -uns -vRm -iYY -ukI -ukI -cmD -goT -cNQ -mTc -mTc -mTc -jrX -sQl -fhd -sjB -rmA -rmA -vdF -vdF -aIl -fhd -mAt -mAt -sab -awy -giQ -giQ -giQ -giQ -nhu -lAd -khm -mAt -mAt -mAt -fFq -dRl -mcg -hJN -fFq -fFq -mcg -mcg -fFq -stQ -cBm -fFq -fFq -fFq -mAt -mAt -mAt -mAt -mAt -fFq -fFq -fFq -fFq -rhB -mcg -cYi -mcg -oYx -tAp -bqM -ewf -ewf -ewf -ewf -qSu -qSu -qSu -qSu -qSu -ewf -lTr -lTr -lTr -lTr -sIL -eqw -lTr -fuZ -ifO -uZx -lTr -lKk -lKk -gZa -jMk -jMk -cDg -jMk -onu -gnj -gnj -gnj -jDc -aOd -aOd -aOd -aOd -aDS -oVs -pEm -pEm -pEm -bSW -"} -(108,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -ukI -ukI -ukI -ukI -ukI -ukI -wXl -elF -qjd -qjd -pci -qjd -acj -elF -elF -elF -pUO -bDn -uGN -bDn -ckR -xif -qNt -cxm -cxm -ukI -ukI -ukI -vRm -iYY -ukI -ukI -uGV -goT -goT -goT -goT -goT -goT -goT -fhd -fhd -fhd -vAs -sIb -fhd -fhd -fhd -otn -otn -mAt -mAt -sab -sab -sab -fpY -jfD -lAd -khm -mAt -mAt -mAt -fFq -lUF -mcg -slh -fFq -dsi -mcg -qmd -fFq -cOB -xDc -lpJ -cBm -fFq -fFq -fFq -fFq -fFq -fFq -fFq -fFq -fdb -slz -gmr -mcg -cYi -fFq -oYx -tAp -bqM -vuJ -qSu -aPg -wsQ -qSu -qSu -qSu -qSu -qSu -uSb -pTH -kAS -hBV -hBV -xym -xfD -hBV -hBV -xym -dNo -lTr -lKk -lKk -oYx -tAp -tAp -hbB -tAp -bqM -oVs -lJq -fQa -jDc -vvE -aOd -vvE -mnG -lPU -oVs -pEm -pEm -pEm -bSW -"} -(109,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -ukI -ukI -ukI -ukI -ukI -ukI -elF -elF -elF -elF -elF -elF -elF -ukI -ukI -pUO -bDn -uGN -bDn -ckR -xif -xif -qNt -xif -cxm -cxm -ukI -vRm -iYY -ukI -ukI -ukI -ukI -qev -ikq -dhg -lBS -dhg -wxJ -ahC -kjO -fhd -liz -vdT -cCy -bWs -hBD -ejE -otn -mAt -mAt -mAt -rRM -rRM -xdY -jfD -lAd -khm -sab -mAt -mAt -fFq -fFq -xrE -bLB -fFq -cFI -mcg -mcg -fFq -pkV -kau -iuw -bom -fFq -rLa -lpJ -pEc -qvM -fdb -lpJ -slz -gmr -mcg -mcg -mcg -cYi -fFq -oYx -tAp -bqM -ewf -sQQ -vmw -sAR -qSu -mXl -ewf -sAR -ewf -ewf -sIL -qRh -qRh -qRh -qRh -vkF -hMD -uSm -uSm -usf -lTr -lKk -lKk -hAi -pEb -pEb -pEb -pEb -bdr -oVs -bqJ -gnj -jDc -aOd -aOd -aOd -pJe -mjN -oVs -pEm -pEm -pEm -bSW -"} -(110,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -ukI -ukI -ukI -wXl -ukI -ukI -cpc -cpc -cpc -ukI -ukI -ukI -ukI -ukI -ukI -pUO -bDn -uGN -bDn -pUO -cpc -cpc -ddi -ddi -lgo -ddi -ddi -blM -rvp -ddi -wXl -ukI -ukI -sKv -wSR -ciJ -qYE -ciJ -gZU -jWC -gOa -fhd -bJr -kMh -wHC -fhd -tHp -lkI -otn -mAt -mAt -mAt -sab -sab -sNi -jfD -lAd -khm -sab -mAt -mAt -mAt -fFq -mcg -nmT -fFq -fFq -fFq -eIm -fFq -bOk -fFq -vwO -fFq -fFq -iBv -lTm -lKh -pfZ -cOB -fgM -iuw -iuw -iuw -iuw -vCT -qUA -fFq -oYx -tAp -bqM -ewf -ewf -ewf -ewf -qSu -qSu -sAR -iMj -prx -dPr -xnl -fRj -fRj -fRj -wqL -eqw -lTr -lTr -lTr -agY -lTr -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -oVs -oGj -gnj -dCN -sDs -sDs -sDs -lPU -mjN -oVs -pEm -pEm -pEm -bSW -"} -(111,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -cpc -ukI -ukI -ukI -ukI -ukI -cpc -cpc -cpc -ukI -ukI -ukI -wXl -ukI -cpc -mgM -bDn -uGN -bDn -kfl -cpc -cpc -ddi -uba -blM -blM -sNV -blM -ceg -ddi -ddi -ukI -ukI -qev -wSR -ciJ -qYE -ciJ -mbq -qYE -kQZ -fhd -bJr -kMh -wHC -fhd -otn -otn -otn -mAt -mAt -mAt -sab -sab -sNi -jfD -lAd -khm -sab -sab -mAt -mAt -fFq -fdb -slz -dUn -aPf -aPf -aPf -aPf -aPf -dUn -aPf -lXe -pDX -wwJ -eQB -ooO -hpb -xHU -rqy -fFq -fFq -fFq -fFq -fFq -fFq -fFq -oYx -tAp -bqM -vuJ -qSu -aPg -wsQ -qSu -qSu -sAR -vZr -lpQ -ewf -ewf -qRh -mDN -lTr -rDU -usf -lTr -aQd -hBV -bxI -lTr -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -oVs -uXm -gnj -gnj -jaw -jaw -jaw -lJq -tao -oVs -pEm -pEm -pEm -bSW -"} -(112,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -cpc -ukI -ukI -ukI -ukI -ukI -cpc -cpc -cpc -cpc -ukI -ukI -ukI -cpc -cpc -rRZ -rRZ -rRZ -rRZ -rRZ -cpc -cpc -ddi -uba -blM -blM -lgo -blM -ceg -pNc -ddi -ukI -lTN -sKv -wSR -qYE -qYE -qYE -qYE -qYE -sUq -vdT -hqE -kMh -wHC -bWs -hBD -ejE -otn -mAt -mAt -mAt -sab -sab -sab -jfD -lAd -khm -sab -sab -mAt -mAt -fFq -cOB -mcg -vkn -iuw -iuw -iuw -iuw -pvT -fgM -iuw -nxN -fFq -xYl -iuw -iuw -bNw -pvT -ooO -dgv -chJ -jUQ -iPJ -fFq -pvG -aij -oYx -tAp -bqM -ewf -sQQ -vmw -sAR -qSu -qSu -ewf -dkn -lpQ -rfG -ewf -pvG -pvG -lTr -lTr -lTr -lTr -iVZ -rBO -dNo -lTr -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -oVs -jaw -fRe -gnj -aSY -gOG -cQP -lJq -oVs -oVs -pEm -pEm -pEm -bSW -"} -(113,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -cpc -cpc -ukI -ukI -ukI -cpc -cpc -cpc -cpc -cpc -ukI -ukI -ukI -cpc -cpc -eWK -dAb -upw -dAb -eWK -cpc -cpc -ddi -ddi -blM -paS -ddi -blM -ceg -ppZ -ddi -ukI -cxm -qev -sVl -dRp -dRp -rAe -qCA -qYE -svT -fhd -vAs -kMh -wHC -fhd -hBD -lkI -otn -mAt -mAt -mAt -sab -sab -sab -jfD -lAd -nFv -avo -avo -nAp -mAt -fFq -rhB -mcg -rqy -fFq -fFq -fFq -fFq -cOB -cYi -fFq -fFq -fFq -bOk -bOk -bOk -fFq -cOB -eQB -mcg -mcg -mcg -kfj -fFq -bXB -fHN -frK -sZo -fDp -ewf -ewf -ewf -ewf -qSu -mXl -ewf -wkj -ogs -oIh -ewf -bXB -bXB -bXB -bXB -bXB -lTr -kba -qRh -dNo -lTr -uDY -uDY -uDY -uDY -uDY -uDY -uDY -uDY -oVs -oVs -wjT -gnj -qHU -ycn -xku -oVs -oVs -wke -wke -wke -wke -ffn -"} -(114,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -cpc -cpc -ukI -ukI -ukI -cpc -nRL -nRL -nRL -nRL -ssp -ssp -nRL -nRL -cpc -eWK -dAb -upw -dAb -eWK -cpc -cpc -ddi -uba -blM -paS -fAS -blM -ceg -ddi -ddi -cxm -qNt -qev -cMR -jWC -dRp -dRp -dRp -dRp -xfV -rmA -rmA -vdF -aIl -fhd -otn -otn -otn -mAt -mAt -mAt -sab -sab -sab -jfD -lAd -goE -ltW -ltW -khm -fFq -fFq -cOB -nhy -rqy -fFq -ylm -aZq -vqA -cse -uRT -vqA -bxv -fFq -akz -vdE -vOd -fFq -rhB -azC -hSB -hSB -hSB -cYi -bOk -bXB -bXB -frK -sZo -fDp -vuJ -qSu -aPg -wsQ -qSu -qSu -ewf -aZI -qSu -wPE -ewf -bXB -bXB -bXB -bXB -bXB -lTr -slu -otN -esA -lTr -bXB -bXB -bXB -rzK -oRp -oRp -oRp -oRp -oRp -oVs -vqc -gnj -jaw -jaw -qqZ -oVs -wke -wke -wke -wke -wke -ffn -"} -(115,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -aRe -aRe -aRe -aRe -aRe -cpc -nRL -ssp -xxc -nRL -nRL -lCa -hhz -lFa -oph -hhz -gwI -nRL -taE -eWK -dAb -upw -dAb -eWK -cpc -cpc -ddi -uba -blM -paS -ddi -lKM -ceg -ddi -ddi -cxm -xif -qev -sqg -cHh -jWB -xfV -kLV -kLV -iwj -fhd -kMh -sIb -fhd -fhd -mAt -mAt -mAt -mAt -mAt -sab -sab -sab -fpY -jfD -lAd -goE -ltW -ltW -khm -kNI -slz -gmr -ehd -oBv -mcg -akz -vdE -vdE -vdE -vdE -vOd -slh -fFq -doH -hSB -jFY -fFq -cOB -azC -hSB -hSB -hSB -cYi -bOk -bXB -bXB -frK -sZo -fDp -ewf -sQQ -vmw -sAR -qSu -qSu -uSb -qSu -qSu -iaW -ewf -bXB -bXB -bXB -bXB -bXB -lTr -aQz -uSm -usf -lTr -bXB -bXB -bXB -rzK -oRp -oRp -oRp -oRp -oRp -oVs -jaw -gnj -jaw -jaw -qqZ -oVs -wke -wke -wke -wke -wke -ffn -"} -(116,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -nRL -uMT -oQK -oQK -nRL -mxP -oQK -fSi -fSi -hhz -vEt -gIE -taE -eWK -dAb -upw -dAb -eWK -cpc -cpc -ddi -uba -blM -blM -sNV -blM -blM -blM -ddi -rLs -pmN -qev -qev -qev -wSR -uxz -qev -qev -qev -fhd -sab -sab -sab -sab -sab -mAt -mAt -pEE -avo -avo -avo -avo -avo -nXn -lAd -goE -ltW -ltW -khm -kNI -mcg -mcg -ehd -eQB -tOl -eCb -hSB -hSB -hSB -tbl -xfz -akT -vdE -hXC -hSB -jFY -fFq -cOB -azC -hSB -hSB -hSB -cYi -fFq -bXB -fHN -frK -sZo -fDp -ewf -ewf -ewf -ewf -ewf -ewf -ewf -ewf -ewf -ewf -ewf -bXB -bXB -wTz -bXB -bXB -lTr -nLG -nLG -lTr -lTr -bXB -bXB -bXB -rzK -oRp -oRp -oRp -oRp -oRp -oVs -jaw -gnj -jaw -iwO -qGa -oVs -wke -wke -wke -wke -wke -ffn -"} -(117,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -nRL -oQK -iEY -oQK -nRL -lCa -oQK -oQK -oQK -fHt -oQK -fSi -taE -fry -dAb -upw -dAb -nxO -cpc -cpc -ddi -ddi -blM -blM -ddi -ddi -blM -ddi -ddi -pmN -oqF -cpc -cpc -qev -wSR -uxz -qev -mAt -mAt -mAt -uhF -sab -sab -sab -sab -sab -sab -jfD -ltW -ltW -ltW -ltW -ltW -ltW -lAd -goE -ltW -ltW -khm -kNI -mcg -mcg -mcg -eQB -tOl -eCb -hSB -hSB -hSB -hSB -sVp -jBy -wnu -sOH -hSB -jFY -fFq -cOB -azC -azC -hSB -hSB -cYi -fFq -uDY -uDY -frK -sZo -fDp -uDY -uDY -uDY -uDY -uDY -uDY -uDY -uDY -uDY -uDY -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -rzK -oRp -oRp -oRp -twr -twr -oVs -jaw -gnj -jaw -fUK -llk -oVs -wke -wke -wke -wke -wke -ffn -"} -(118,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -nRL -eWT -kDl -oQK -nRL -nRL -xxc -nRL -nRL -iuL -guI -oQK -taE -eWK -dAb -upw -dAb -eWK -cpc -cpc -ddi -uba -blM -blM -ddi -blM -blM -blM -ddi -cpc -cpc -cpc -cpc -qev -sqg -eFS -qev -mAt -mAt -mAt -uhF -uhF -uhF -fpY -sab -sab -fpY -jfD -ltW -alu -giQ -giQ -giQ -nhu -lAd -goE -ltW -ltW -khm -kNI -iuw -pvT -mcg -oBv -mcg -aMB -hSB -hSB -hSB -hSB -dwi -cYi -fFq -qjA -hSB -jFY -fFq -cOB -hSB -azC -hSB -hSB -cYi -fFq -uDY -uDY -sUK -sZo -fDp -uDY -uDY -uDY -uDY -uDY -uDY -uDY -uDY -uDY -uDY -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -wTz -bXB -twr -twr -twr -twr -twr -twr -oVs -oVs -gnj -cim -oVs -oVs -oVs -wke -wke -wke -wke -wke -ffn -"} -(119,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -nRL -oQK -kDl -guI -oQK -oQK -oQK -vww -nRL -iuL -guI -oQK -gDg -eWK -dAb -upw -dAb -eWK -cpc -cpc -ddi -uba -blM -blM -ddi -blM -blM -blM -ddi -cpc -cpc -cpc -cpc -qev -qYE -xux -qev -mAt -mAt -mAt -mAt -mAt -mAt -pEE -avo -avo -avo -nXn -ltW -khm -ltW -eul -flQ -jfD -lAd -goE -ltW -ltW -khm -fFq -fFq -cOB -mcg -xqP -fFq -uJI -pVU -pVU -pVU -pVU -qZN -slh -fFq -doH -hSB -jFY -fFq -cOB -hSB -jhY -uRx -hSB -cYi -fFq -uDY -uDY -frK -sZo -fDp -uDY -uDY -uDY -uDY -uDY -uDY -uDY -uDY -uDY -uDY -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -twr -twr -twr -twr -twr -twr -twr -cUK -xDC -xiA -twr -twr -wke -wke -wke -wke -wke -wke -ffn -"} -(120,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -nRL -oQK -fSi -oQK -oQK -oQK -oQK -niF -nRL -dkX -guI -oQK -gDg -eWK -dAb -upw -dAb -eWK -cpc -cpc -ddi -ddi -ddi -ddi -ddi -blM -blM -ddi -ddi -cpc -oOH -fuP -fuP -fuP -fuP -vJH -fuP -fuP -fuP -fuP -fuP -uby -sAB -jfD -ltW -ltW -goE -ltW -ltW -khm -ltW -ltW -ltW -awy -oRF -giQ -giQ -giQ -btc -mAt -fFq -vCz -uvt -rqy -fFq -fFq -yja -ups -gIN -hJu -pNr -cYi -fFq -doH -hSB -jFY -fFq -xrE -wAR -azC -hSB -wAR -bLB -fFq -uDY -fHN -frK -sZo -fDp -uDY -wxb -wxb -wxb -wxb -wxb -wxb -wxb -wxb -wxb -wxb -wxb -wxb -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -bXB -twr -twr -twr -twr -twr -twr -twr -twr -xDC -xiA -xiA -twr -twr -wke -wke -wke -wke -wke -wke -ffn -"} -(121,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -nRL -gpS -oQK -oQK -jPn -eyK -oQK -oQK -nRL -iuL -guI -oQK -taE -eWK -dAb -upw -dAb -nxO -cpc -cpc -cpc -cpc -cpc -cpc -ddi -lgo -lgo -ddi -cpc -cpc -fUw -wtc -wtc -wtc -ger -qFs -wag -qFs -qFs -sDa -qbP -tGN -sAB -jfD -ltW -ltW -goE -ltW -ltW -khm -ltW -ltW -ltW -ltW -lAd -qss -ltW -fRf -qss -mAt -fFq -tVO -iMm -ooO -slz -slz -gmr -mcg -mcg -kfj -pbb -cYi -fFq -doH -hSB -jFY -fFq -fFq -fFq -azC -hSB -fFq -fFq -fFq -bXB -fHN -frK -sZo -fDp -wxb -wxb -ocR -nLu -hAs -nID -wxb -rcQ -rcQ -rcQ -tLT -lBJ -pmu -bXB -bXB -bXB -bXB -bXB -wTz -bXB -bXB -bXB -bXB -twr -twr -twr -twr -twr -twr -twr -twr -xDC -xiA -xiA -twr -twr -wke -wke -wke -wke -wke -wke -ffn -"} -(122,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -nRL -nRL -xxc -nRL -nRL -eyK -guI -oQK -nRL -nRL -nRL -nRL -taE -eWK -dAb -upw -dAb -eWK -enY -eWK -eWK -eWK -eWK -eWK -eWK -eWK -eWK -eWK -eWK -eWK -ylU -ylU -uDA -uDA -kXp -uDA -kXp -uDA -uDA -mkm -qbP -tGN -kAQ -jfD -ltW -ltW -goE -ltW -ltW -khm -ltW -ltW -ltW -ltW -lAd -qss -tLz -bBS -qss -mAt -fFq -cOB -sEM -wKl -iuw -iuw -pvT -mcg -qZk -cYi -pbb -cYi -fFq -doH -hSB -xfz -vdE -cOm -vdE -sWo -xNq -vdE -cOm -djG -xYp -dfc -jWk -sZo -fDp -wxb -efV -mJy -hrt -hrt -svW -wxb -obW -qjE -qjE -diK -pNp -diK -bXB -wTz -bXB -bXB -gxB -cDF -sCv -cDF -gxB -rzK -rzK -twr -twr -twr -twr -twr -gxB -gxB -lqt -tpV -gxB -gxB -wke -wke -wke -wke -wke -wke -wke -ffn -"} -(123,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -nRL -lwT -oQK -oQK -nRL -uvS -xBJ -xBJ -oQK -hhz -eWT -gwI -taE -fry -dAb -upw -dAb -dAb -enY -dAb -dAb -dAb -dAb -dAb -dAb -dAb -dAb -dAb -dAb -dAb -olr -olr -tXA -tQO -qbP -qbP -qbP -qbP -tXA -mkm -qbP -tGN -kAQ -jfD -ltW -ltW -goE -ltW -ltW -khm -gaV -gZp -iOh -jTz -hbg -ljL -uyw -iIT -vDr -mAt -fFq -cOB -bVc -rqy -fFq -fFq -fdc -ool -lXh -pfZ -pNr -cYi -fFq -doH -hSB -hSB -hSB -hSB -hSB -azC -hSB -hSB -hSB -dyG -iEg -sZo -sZo -sZo -fDp -pmu -ybm -diK -diK -diK -iyv -wxb -caI -caI -caI -diK -pNp -wxb -bXB -bXB -bXB -bXB -gxB -wtb -vZx -xCx -gxB -rzK -oRp -oRp -oRp -oRp -twr -twr -gxB -xGy -lqt -juN -xGy -gxB -wke -wke -wke -wke -wke -wke -wke -ffn -"} -(124,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -nRL -iEY -oQK -fHt -nRL -iEY -kDl -xBJ -oQK -fuI -oQK -oQK -taE -eWK -dAb -jxe -evt -evt -oyX -evt -evt -evt -evt -evt -evt -evt -evt -evt -evt -evt -tBW -tBW -tXA -iwe -dnB -olN -iwe -dnB -tXA -mkm -qbP -tGN -sAB -jfD -ltW -ltW -goE -ltW -ltW -khm -ltW -ltW -ltW -ltW -lAd -rUc -jAb -jAb -kHc -kHc -kHc -cOB -mcg -xqP -fFq -vqA -vqA -vqA -vqA -vqA -cse -slh -fFq -qjA -hSB -sVp -wnu -mUB -wnu -rmk -rmk -qfy -sUr -idp -pfA -hIA -hIA -hIA -sWp -xWK -xwx -gNM -gNM -gkJ -pNp -wxb -obW -qjE -qjE -niO -eeS -wxb -gxB -gxB -gxB -gxB -gxB -nmJ -juN -lwe -gxB -gxB -gxB -gxB -oRp -oRp -oRp -oRp -gxB -xGy -lqt -juN -hmo -gxB -wke -wke -wke -wke -wke -wke -wke -ffn -"} -(125,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -nRL -gwI -oQK -oQK -nRL -gwI -kDl -xBJ -oQK -ikz -ikz -bMk -taE -eWK -dAb -upw -dAb -dAb -enY -dAb -dAb -dAb -dAb -dAb -dAb -dAb -dAb -dAb -dAb -dAb -olr -olr -tXA -qbP -qbP -qbP -qbP -qbP -tXA -mkm -qbP -tGN -sAB -jfD -ltW -pgf -goE -ltW -ltW -khm -ltW -ltW -ltW -ltW -lAd -jAb -heU -sgI -dOt -dBX -kHc -cOB -mcg -oBv -mcg -akz -vdE -vdE -vdE -vdE -vOd -cYi -fFq -doH -hSB -jFY -fFq -fFq -fFq -hSB -hSB -fFq -fFq -fFq -frK -sZo -sZo -sZo -fDp -wxb -wxb -wxb -wxb -pso -pNp -wxb -rcQ -rcQ -rcQ -ybm -pNp -wxb -jxx -qnC -soK -gxB -wtb -pWd -juN -lwr -cfJ -cQJ -qNX -gxB -oRp -oRp -oRp -oRp -gxB -uDB -lqt -juN -xGy -gxB -wke -wke -wke -wke -wke -wke -wke -ffn -"} -(126,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -nRL -tja -tja -tja -nRL -oQK -xBJ -xBJ -nRL -fSi -fSi -oQK -taE -eWK -dAb -upw -dAb -eWK -enY -eWK -eWK -eWK -eWK -eWK -eWK -eWK -eWK -eWK -eWK -eWK -ylU -ylU -uDA -enB -kXp -uDA -kXp -uDA -uDA -mkm -qbP -tGN -kAQ -jfD -ltW -ltW -goE -ltW -ltW -khm -gaV -gZp -iOh -ltW -lAd -jAb -nyG -fuT -wwk -oZS -kHc -cOB -mcg -eQB -tOl -eCb -hSB -hSB -hSB -rjU -xfz -akT -vdE -hXC -hSB -jFY -fFq -otz -gfk -hSB -hSB -vsu -xeM -fFq -frK -sZo -sZo -sZo -fDp -wxb -qHn -lBJ -kSA -oIi -pNp -wxb -wxb -wxb -wxb -ybm -pNp -wxb -juN -juN -kZR -gxB -nmJ -juN -juN -gwQ -gwQ -gwQ -nxi -gxB -oRp -oRp -oRp -oRp -gxB -xGy -lqt -juN -xGy -gxB -wke -wke -wke -wke -wke -wke -wke -ffn -"} -(127,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -nRL -nRL -nRL -nRL -nRL -oQK -xBJ -oQK -nRL -nRL -nRL -nRL -taE -eWK -dAb -upw -dAb -eWK -ozw -ozw -ozw -nzn -xjd -iEG -jli -jli -nzn -nzn -nzn -nzn -wcS -qbP -qbP -qbP -imN -sDa -imN -sDa -sDa -sDa -qbP -tGN -kAQ -jfD -ltW -ltW -goE -ltW -ltW -khm -ltW -ltW -ltW -ltW -lAd -uVZ -jvj -uYB -uYB -wYb -uVZ -wwJ -eQB -eQB -tOl -eCb -hSB -hSB -hSB -hSB -hSB -kmA -hSB -aNk -hSB -xLq -fFq -xot -hSB -hSB -bxa -hSB -cYi -fFq -oCK -nqX -nqX -nqX -otj -wxb -vvh -wpN -smh -sDn -pNp -wxb -bQQ -bJk -wxb -ybm -okq -qoa -lqt -lqt -lqt -nqE -wkv -juN -juN -gwQ -gwQ -gwQ -biS -gxB -gxB -gxB -gxB -gxB -gxB -gxB -lqt -tpV -gxB -gxB -wke -wke -wke -wke -wke -wke -wke -ffn -"} -(128,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -cpc -nRL -oQK -oCe -nRL -nRL -ukI -ukI -ukI -taE -nUB -dAb -upw -dAb -cnZ -ozw -slf -slf -nzn -ign -yff -fZB -jKg -fOI -hgD -fEG -nzn -noR -qbP -qbP -qbP -sDa -qbP -fbj -qbP -qbP -qbP -qbP -tGN -sAB -jfD -ltW -ltW -goE -ltW -ltW -khm -ltW -ltW -ltW -ltW -ltW -kHc -vqQ -iPU -jrs -icT -kHc -rhB -mcg -eQB -tOl -eCb -hSB -hSB -hSB -hSB -sVp -jBy -wnu -sOH -hSB -jFY -oGY -aHd -hSB -hSB -hSB -hSB -yau -fFq -uDY -uDY -uDY -uDY -uDY -wxb -hBp -uEh -wxb -oYv -gZy -qoa -sDn -ikM -qcX -ogd -okq -wxb -hsV -cDF -gxB -gQR -liy -iEq -soK -gwQ -gwQ -gwQ -biS -gxB -udP -udP -udP -mzL -udP -mzL -lxw -qnR -sDj -gxB -wke -wke -wke -wke -wke -wke -wke -ffn -"} -(129,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -aRe -aRe -aRe -aRe -cpc -joe -joe -ofj -ofj -ofj -ofj -ofj -ofj -ePr -pwO -vLr -vLr -vLr -pwO -fEf -kBM -kBM -wAz -lql -kuM -kuM -xjd -sps -xjd -yie -nzn -noR -qbP -qbP -qbP -sDa -xYi -vRq -xYi -qbP -jSP -amG -ybf -sAB -awy -quk -giQ -giQ -giQ -giQ -btc -ltW -ltW -ltW -ltW -ltW -kHc -bxD -jAb -kHc -kHc -kHc -xrE -iuw -hUX -mcg -aMB -wnu -wnu -wnu -wnu -dwi -slh -fFq -doH -hSB -jFY -oGY -jxg -aMB -hSB -hSB -dwi -cYi -fFq -uDY -uDY -uDY -uDY -uDY -wxb -wxb -wxb -wxb -qeT -wxb -wxb -gUY -kWB -clm -kWB -dpl -wxb -qtq -gNE -jdi -gxB -tPe -sGU -dGQ -lqt -lqt -lqt -nLq -huC -lxw -lxw -lxw -lxw -aBL -lxw -lxw -qnR -iRw -gxB -wke -wke -wke -wke -wke -wke -wke -ffn -"} -(130,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -joe -joe -joe -joe -joe -joe -joe -joe -joe -pwO -vRN -vRN -vRN -cdn -nyq -nyq -nyq -nzn -nLo -ise -iIQ -rWO -mBh -eME -pgj -nzn -jmn -ucN -rxZ -hZZ -sDa -gDs -sAB -aJF -qbP -tGN -sAB -sAB -sAB -qTm -wOH -tPs -tPs -oeb -sab -fpY -ltW -kss -ltW -ltW -bBS -kHc -jfw -cek -vFn -kNh -kHc -fFq -mcg -bvW -fFq -pVU -sbG -pVU -pVU -pVU -sbG -bLB -fFq -doH -hSB -jFY -fFq -xrE -wAR -jbt -jNA -wAR -wUX -fFq -uDY -uDY -uDY -uDY -uDY -wxb -vpp -lCC -lCC -lCC -lBJ -wxb -ybm -kWB -clm -kWB -dIg -ksC -oNh -juN -rit -gQR -eRA -cdX -soK -gwQ -gwQ -gwQ -biS -juN -qnR -qnR -qnR -qnR -gxB -gxB -qnR -qnR -iRw -gxB -wke -wke -wke -wke -wke -wke -wke -ffn -"} -(131,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -thq -thq -wIk -thq -thq -ukI -ukI -ukI -cpc -cpc -jVk -dAb -upw -dAb -cWV -ozw -xtl -ozw -nzn -nzn -pgp -kuM -nzn -nQL -xjd -pgj -nzn -nzn -jli -nzn -lNl -qsb -fld -sAB -crQ -qbP -tGN -rhM -lRa -pbs -iLP -iLP -kHG -tPs -uhF -mWC -sab -ltW -ciR -ltW -bBS -bBS -kHc -ouN -wwk -wwk -cZH -kHc -gwZ -bCz -fmi -fFq -fFq -fFq -fFq -fFq -fFq -fFq -fFq -fFq -qjA -hSB -jFY -fFq -fFq -fFq -fFq -fFq -fFq -fFq -fFq -uDY -uDY -uDY -uDY -uDY -wxb -cgL -nOC -xin -diK -pNp -wxb -oLu -uTs -wKV -fmL -uEh -wxb -qsB -jcT -yjP -gxB -wkv -juN -juN -gwQ -gwQ -gwQ -nxi -gxB -sIg -qnR -qnR -qnR -qnR -oUK -qnR -qnR -iRw -gxB -wke -wke -wke -wke -wke -wke -wke -ffn -"} -(132,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -thq -wGX -doF -hfV -thq -plp -ukI -cpc -cpc -cpc -xCY -dAb -upw -dAb -eWK -ozw -nyq -mld -mld -nzn -iFe -kuM -fZB -fZB -xjd -pgj -nzn -oVZ -sTB -nzn -nzn -ktR -qbP -qbP -qbP -qbP -tGN -rhM -cuW -mGz -qTm -qTm -bEi -tPs -uhF -uhF -sab -ltW -ltW -ltW -ltW -vPW -kHc -xEn -iPU -iPU -qEi -aQK -anI -rRa -irB -bCz -bCz -pPb -fFq -mTx -mTx -mTx -mTx -mTx -fVx -iQI -fsx -mTx -mTx -mTx -mTx -mTx -ylX -ylX -ylX -uDY -uDY -uDY -uDY -uDY -wxb -wxb -huf -aks -aLJ -mCy -wxb -dgd -uEh -wxb -wxb -wxb -wxb -cDF -cDF -gxB -gxB -jsM -lqt -juN -gwQ -gwQ -gwQ -biS -gxB -rNT -rNT -rNT -bSw -qnR -qnR -qnR -qnR -iRw -gxB -wke -wke -wke -wke -wke -wke -wke -ffn -"} -(133,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -thq -wGX -doF -eIF -thq -hzU -ukI -wXl -cpc -cpc -xCY -dAb -upw -dAb -eWK -rhL -nyq -nyq -nyq -xzc -tRH -uFz -wHJ -wHJ -xsy -ecH -nix -lql -bAF -uRt -nzn -ktR -qbP -lYu -hfa -qbP -tGN -fpF -eLR -pRD -gvH -gvH -bbI -tPs -mAt -uhF -sab -ltW -ltW -ltW -ltW -hyc -kHc -kHc -kHc -kHc -kHc -kHc -fFq -uPz -eQB -rHE -sxC -mbV -fFq -mTx -mTx -mTx -mTx -mTx -fVx -iQI -fsx -mTx -mTx -mTx -mTx -mTx -ylX -ylX -ylX -uDY -xRZ -xRZ -xRZ -xRZ -xRZ -wxb -wxb -wxb -wxb -wxb -wxb -diK -mru -wxb -uDY -uDY -uDY -bXB -bXB -uDY -gxB -eBy -mpq -qmO -wyr -wDf -gqV -biS -gxB -gxB -gxB -gxB -gxB -rNT -bSw -vLo -qnR -gxB -gxB -gxB -gxB -gxB -gxB -gxB -gxB -wke -ffn -"} -(134,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -thq -hwI -hfV -lgq -kLq -dXe -ukI -ukI -ukI -taE -wUR -dAb -upw -dAb -eWK -rhL -hir -nyq -nyq -xjd -qtt -vgn -fuW -jjx -nzn -nzn -nzn -fwq -kuM -lwW -kkK -ktR -qbP -hNO -epx -qbP -tGN -tPs -tPs -tPs -qTm -wOH -tPs -tPs -mAt -mAt -mAt -xmB -ltW -ltW -ltW -buo -sab -sab -fFq -mhb -djx -mcg -fFq -nQG -eQB -vpn -fFq -fFq -otn -aJu -aJu -aJu -mTx -mTx -fVx -iQI -fsx -mTx -mTx -mTx -mTx -mTx -ylX -ylX -oeQ -laC -laC -laC -laC -laC -laC -thm -laC -laC -xRZ -iId -lYi -lYi -lYi -xRZ -uDY -uDY -uDY -bXB -bXB -uDY -gxB -gxB -wkv -lwe -gxB -gxB -oMo -lwe -gxB -wtb -vZx -xCx -gxB -gxB -gxB -gxB -gxB -gxB -crM -crM -crM -crM -iDO -weg -gxB -wke -ffn -"} -(135,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -thq -aIS -hfV -ufQ -kLq -ukI -ukI -ukI -ukI -taE -xCY -dAb -upw -dAb -eWK -rhL -uYD -nyq -nyq -nzn -pbc -pgj -qLj -ccq -nzn -iNz -gJR -cNU -kuM -ede -jli -ktR -asn -eHW -egp -qbP -tGN -nDX -aHt -iLP -iLP -wFz -tPs -mAt -mAt -mAt -mAt -mut -ltW -ltW -ltW -ltW -ltW -ltW -waM -mcg -mcg -mcg -waM -nQG -eQB -qzY -fFq -aJu -aJu -aJu -aJu -aJu -mTx -mTx -fVx -iQI -fsx -iQI -thp -qRP -mTx -mTx -ylX -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -oZB -lYi -xRZ -qyW -xRZ -uDY -uDY -bXB -bXB -bXB -bXB -xMx -ulo -pTu -rTu -vZx -hdv -pWd -rTu -vZx -weR -gxB -vFJ -vZx -vZx -hdv -vZx -xCx -uuY -qnR -qnR -qnR -qnR -qnR -wjb -gxB -wke -ffn -"} -(136,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -thq -thq -thq -thq -thq -wXl -ukI -ukI -ukI -umm -xCY -dAb -upw -dAb -nxO -ozw -mUp -snd -nyq -nzn -iGl -vIX -vZy -bgD -nzn -dYA -gKX -gKX -cic -mmW -nzn -ktR -qbP -tmv -dIa -qbP -tGN -qTm -kKN -gvH -gvH -dHf -tPs -mAt -mAt -mAt -mAt -ltW -kss -ltW -ltW -ltW -sab -sab -fFq -xDz -hHj -rZN -fFq -nQG -rev -pnB -tKz -iQI -iQI -iQI -iQI -iQI -iQI -iQI -fVx -iQI -bwV -gPK -rSU -qRP -mTx -mTx -ylX -xRZ -oeQ -laC -laC -laC -laC -thm -laC -laC -laC -laC -xRZ -iId -lYi -xRZ -xRZ -xRZ -bXB -bXB -bXB -bXB -bXB -bXB -juN -oMo -lqt -juN -juN -juN -juN -juN -juN -epu -gxB -juN -juN -juN -juN -juN -lwe -juN -qnR -qnR -vLo -qnR -qnR -qnR -gxB -wke -ffn -"} -(137,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -ukI -ukI -ukI -ukI -ukI -taE -wUR -dAb -upw -dAb -eWK -ozw -snd -qBb -nyq -nzn -gJj -aJt -nzn -nzn -nzn -gvC -jli -jli -nzn -nzn -nzn -oZy -qbP -sAB -sAB -qbP -tGN -tPs -tPs -tPs -jEJ -tPs -tPs -mAt -mAt -mAt -mAt -ltW -ciR -tLz -tLz -lWT -sab -sab -fFq -xDz -xsU -rZN -fFq -anI -hjq -sCM -mcg -iQI -iQI -iQI -iQI -iQI -iQI -iQI -fVx -iQI -iQI -iQI -fsx -iQI -aJu -mTx -ylX -xRZ -qyW -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -oZB -lYi -evz -xRZ -xRZ -bXB -bXB -bXB -bXB -bXB -bXB -gxB -eBy -mpq -qmO -tJe -rJK -juN -juN -juN -juN -evj -aBH -juN -juN -juN -juN -lwe -gxB -mDh -qnR -mDn -mDn -qnR -mDh -gxB -wke -ffn -"} -(138,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -ukI -ukI -ukI -ukI -wXl -gVs -xCY -dAb -upw -dAb -eWK -ozw -ozw -ozw -xtl -nzn -jli -jli -nzn -rJU -qgo -qgo -qgo -qgo -qgo -qgo -qgo -pBj -qbP -iwe -dnB -qbP -tGN -tPs -jLK -psI -jLh -aLY -tPs -mAt -mAt -mAt -mAt -mAt -mAt -mAt -aTO -aTO -aTO -aTO -aTO -aTO -aTO -aTO -aTO -aTO -loQ -aTO -aTO -aTO -aTO -mTx -mTx -mTx -aJu -aJu -fVx -iQI -iQI -iQI -fsx -iQI -aJu -aJu -nBb -xRZ -oeQ -laC -laC -thm -laC -laC -laC -laC -laC -laC -xRZ -xRZ -lYi -xRZ -xRZ -xRZ -bXB -bXB -wTz -bXB -bXB -bXB -gxB -gxB -wkv -lwe -gxB -gxB -kRn -kRn -kRn -kRn -gQR -eBy -evj -evj -evj -aBH -lwe -gxB -mDh -qnR -imf -mDh -qnR -mDh -gxB -wke -ffn -"} -(139,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -cpc -cpc -ukI -ukI -ukI -gVs -xCY -dAb -upw -dAb -eWK -ozw -cEe -tQo -tQo -tQo -tQo -tQo -tQo -nuK -kBM -nyq -gsV -nyq -nyq -ozw -nyq -qbP -qbP -qbP -qbP -qbP -tGN -eqk -hwf -qTm -qTm -kvW -tPs -mAt -mAt -mAt -mAt -mAt -mAt -mAt -aTO -niB -lTH -uml -rOQ -sNt -pOl -dTc -loG -rOQ -jZM -pOl -wbf -xLR -aTO -aTO -mTx -mTx -mTx -mjb -weG -giW -eqh -iQI -fsx -iQI -aJu -nBb -aJu -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -jmt -xRZ -oZB -lYi -xRZ -xRZ -xRZ -bXB -bXB -uyi -uyi -uyi -uyi -gxB -woe -pTu -rTu -cRk -gxB -mkf -juN -juN -juN -gxB -juN -tpV -gxB -gxB -nmJ -lwe -gxB -gxB -gxB -gxB -gxB -gxB -gxB -gxB -wke -ffn -"} -(140,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -cpc -bJH -bJH -ePx -bJH -bJH -xCY -dAb -upw -dAb -eWK -ozw -lPw -kBM -kBM -kBM -kBM -kBM -kBM -kBM -lbq -usE -usE -usE -usE -usE -ifk -qbP -jSP -cFQ -rxZ -hZZ -tGN -tPs -juc -fUN -slV -oJs -tPs -mAt -mAt -mAt -mAt -mAt -mAt -mAt -aTO -lTM -lTH -aTO -fSf -hci -bDQ -qds -srr -bAW -srr -icS -icS -iEz -dTc -aTO -aTO -aTO -aTO -mTx -iQI -iQI -fVx -iQI -fsx -iQI -aJu -aJu -nBb -xRZ -oeQ -thm -laC -laC -laC -laC -laC -laC -laC -laC -xRZ -xRZ -lYi -xRZ -gxB -gxB -cDF -cDF -cDF -gxB -gxB -gxB -gxB -pxJ -mij -soK -biS -cDF -juN -juN -juN -kZR -gxB -juN -faM -eFL -gxB -oMo -rTu -xCx -gxB -twr -twr -oRp -oRp -oRp -oRp -oRp -eOQ -"} -(141,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -cpc -bJH -fmE -fXN -eUK -bJH -xCY -dAb -upw -dAb -nxO -ozw -sRJ -nyq -xnu -usE -wAL -ach -usE -mMf -doL -khe -khe -wBu -khe -khe -fhd -kMh -cqp -sVY -fhd -vrE -ybf -tPs -tPs -tPs -tPs -tPs -tPs -mAt -mAt -mAt -mAt -mAt -mAt -mAt -aTO -aTO -aTO -aTO -lmg -vQp -bDQ -lae -aTO -saU -icS -mTe -icS -oor -cuM -aTO -oUJ -wcx -aTO -mTx -iQI -iQI -fVx -iQI -fsx -iQI -aJu -mjb -ylX -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -oZB -lYi -qyW -gxB -njT -lGT -njT -lGT -njT -lGT -njT -gxB -fBM -mij -soK -biS -cDF -juN -juN -juN -juN -gxB -mkf -juN -soK -gxB -oMo -juN -lwe -gxB -twr -twr -twr -oRp -oRp -oRp -oRp -eOQ -"} -(142,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -cpc -bJH -vOs -fXN -iqq -bJH -xCY -dAb -upw -dAb -eWK -rhL -sRJ -cii -xDn -khe -uIv -uIv -khe -cFf -sQv -khe -tlV -aWX -vtB -khe -hzd -sYh -wHC -fhd -fhd -fhd -fhd -otn -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -aTO -niB -czN -aTO -fSf -vQp -urQ -bie -aTO -mpF -kti -kjN -urQ -wIv -nUP -cCn -wGt -wcx -lZB -aJu -iQI -iQI -fVx -iQI -fsx -iQI -aJu -mTx -ylX -xRZ -oeQ -laC -laC -thm -laC -nuu -laC -laC -laC -laC -xRZ -iId -lYi -xRZ -gxB -njT -juN -njT -juN -njT -juN -njT -gxB -pxJ -lqt -juN -lwe -cDF -juN -juN -juN -juN -gxB -umi -faM -jlo -gxB -nmJ -juN -lwe -gxB -twr -twr -twr -oRp -oRp -oRp -oRp -eOQ -"} -(143,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -cpc -bJH -aXO -aXO -kJM -bJH -wUR -dAb -upw -dAb -eWK -rhL -sRJ -nyq -xDn -khe -gjz -hTQ -khe -bfe -end -khe -tlV -aWX -vtB -khe -hzd -kMh -wHC -bWs -iQS -mAE -fhd -mAt -mAt -mAt -mAt -mAt -mAt -mAt -mAt -owq -seF -mAt -mAt -mAt -aTO -lTM -lTH -uml -arA -fjN -icS -nUP -loG -arA -icS -roy -icS -wIv -rlF -cCn -wcx -oUJ -lZB -aJu -iQI -iQI -fVx -iQI -fsx -iQI -aJu -mTx -ylX -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -evz -xRZ -oZB -lYi -xRZ -cDF -juN -juN -kZR -gxB -mkf -juN -juN -xMx -oMo -mij -soK -biS -gxB -mkf -juN -juN -juN -gxB -eFL -juN -juN -gxB -oMo -juN -lwe -gxB -twr -twr -twr -oRp -oRp -oRp -oRp -eOQ -"} -(144,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -bBg -bBg -bBg -bBg -bBg -bBg -bBg -bBg -fiY -dAb -upw -dAb -mpB -ozw -sRJ -nyq -xDn -khe -vHx -bfe -bfe -uLo -ovQ -wpn -aWX -aWX -aBf -khe -cWi -kMh -wHC -fhd -wbF -yjS -fhd -mAt -mAt -mAt -mAt -mAt -mAt -mAt -hnI -sab -iIa -mAt -mAt -mAt -aTO -aTO -aTO -aTO -sRU -ige -law -vpe -icS -sRU -dIX -icS -icS -icS -nUP -aTO -oUJ -wGt -aTO -bgi -lvn -dco -fVx -iQI -fsx -iQI -uao -mTx -ylX -xRZ -oeQ -laC -laC -laC -laC -thm -laC -laC -laC -laC -xRZ -iId -lYi -xRZ -cDF -juN -juN -juN -gxB -ubV -lqt -lqt -lqt -wkv -mij -soK -nxi -gxB -juN -juN -juN -juN -gxB -bGQ -juN -juN -gxB -eBy -evj -sDB -gxB -twr -twr -twr -oRp -oRp -oRp -oRp -eOQ -"} -(145,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -bBg -two -tQP -qxA -cUj -qbj -wDk -obz -pwO -vLr -vLr -vLr -pwO -qWm -sRJ -nyq -wJc -khe -bYl -naf -eIz -smM -wAs -khe -owO -iXF -aSg -khe -vkp -sYh -wHC -fhd -fhd -fhd -fhd -mAt -mAt -mAt -mAt -mAt -uhF -sab -sab -iIa -kOw -kOw -mAt -mAt -mAt -mAt -aMA -aMA -aHS -iIy -aMA -aMA -aTO -aTO -jTK -npJ -icS -hzi -xwV -aTO -aTO -aTO -aTO -aJu -iQI -jkI -fVx -iQI -fsx -iQI -mHW -mTx -ylX -xRZ -xRZ -xRZ -xRZ -xRZ -qyW -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -oZB -lYi -xRZ -gxB -njT -juN -njT -juN -njT -juN -njT -gxB -fBM -tim -soK -biS -cDF -juN -juN -kZR -gxB -gxB -mkf -juN -juN -gxB -juN -tpV -gxB -gxB -twr -twr -twr -oRp -oRp -oRp -oRp -eOQ -"} -(146,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -bBg -qxA -qxA -qxA -gDR -qxA -wDk -qxA -cdn -vRN -vRN -vRN -cdn -nyq -apN -nyq -xDn -wrG -sMC -bfe -ngt -eDJ -ovQ -khe -pvI -oIz -sCJ -khe -aVP -lKH -wHC -bWs -iQS -mAE -fhd -mAt -mAt -mAt -mAt -uhF -hqD -seF -sab -eFn -bgN -bgN -aUr -mAt -mAt -mAt -aMA -ucG -les -woV -aMA -hJZ -lsn -aTO -ybw -roy -icS -xbO -aTO -adq -mTx -iQI -iQI -iQI -iQI -iQI -fVx -iQI -fsx -iQI -qSx -mTx -ylX -xRZ -oeQ -laC -laC -laC -laC -laC -laC -thm -laC -laC -xRZ -iId -lYi -xRZ -gxB -njT -juN -njT -lGT -njT -juN -njT -gxB -lwN -evj -evj -sDB -cDF -juN -juN -juN -gxB -oWx -rmO -juN -gxB -gxB -twr -twr -twr -twr -twr -twr -twr -oRp -oRp -oRp -oRp -eOQ -"} -(147,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -bBg -abc -qxA -jyh -qxA -qxA -wDk -bBg -nSl -dAb -upw -dAb -fkP -ozw -apN -nyq -xDn -khe -wSY -bfe -eIz -eIz -ovQ -khe -khe -khe -qEm -khe -aVP -sVY -wHC -fhd -iQS -yjS -fhd -mAt -mAt -mAt -gKs -hqD -mWC -avL -bln -sab -sab -sab -hnI -mAt -mAt -mAt -aMA -bCh -qTi -buF -kqN -wHj -erQ -aTO -bJj -lPY -icS -nUP -aTO -ylX -mTx -fIg -fIg -fIg -fIg -fIg -fVx -iQI -fsx -iQI -dTf -mTx -ylX -ylX -ylX -rzK -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -rzK -rzK -rzK -gxB -lGT -kZR -gxB -gxB -gxB -mkf -lGT -gxB -gxB -gxB -juN -tpV -gxB -juN -juN -juN -gxB -djc -juN -juN -gxB -twr -twr -twr -twr -twr -twr -twr -oRp -oRp -oRp -oRp -oRp -eOQ -"} -(148,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -bBg -nhZ -qxA -bBg -bBg -sAZ -wDk -bBg -eWK -dAb -upw -dAb -eWK -ozw -apN -nyq -xDn -wpn -sMC -sOa -bfe -bfe -ovQ -khe -uQb -bfe -chG -khe -aVP -kMh -wHC -fhd -fhd -fhd -fhd -mAt -mAt -mAt -sab -pZY -hnI -sab -sab -sab -sab -sab -owq -mAt -mAt -mAt -aMA -ikv -vQk -buF -iKj -wwz -erQ -aTO -aTO -arA -icS -psv -aTO -ylX -mTx -iQI -iHE -iQI -lfy -lfy -fVx -iQI -fsx -iQI -dTf -mTx -mTx -mTx -mTx -rzK -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -qyW -xRZ -rzK -rzK -rzK -gxB -njT -juN -njT -lGT -njT -juN -njT -gxB -twr -twr -twr -twr -gxB -mkf -juN -juN -gxB -oWx -rmO -juN -cDF -twr -twr -twr -twr -twr -twr -twr -oRp -oRp -oRp -oRp -oRp -eOQ -"} -(149,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -bBg -qxA -qxA -qrq -bBg -pNu -tQP -bBg -eWK -dAb -upw -dAb -eWK -ozw -cFf -usE -sAG -khe -fjH -gBH -ahM -bfe -ovQ -khe -fXb -mCq -bfe -khe -lqf -vdF -aIl -fhd -mAt -mAt -mAt -mAt -mAt -mAt -sab -bln -sab -sab -sab -sab -sab -vSl -uhF -mAt -mAt -mAt -aMA -ikv -uiH -rqE -aMA -kmj -cOK -gGJ -aTO -eGm -law -hUi -aTO -ylX -mTx -iQI -iQI -iQI -iQI -iQI -fVx -iQI -fsx -iQI -aJu -mTx -mTx -mTx -mTx -rzK -xRZ -xRZ -xRZ -xRZ -qyW -xRZ -xRZ -xRZ -xRZ -rzK -oRp -oRp -gxB -njT -juN -njT -juN -njT -juN -njT -gxB -gxB -twr -twr -twr -gxB -juN -juN -kZR -gxB -mkf -juN -juN -cDF -twr -twr -twr -twr -twr -twr -twr -oRp -oRp -oRp -oRp -oRp -eOQ -"} -(150,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -bBg -qxA -qxA -dQi -bBg -kKa -tQP -bBg -eWK -dAb -upw -dAb -eWK -khe -khe -dIY -khe -khe -uIv -khe -khe -bfe -end -khe -mGp -bfe -iHA -khe -fhd -kMh -xjZ -fhd -mAt -mAt -mAt -uhF -sab -sab -sab -sab -avL -sab -sab -sab -sab -mWC -seF -uhF -mAt -mAt -aMA -aMA -aMA -aMA -aMA -aoC -qTi -xJE -aTO -aTO -aTO -aTO -aTO -aMA -fjM -fjM -fjM -fjM -fjM -fjM -fVx -iQI -fsx -iQI -mTx -mTx -mTx -mTx -mTx -rzK -rzK -rzK -xRZ -xRZ -xRZ -xRZ -xRZ -xRZ -twr -twr -oRp -oRp -gxB -juN -juN -juN -gxB -juN -juN -juN -juN -cDF -twr -twr -twr -gxB -juN -juN -juN -gxB -juN -pHg -juN -gxB -oRp -twr -twr -twr -twr -twr -twr -oRp -oRp -oRp -oRp -oRp -eOQ -"} -(151,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -bBg -qxA -qxA -bBg -bBg -qxA -qxA -bBg -fry -dAb -upw -dAb -eWK -khe -qrT -eIz -eIz -uIv -ukI -mxD -iqt -rVq -fFd -fiX -bLf -bfe -bfe -khe -sab -jUI -jUI -sab -sab -hnI -uhF -sab -sab -sab -mTJ -sab -sab -sab -sab -sab -vSl -mWC -jUI -jUI -aRi -hJZ -pJV -hNJ -dDn -hJZ -les -dbk -qTi -hie -hNJ -aMA -fOE -dJj -aUp -aMA -nuL -eUN -eUN -eUN -eUN -fjM -vDQ -eUN -ooS -eUN -cNj -eUN -eUN -eUN -mTx -oRp -oRp -rzK -xRZ -xRZ -xRZ -xRZ -xRZ -twr -twr -twr -oRp -oRp -gxB -juN -juN -kZR -gxB -mkf -juN -juN -juN -cDF -twr -twr -twr -gxB -juN -juN -gxB -gxB -gQR -gQR -gxB -gxB -oRp -twr -twr -twr -twr -twr -rSC -oRp -oRp -oRp -oRp -oRp -eOQ -"} -(152,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -bBg -uMD -tQP -qxA -qxA -qxA -qxA -gQV -eWK -dAb -upw -dAb -nxO -khe -hGx -bfe -hLm -uIv -ukI -mxD -dhO -bfe -bfe -bfe -bLf -khe -khe -khe -sab -jUI -jUI -sab -sab -mWC -mWC -pZY -sab -sab -sab -sab -sab -sab -sab -sab -hnI -avL -xfG -hcg -kLc -wwz -iKj -buF -iKj -wwz -iKj -iKj -fMg -iKj -erQ -uhS -qTi -qTi -qTi -aMA -kVJ -eUN -eUN -eUN -eUN -nlV -eUN -eUN -eUN -eUN -cNj -eUN -eUN -eUN -mTx -oRp -oRp -rzK -rzK -xRZ -xRZ -twr -twr -twr -twr -twr -oRp -oRp -gxB -njT -juN -njT -juN -njT -juN -njT -gxB -gxB -oRp -rSC -twr -twr -twr -twr -twr -rSC -oRp -oRp -oRp -oRp -oRp -oRp -oRp -gbn -twr -twr -twr -twr -oRp -oRp -oRp -oRp -eOQ -"} -(153,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -bBg -nYK -nYK -qxA -qxA -oHH -oHH -bBg -eWK -dAb -upw -dAb -eWK -mxD -nez -xhy -hLm -khe -uIv -khe -fZD -xhy -dQc -eDJ -bLf -bLF -wTP -khe -sab -jUI -jUI -sab -mTJ -sab -sab -sab -sab -vdy -tdS -tdS -tdS -vdy -tkO -xfG -xfG -xfG -xfG -jUI -aMA -wZI -qgX -jBU -aMA -aPh -qTi -reY -iQk -iKj -fts -aMA -hlm -vdu -ojS -aMA -eUN -eUN -eUN -eUN -eUN -xNv -eUN -eUN -eUN -eUN -cNj -eUN -eUN -eUN -eUN -oRp -oRp -oRp -rzK -rzK -rzK -twr -twr -twr -twr -twr -twr -oRp -gxB -njT -lGT -njT -lGT -njT -lGT -njT -gxB -oRp -oRp -twr -twr -twr -twr -twr -twr -twr -oRp -oRp -oRp -oRp -oRp -oRp -oRp -twr -twr -twr -twr -twr -oRp -oRp -oRp -oRp -eOQ -"} -(154,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -bBg -bBg -bBg -bBg -cwZ -bBg -bBg -rQB -mnW -iUJ -ilY -iUJ -mnW -khe -cfL -bfe -lHw -feU -kBA -rVq -kke -bfe -tJZ -eDJ -bLf -tIr -baI -mxD -sab -jUI -jUI -sab -wck -sab -vdy -cRb -uva -vdy -qEh -aUG -vNe -vdy -vdy -xfG -jUI -jUI -jUI -jUI -aMA -aMA -aMA -aMA -aMA -wHj -qTi -wqv -oGh -iKj -fmh -aMA -aMA -aMA -aMA -aMA -eUN -eUN -eUN -eUN -dRX -fjM -ika -eUN -ooS -eUN -cNj -eUN -jzg -eUN -eUN -oRp -oRp -oRp -oRp -oRp -oRp -rzK -rzK -twr -twr -loC -loC -oRp -gxB -gxB -gxB -gxB -gxB -gxB -gxB -gxB -gxB -oRp -oRp -rSC -twr -twr -twr -twr -twr -rSC -oRp -oRp -oRp -oRp -oRp -oRp -oRp -twr -twr -twr -twr -twr -oRp -oRp -oRp -oRp -eOQ -"} -(155,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -bBg -sms -qxA -cUj -qbj -bBg -eWK -dAb -upw -dAb -eWK -uIv -nez -xhy -lHw -bfe -kwA -bfe -bfe -sOa -bfe -bfe -bLf -bfe -bfe -mxD -sab -jUI -jUI -sab -bln -sab -vdy -pfz -ckL -bZR -ndg -iln -fJI -cRZ -vdy -xfG -jUI -pZY -mAt -mAt -mAt -mAt -mAt -aMA -qZt -mrW -eSh -aMA -iYS -iKj -fmh -aMA -fOE -dJj -aUp -aMA -gCc -eUN -eUN -gOk -gOk -pjo -ika -eUN -ooS -eUN -cNj -eUN -jzg -eUN -eUN -eUN -eUN -eUN -eUN -eUN -cNj -eUN -hIn -eUN -eUN -eUN -eUN -hIn -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -twr -twr -twr -twr -twr -twr -twr -oRp -oRp -oRp -oRp -oRp -oRp -oRp -twr -twr -twr -twr -twr -oRp -oRp -oRp -oRp -eOQ -"} -(156,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -bBg -qNe -tQP -gDR -abc -bBg -fry -dAb -upw -dAb -eWK -khe -jTe -bfe -lHw -khe -khe -khe -mQN -bvK -bfe -bfe -bLf -cQt -xhy -khe -sab -jUI -jUI -rxK -sab -sab -tdS -vfy -ujn -wGG -slc -mVd -iln -cvr -vdy -xfG -jUI -sab -mAt -mAt -mAt -mAt -mAt -aMA -cfj -vQk -gaK -aMA -egg -iKj -erQ -uhS -qTi -qTi -qTi -aMA -eUN -eUN -eUN -eUN -hWa -pjo -ika -eUN -ooS -eUN -cNj -eUN -eUN -rgY -eUN -eUN -eUN -eUN -eUN -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -rSC -twr -twr -twr -twr -twr -twr -oRp -oRp -oRp -oRp -oRp -oRp -oRp -gbn -twr -twr -rSC -oRp -oRp -oRp -oRp -oRp -eOQ -"} -(157,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -bBg -tPq -qxA -qxA -poE -bBg -eWK -dAb -upw -dAb -eWK -rSf -eIz -bfe -eEk -ktI -ktI -khe -khe -wrG -khe -bfe -end -khe -khe -khe -khe -jUI -jUI -iIa -idx -sab -tdS -xmb -iln -wGG -cjb -mVd -ukr -bdN -vdy -xfG -jUI -iIa -mAt -mAt -mAt -mAt -mAt -aMA -leB -uFt -qTi -qTi -trc -fwd -noy -aMA -hlm -vdu -ojS -aMA -fjM -eUN -eUN -eUN -fjM -fjM -vDQ -eUN -ooS -eUN -cNj -eUN -eUN -mqh -eUN -eUN -xzp -fxb -xMO -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -twr -twr -twr -twr -twr -twr -twr -twr -twr -rSC -oRp -oRp -oRp -oRp -oRp -oRp -twr -twr -twr -twr -twr -oRp -oRp -oRp -oRp -oRp -eOQ -"} -(158,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -bBg -rBc -tQP -qxA -igH -vjP -eWK -dAb -upw -dAb -nxO -khe -wcQ -xhy -bfe -tIr -cQK -feU -bfe -esh -bfe -bfe -bLf -bfe -bfe -sIJ -bMZ -jUI -jUI -niN -flu -hnI -tdS -nGZ -hCQ -hCQ -gth -iln -bvw -iBN -vdy -xfG -wKi -kOw -mAt -mAt -mAt -mAt -mAt -aMA -aMA -wHj -qTi -iKj -fwd -pAt -sQG -aMA -aMA -aMA -aMA -aMA -eUN -eUN -eUN -eUN -eUN -fjM -eXr -eUN -ooS -eUN -cNj -eUN -eUN -iym -eUN -eUN -eUN -eUN -eUN -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -cOn -twr -aic -twr -twr -twr -twr -twr -twr -twr -twr -twr -twr -twr -twr -twr -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -twr -twr -twr -twr -twr -oRp -oRp -oRp -oRp -oRp -eOQ -"} -(159,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -aRe -cpc -cpc -cpc -cpc -bBg -tPq -qxA -tFS -xQd -vjP -eWK -dAb -upw -dAb -eWK -khe -ktI -smM -eIz -eIz -eIz -bfe -bfe -bfe -eDJ -eDJ -hHr -bfe -bfe -lHw -aWX -jUI -jUI -eFn -aUr -qZV -vdy -vdy -osQ -vdy -rcq -tpe -bvw -tdS -xfG -xfG -wym -mAt -mAt -mAt -mAt -mAt -mAt -mAt -aMA -tpo -abP -aoP -qOu -sQG -sQG -vpW -vpW -vpW -wwb -qBG -mLr -eUN -eUN -udB -eUN -fjM -gLF -eUN -ooS -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -gOk -eUN -cNj -eUN -gUN -fJK -eUN -eUN -eUN -eUN -cOn -jpn -aic -twr -twr -twr -twr -twr -twr -twr -twr -twr -twr -twr -twr -mNa -oRp -oRp -oRp -oRp -oRp -oRp -twr -twr -twr -twr -twr -twr -twr -twr -twr -oRp -oRp -oRp -eOQ -"} -(160,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -hdL -hdL -bBg -tPq -tQP -qxA -igH -vjP -eWK -dAb -upw -dAb -eWK -khe -khe -khe -uIv -uIv -khe -khe -wRc -krH -khe -iTP -aSa -bfe -wDr -aHW -khe -hqD -jUI -jUI -sab -mWC -rcD -ipx -mbv -vdy -qqp -tRC -shj -tdS -xfG -jUI -jUI -utG -utG -utG -utG -utG -utG -utG -utG -utG -qTi -pJY -aMA -aMA -anE -nuc -xNm -nuc -xNG -qBG -gCc -eUN -eUN -hpK -pxf -fjM -gLF -eUN -ooS -eUN -axA -eUN -eUN -eUN -eUN -eUN -eUN -eUN -mhL -eUN -cNj -eUN -eUN -wcs -jkr -eUN -eUN -eUN -cOn -xAN -xAN -dsV -dsV -dsV -dsV -dsV -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -lJV -"} -(161,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -hdL -hdL -bBg -keY -qxA -qxA -poE -bBg -eWK -dAb -upw -dAb -eWK -bEI -fJD -aJY -onm -aJY -xzv -tpU -bfe -jFw -khe -oGu -bLf -bfe -jOC -khe -khe -seF -jUI -jUI -sab -sab -oRu -cRb -kzF -vdy -vdy -vdy -vdy -vdy -xfG -jUI -utG -utG -ydA -fDZ -rAp -ibx -mqH -ryA -ryA -ydA -anE -tNh -gpr -kxR -epj -muY -qBG -nlE -ffR -qBG -eUN -eUN -eUN -eUN -eUN -fjM -vQH -eUN -ooS -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -eUN -eUN -cNj -eUN -eUN -fjM -fjM -fjM -eUN -niL -fjM -bHC -dsV -dsV -dsV -dsV -dsV -voB -mAb -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -mAb -mAb -xpG -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -lJV -"} -(162,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -bBg -bBg -bBg -bBg -qxA -qxA -uec -bBg -fry -dAb -upw -dAb -eWK -aJY -aJY -aJY -aJY -aJY -aJY -aWX -bfe -bfe -gdp -bfe -bLf -bfe -jos -khe -mAt -gKs -jUI -jUI -jUI -jUI -jUI -ujv -cZD -jUI -jUI -jUI -jUI -jUI -xfG -wKi -ftF -sFH -ryA -ryA -aIc -ftF -ydA -ryA -bDE -ydA -wBB -muY -kqV -qBG -cjY -muY -qBG -pcp -mJR -qBG -fjM -xNv -xsu -wbN -fjM -fjM -pDa -eUN -ooS -eUN -cNj -eUN -eUN -eUN -eUN -kZy -vFm -eUN -eUN -eUN -cNj -eUN -pxf -fjM -eUN -eUN -eUN -eUN -fjM -xAN -dsV -dsV -dsV -voB -voB -voB -mAb -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -lJV -"} -(163,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -bBg -ddK -tcV -bBg -cwZ -bBg -bBg -rQB -obh -dAb -upw -dAb -mpB -aJY -eRN -ceX -oDj -eRN -ceX -khe -sOa -bfe -bfe -bfe -bLf -bfe -uZi -khe -mAt -oNy -gYb -jUI -jUI -jUI -jUI -jUI -xfG -xfG -xfG -xfG -xfG -xfG -xfG -mAt -utG -nHG -vNV -ryA -fDZ -utG -bDE -ydA -ibx -utG -cJy -vpW -lLm -qBG -cJy -muY -qBG -nlE -ffR -qBG -pBQ -xNv -xNv -xNv -fjM -eUN -vQH -eUN -ooS -eUN -cNj -eUN -eUN -eUN -eUN -kSU -sUQ -eUN -eUN -eUN -cNj -eUN -eUN -fjM -eUN -eUN -eUN -pxf -fjM -voB -dsV -dsV -dsV -voB -voB -voB -mAb -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -tit -tit -tit -tit -mAb -lJV -"} -(164,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -bBg -oRb -hGw -bBg -qxA -qxA -qxA -nfw -cdn -kXT -kXT -kXT -cdn -aJY -lmr -lmr -nku -nku -lmr -khe -bcL -hTQ -oyk -bfe -bLf -mCq -lHw -khe -mAt -pMG -vPC -sab -sab -sab -jUI -xfG -xfG -jUI -jUI -hnI -sab -sab -otn -otn -utG -utG -wMw -sTn -wpG -utG -vNV -bDE -nHG -utG -cJy -vpW -lLm -qBG -eie -nsw -ngc -muY -ffR -qBG -pBQ -rWf -rWf -rWf -pwA -kgL -vQH -eUN -ooS -eUN -qfk -eUN -eUN -eUN -eUN -gDo -sUQ -eUN -eUN -eUN -cNj -eUN -eUN -fjM -ldw -eUN -jJO -jJO -fjM -voB -dsV -dsV -dsV -dsV -voB -dsV -tit -tit -tit -tit -xpG -tit -tit -tit -tit -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -tit -tit -tit -tit -mAb -lJV -"} -(165,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -bBg -qxA -qxA -fNs -qxA -qxA -qxA -qxA -cdn -vRN -vRN -vRN -cdn -cRJ -lmr -sDO -fbY -qEg -xva -khe -khe -khe -khe -bfe -end -khe -khe -khe -mAt -mAt -rjf -mWC -sab -sab -jUI -xfG -sab -sab -pZY -sab -bln -mAt -otn -dAh -xmW -ftF -paZ -mqH -sFH -utG -pGR -bDE -qOx -utG -cWk -lHs -qsA -qBG -qBG -bBL -uEy -uEy -mUQ -qBG -xQC -rWf -xNv -xNv -fjM -eUN -ika -eUN -ooS -eUN -cNj -eUN -eUN -eUN -eUN -eUN -lxj -eUN -eUN -eUN -cNj -eUN -eUN -fjM -fjM -dxF -fjM -fjM -fjM -voB -voB -dsV -voB -voB -voB -dsV -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -tit -tit -tit -tit -mAb -lJV -"} -(166,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -bBg -jXn -qxA -bBg -bBg -bBg -bBg -bBg -nSl -dAb -upw -dAb -cWV -aJY -nku -smx -wcy -bfF -swQ -uaH -qHs -kxV -jHi -dPz -mhR -oLU -tEu -qHs -qHs -qHs -fVl -fVl -qHs -qHs -jUI -xfG -sab -sab -sab -hnI -mAt -mAt -otn -afe -guS -ibx -bxE -sFH -sTn -utG -vqK -bDE -qOx -ftF -cJy -vpW -uoh -rXj -qBG -qBG -qBG -mDZ -qBG -qBG -xNv -rWf -yeQ -wzz -fjM -gCc -ika -eUN -ooS -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -eUN -eUN -cNj -eUN -eUN -wbN -eUN -eUN -eUN -eUN -fjM -voB -voB -voB -voB -voB -dsV -dsV -tit -tit -tit -xpG -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -xpG -mAb -lJV -"} -(167,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -bBg -bBg -uPs -xKs -qxA -hAU -bBg -pjL -pjL -pjL -eWK -dAb -upw -dAb -eWK -aJY -nku -xAf -aJY -jeL -ffB -ueg -qHs -nSk -byq -qUz -eyh -byq -kPA -qHs -szf -lER -tie -tie -nSK -qHs -aOm -xgq -qHs -mWC -hqD -seF -mAt -otn -otn -iPn -vTC -ftF -itZ -wpG -bxE -utG -bDE -bDE -qNy -ftF -cJy -vpW -oai -tez -nuc -juM -kWl -gpr -oai -cfa -rWf -rWf -rgB -bhx -fjM -hWa -ika -eUN -ooS -eUN -cNj -eUN -eUN -fjM -eUN -eUN -eUN -fjM -eUN -eUN -cNj -eUN -eUN -wbN -gOk -nuL -eUN -pxf -fjM -voB -voB -voB -dsV -dsV -dsV -dsV -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -mAb -lJV -"} -(168,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -bBg -sbd -dAA -qxA -qxA -hAU -vjP -pjL -pjL -pjL -eWK -dAb -upw -dAb -eWK -hdL -lmr -xAf -aJY -lmr -qjL -iiC -afj -uwy -opq -opq -opq -opq -mnU -afj -uwy -jem -opq -opq -cPm -qHs -lyi -tOw -qHs -lnx -lnx -qHs -qHs -cEl -xCj -xmW -guS -utG -fRd -brN -fRd -utG -fRd -svr -fRd -utG -cJy -muY -oai -sEg -muY -muY -muY -lLm -qBG -qBG -qBG -qBG -fjM -fjM -fjM -udB -ika -eUN -ooS -eUN -eeD -eUN -pxf -fjM -qxp -eUN -qJF -fjM -gCc -eUN -cNj -eUN -pxf -fjM -bFN -hWa -eUN -eUN -fjM -voB -voB -voB -gPP -dsV -dsV -dsV -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -mAb -lJV -"} -(169,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -bBg -wOA -bBg -qxA -qxA -oHH -vjP -pjL -pjL -pjL -eWK -dAb -upw -dAb -eWK -hdL -lmr -tEJ -wcy -aJY -aJY -gTG -qUz -chz -enO -dSq -cUr -dSq -plo -qUz -siu -jDF -nYR -opq -rAy -qHs -stB -ajB -qHs -ttK -inj -byq -qHs -cEl -gca -seN -seN -bWx -seN -seN -seN -seN -smb -tbz -smb -hHP -epj -xBR -qxD -iLL -yeW -yeW -cPr -lLm -rkk -mMU -ocs -qBG -mTx -mTx -mTx -eUN -ika -eUN -ooS -eUN -cNj -eUN -eUN -jlG -eUN -eUN -eUN -fjM -eUN -eUN -cNj -eUN -eUN -wtV -eUN -eUN -eUN -eUN -fjM -voB -voB -dsV -dsV -dsV -dsV -dsV -tit -tit -tit -tit -tit -xpG -gTs -tit -tit -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -mAb -lJV -"} -(170,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -bBg -vjP -bBg -bBg -gVB -bBg -bBg -pjL -pjL -pjL -eWK -dAb -upw -dAb -nxO -hdL -lmr -cjk -pLH -aSm -fmQ -ljr -uiw -uiw -eGv -gYj -aFY -eGv -uiw -uiw -uiw -eGv -mCC -hgq -qOi -xxJ -stB -mnU -qHs -tky -kyL -qZa -qHs -cEl -iKt -seN -guS -nEm -guS -tNx -guS -guS -dbp -guS -guS -guS -vCc -aCw -axV -qBG -qBG -qBG -kBo -ffR -qBG -cpG -ave -qBG -mTx -mTx -mTx -gCc -ika -eUN -ooS -eUN -cNj -eUN -eUN -fjM -eUN -eUN -eUN -jlG -eUN -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -fjM -voB -voB -xAN -dsV -dsV -dsV -dsV -tit -tit -tit -tit -mAb -mAb -mAb -mAb -jet -tit -tit -tit -tit -tit -tit -tit -jet -mAb -mAb -mAb -mAb -aJM -tit -tit -tit -mAb -lJV -"} -(171,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -pjL -pjL -pjL -pjL -pjL -pjL -pjL -pjL -pjL -eWK -dAb -upw -dAb -eWK -pjL -jeL -lmr -rRh -lmr -uiw -uiw -uiw -wgN -wgN -gYj -hAI -uiw -toi -pCU -fVS -uiw -cjT -hFw -mnU -opq -uwy -mnU -wzM -qUz -qUz -qUz -qHs -cEl -how -seN -guS -thf -epW -utG -ftF -ftF -utG -rGG -gdi -utG -uZB -qBG -qBG -qBG -wGe -nuc -fGt -ffR -qBG -qBG -qBG -qBG -mTx -mTx -mTx -qec -ika -eUN -ooS -eUN -cNj -eUN -eUN -fjM -eUN -eUN -eUN -fjM -eUN -eUN -cNj -eUN -eUN -fjM -eUN -eUN -eUN -eUN -fjM -voB -xAN -xAN -dsV -dsV -dsV -dsV -tit -tit -mAb -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -mAb -tit -tit -tit -tit -mAb -lJV -"} -(172,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -pjL -rdR -pjL -pjL -pjL -moo -swp -hdL -hdL -eWK -dAb -upw -dAb -eWK -pjL -nku -swc -veL -rKX -uiw -tGP -nKu -wgN -oVQ -xhR -hAI -uiw -rMC -gYj -gYj -uiw -uiw -tey -jVG -qHs -hHR -plo -qQF -qUz -tDg -jzb -qHs -aPD -rtX -guS -guS -cEl -cEl -cEl -wLx -rIb -utG -utG -utG -utG -irt -qBG -nxf -vkb -cJy -muY -oai -ffR -rkk -mMU -ocs -qBG -mTx -mTx -mTx -eUN -ika -eUN -ooS -eUN -fLH -eUN -pxf -fjM -eUN -eUN -oqT -fjM -qxp -eUN -cNj -eUN -eUN -fjM -fjM -wbN -wbN -fjM -fjM -voB -xAN -xAN -dsV -dsV -tZf -tZf -yak -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -lJV -"} -(173,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -pjL -pjL -pjL -pjL -moo -gAP -hdL -hdL -hdL -fry -dAb -upw -dAb -eWK -pjL -nku -wrq -aJY -gTG -uiw -tGP -wmo -gYj -mBz -cZv -hAI -hbu -svJ -hAI -jOt -tpi -uiw -uiw -uiw -uiw -tQl -uQa -qHs -cPE -cPE -cPE -qHs -cEl -cEl -hiN -llf -cEl -wLx -wLx -wLx -wLx -xiT -xiT -bSA -sil -vVF -wLx -lVZ -oai -ulu -yeW -yeW -mUQ -qBG -mMU -ave -qBG -mTx -mTx -mTx -eUN -ika -eUN -ooS -eUN -cNj -eUN -eUN -fjM -gCc -eUN -qJF -fjM -kuY -eUN -cNj -eUN -eUN -mWw -eUN -eUN -eUN -mWw -rOf -xAN -xAN -dsV -dsV -dsV -dsV -dsV -tit -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -lJV -"} -(174,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -pjL -pjL -pjL -pjL -dIF -hdL -hdL -hdL -hdL -eWK -dAb -upw -dAb -eWK -uId -lmr -nzS -wcy -nlf -uiw -tGP -nKu -gYj -sad -lLW -gYj -gYj -bYh -aUj -hAI -eEt -nhM -gAH -sSi -kfE -kfE -tpi -qHs -qHs -qHs -qHs -qHs -hJi -hJi -wLx -wLx -wLx -mWp -wLx -wLx -wLx -wLx -rIb -xiT -xiT -raK -wTi -lVZ -qBG -qBG -qBG -irt -irt -qBG -qBG -qBG -qBG -mTx -mTx -mTx -gCc -ika -eUN -ooS -eUN -cNj -eUN -eUN -fjM -eUN -eUN -eUN -fjM -bFN -eUN -cNj -eUN -eUN -eUN -aBF -eUN -eUN -eUN -cOn -dsV -dsV -dsV -dsV -dsV -dsV -dsV -tit -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -lJV -"} -(175,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -dAw -iRj -dAw -dAw -oic -hdL -hdL -hdL -hdL -eWK -dAb -upw -dAb -eWK -hdL -lmr -edg -wcy -gTG -uiw -tGP -nKu -kZu -gPo -aVR -lJS -uiw -odz -xuI -wCs -gYj -gYj -xkF -uvi -jFQ -gYj -eEt -tpi -rsb -adL -wrM -uiw -hJi -ouP -wLx -rIb -rIb -wLx -wLx -rqT -wLx -wLx -wTi -xiT -gkP -xiT -xiT -lVZ -wLx -wLx -wLx -wLx -wLx -wLx -wLx -wLx -wLx -aJu -cQj -fYv -eUN -ika -eUN -ooS -eUN -cNj -eUN -eUN -fjM -eUN -eUN -eUN -fjM -eUN -eUN -cNj -eUN -eUN -eUN -eUN -lDZ -eUN -eUN -cOn -xAN -dsV -dsV -dsV -dsV -dsV -dsV -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -lJV -"} -(176,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -dAw -tYy -hNS -dAw -kDD -hdL -hdL -hdL -hdL -eWK -dAb -upw -dAb -eWK -hdL -lmr -egL -pLH -kFI -uiw -uiw -uiw -oJE -oJE -uiw -uiw -hjw -uiw -uiw -kLQ -tCk -rGD -pUV -uiw -mCO -tGP -gYj -ekv -uiw -kqs -epO -uiw -hJi -rIb -xiT -gkP -rIb -nqZ -nqZ -nqZ -wLx -nqZ -wLx -wLx -rIb -xiT -xiT -lVZ -wTi -wLx -wLx -wLx -wLx -wLx -wLx -wLx -wLx -aJu -aJu -cQj -eUN -ika -eUN -ooS -eUN -fLH -eUN -pxf -fjM -eUN -eUN -eUN -fjM -gCc -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -cOn -xAN -xAN -dsV -dsV -dsV -dsV -dsV -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -lJV -"} -(177,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -dAw -dAw -fKx -cWS -vdO -hdL -hdL -hdL -hdL -fry -dAb -upw -dAb -eWK -hdL -lmr -lmr -rRh -lmr -uiw -sdN -cWA -aDO -nlB -uPL -dtd -tWO -sai -uiw -jDm -kyD -hoA -dUQ -eGv -npy -jAo -ahL -fuX -uiw -uiw -uiw -uiw -wLx -xiT -xiT -khs -xiT -nqZ -wLx -wLx -wLx -nqZ -wLx -wLx -lVZ -lVZ -lVZ -lVZ -rIb -wLx -wLx -wLx -mWp -eom -rIb -rIb -wLx -aJu -aJu -aJu -eUN -ika -eUN -ooS -eUN -cNj -eUN -eUN -wtV -eUN -eUN -eUN -wtV -eUN -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -cOn -xAN -xAN -voB -dsV -dsV -dsV -dsV -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -lJV -"} -(178,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hFI -sGY -otB -dAw -dAw -pjL -pjL -hdL -hdL -eWK -dAb -upw -dAb -nxO -lmr -lmr -esz -veL -veL -uiw -gci -kLR -uuq -gYj -epS -olM -gYj -kvo -uiw -hAI -pGo -uiw -uiw -uiw -ktm -uuH -gYj -luo -rsb -adL -wrM -uiw -wTi -xiT -khs -khs -xiT -nqZ -wLx -wLx -wLx -nqZ -giw -kgt -lVZ -xiT -khs -gkP -xiT -xiT -wLx -rIb -wLx -xiT -xiT -rIb -wTi -aJu -aJu -aJu -eUN -ika -eUN -ooS -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -eUN -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -puB -xAN -voB -voB -dsV -dsV -dsV -dsV -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -xpG -tit -tit -tit -tit -tit -mAb -mAb -mAb -lJV -"} -(179,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -dAw -dAw -dAw -dAw -dAw -nks -nks -nks -nks -obh -dAb -upw -dAb -mpB -swc -vbj -guy -aJY -aJY -uiw -hOt -oec -etU -gYj -ivc -aFm -gYj -eEt -kfE -uQT -wqb -uiw -arl -kfE -dkg -uCA -gYj -ekv -uiw -adL -epO -uiw -wLx -xiT -khs -khs -khs -iFi -iFi -iFi -krv -iFi -iFi -fgk -lVZ -xiT -khs -khs -jmi -dcC -gmY -suS -xiT -xiT -xiT -ylX -ylX -mTx -aJu -aJu -xzp -vwm -xMO -ooS -eUN -cNj -eUN -eUN -fjM -eUN -eUN -eUN -fjM -eUN -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -hIn -lYf -voB -voB -voB -dsV -dsV -dsV -voB -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -lJV -"} -(180,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -dAw -dAw -dAw -dAw -dAw -nks -pjL -pjL -pjL -biB -kXT -kXT -kXT -ejj -aJY -fZA -fZA -fZA -aJY -uiw -gci -vbF -uuq -gYj -oec -gYj -aUj -wbs -elO -gqM -fSC -cTu -svJ -rLF -hAI -hAI -hAI -luo -uiw -uiw -uiw -uiw -xiT -xiT -khs -khs -khs -iFi -uvg -sSG -kwt -qXJ -iFi -wLx -lVZ -khs -khs -khs -fZO -xiT -xiT -jmi -fZO -xiT -ozD -ylX -mTx -mTx -aJu -aJu -eUN -ika -eUN -ooS -eUN -fLH -eUN -pxf -fjM -gCc -eUN -osS -fjM -gCc -eUN -cNj -eUN -wcs -eUN -eUN -eUN -eUN -eUN -lYf -voB -voB -dsV -dsV -dsV -dsV -voB -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -lJV -"} -(181,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -dAw -iRj -oiP -wmx -oic -nks -pjL -pjL -pjL -biB -vRN -vRN -vRN -ejj -aJY -oDj -oDj -oDj -cRJ -uiw -sdN -wrC -wvz -wvz -itO -vzU -llK -uzr -kzw -kzw -ybt -uiw -qlr -ybh -ghl -qci -keM -ybt -hJi -hJi -hJi -hJi -gkP -khs -khs -khs -xiT -krv -nGm -mIs -deu -uou -pRX -lVZ -lVZ -khs -khs -khs -xiT -xiT -raK -phX -ylX -ylX -ylX -ylX -mTx -aJu -aJu -aJu -eUN -ika -eUN -ooS -eUN -cNj -eUN -eUN -fjM -eUN -eUN -hWa -fjM -eUN -eUN -cNj -eUN -wcs -eUN -eUN -eUN -jkr -eUN -lYf -voB -voB -gPP -dsV -dsV -dsV -voB -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -jet -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -lJV -"} -(182,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -dAw -tYy -hNS -oiP -kDD -nks -nks -nks -nks -xyO -dAb -upw -dAb -cWV -aJY -bfF -bfF -bfF -aJY -uiw -uiw -uiw -xIS -xIS -uiw -uiw -hjw -uiw -gYj -pGo -uiw -uiw -xIS -xIS -uiw -uiw -hAI -pGo -dXo -dXo -dXo -hJi -hJi -xiT -khs -khs -xiT -krv -jgw -jgw -fNG -iAP -iFi -rIb -xiT -gkP -khs -xiT -wLx -xiT -phX -tPS -ylX -mTx -mTx -mTx -mTx -aJu -aJu -aJu -xzp -vwm -xMO -ooS -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -eUN -eUN -cNj -eUN -eUN -fjM -fjM -fjM -fjM -xTB -fjM -voB -voB -dsV -dsV -dsV -dsV -voB -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -lJV -"} -(183,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -dAw -dAw -fKx -cWS -vdO -nks -pjL -pjL -pjL -eWK -dAb -upw -dAb -eWK -aJY -fZA -fZA -fZA -aJY -aJY -uiw -sWY -txy -txy -txy -txy -uiw -bde -gYj -gYj -bde -uiw -ylA -ylA -ylA -kki -kki -ylA -ylA -lrv -dXo -hJi -hJi -xiT -xiT -khs -phX -iFi -iFi -iFi -fgm -iFi -iFi -wLx -xiT -xiT -xiT -gkP -ylX -ylX -ylX -ylX -ylX -mTx -mTx -mTx -mTx -kqz -aJu -aJu -eUN -ika -eUN -ooS -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -eUN -eUN -cNj -eUN -pxf -fjM -jsJ -mWw -eUN -eUN -fjM -voB -voB -dsV -dsV -dsV -dsV -voB -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -aJM -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -jet -mAb -mAb -mAb -mAb -mAb -lJV -"} -(184,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -dAw -dAw -hFI -sGY -otB -nks -pjL -rdR -hdL -eWK -dAb -upw -dAb -eWK -aJY -oDj -oDj -oDj -aJY -aJY -hZN -tQl -tQl -eXc -tQl -tzl -eGv -gYj -gYj -gYj -gYj -eGv -mDb -mDb -mDb -vyz -fTE -dXo -nWd -tjF -dXo -hJi -hJi -hJi -raK -xiT -bSA -tPS -iFi -fVj -uou -pRX -nPL -xiT -xiT -xiT -xiT -rIb -ylX -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -aJu -aJu -aJu -cOn -cOn -eUN -ooS -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -qzV -eUN -cNj -eUN -eUN -fjM -eUN -eUN -eUN -eUN -fjM -ftv -ftv -ftv -ftv -ftv -ftv -nEW -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -mAb -mAb -lJV -"} -(185,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -dAw -dAw -dAw -dAw -dAw -nks -pjL -hdL -hdL -mnW -iUJ -ilY -iUJ -mnW -lmr -bfF -bfF -bfF -aJY -aJY -uiw -sYw -sYw -sYw -sYw -sYw -eVG -gYj -gYj -gYj -gYj -eVG -pBR -mDb -mDb -vyz -hRq -dXo -lzN -xKR -dXo -hJi -hJi -hJi -ozD -xiT -xiT -bSA -iFi -vUr -nGm -iFi -nPL -xiT -rIb -xiT -wTi -giw -ylX -ylX -mTx -mTx -mTx -mTx -mTx -mTx -mTx -aJu -aJu -aJu -aJu -cOn -eUN -ooS -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -gOk -fQr -eUN -cNj -eUN -eUN -fjM -eUN -eUN -jJO -vBr -fjM -ftv -ftv -ftv -ftv -ftv -ftv -ftv -tit -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -mAb -mAb -lJV -"} -(186,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -dAw -dAw -dAw -dAw -dAw -nks -pjL -hdL -hdL -eWK -dAb -upw -dAb -nxO -lmr -coU -coU -rJx -qYg -uiw -uiw -uiw -uiw -xsR -uiw -uiw -uiw -ruF -ruF -ruF -oBH -uiw -uQG -sXo -lWF -rZE -lBo -mDb -mDb -xKR -dXo -hJi -hJi -hJi -hJi -khs -xiT -xiT -iFi -iFi -krv -iFi -pjg -rIb -rIb -wLx -wLx -bKd -mHy -ylX -ylX -mTx -mTx -mTx -mTx -aJu -aJu -aJu -aJu -aJu -mTx -cOn -eUN -ooS -eUN -cNj -eUN -eUN -eUN -kuI -eUN -eUN -fQr -hWa -eUN -cNj -eUN -pxf -fjM -eUN -eUN -jkr -gAI -fjM -ftv -ftv -ftv -ftv -ftv -ftv -ftv -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -mAb -mAb -mAb -tit -jet -mAb -mAb -lJV -"} -(187,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -hdL -uph -obN -uwD -nfa -uph -uph -uph -fry -dAb -upw -dAb -eWK -lmr -bDZ -rEu -rJx -xsd -uiw -wKv -ldT -gYj -gYj -uiw -hdL -uiw -uiw -uiw -uiw -uiw -uiw -uQG -tjF -dXo -xsC -mDb -mDb -mDb -xKR -dXo -hJi -hJi -hJi -hJi -khs -xiT -wLx -wLx -lVZ -lVZ -lVZ -lVZ -wLx -wLx -wLx -wLx -mGA -mHy -mHy -ylX -mTx -mTx -mTx -mTx -aJu -aJu -aJu -aJu -aJu -mTx -aJu -eUN -ooS -eUN -cNj -eUN -eUN -kuI -qEC -eUN -eUN -bFN -eUN -eUN -cNj -eUN -eUN -fjM -eUN -vdg -fjM -fjM -fjM -ftv -ftv -ftv -ftv -ftv -ftv -ftv -tit -tit -tit -tit -tit -tit -xpG -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -xpG -tit -tit -tit -tit -mAb -mAb -lJV -"} -(188,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -hdL -uph -bZh -wvS -tvU -wEC -bZh -kTN -eWK -dAb -upw -dAb -eWK -lmr -uzG -rJx -rJx -bwE -uiw -adz -ldT -gYj -pEd -uiw -hdL -hdL -hdL -dXo -heq -qAd -ylA -fDm -xKR -dXo -dRa -nWd -dXo -nWd -xKR -dXo -hJi -hJi -hJi -hJi -xiT -gkP -rIb -wTi -lVZ -xiT -gkP -xiT -wLx -wLx -wLx -mWp -wLx -mGA -mHy -ylX -mTx -mTx -mTx -mTx -kqz -aJu -aJu -aJu -aJu -mTx -mTx -eUN -ooS -eUN -cNj -eUN -eUN -kuY -bjh -eUN -eUN -eUN -eUN -eUN -cNj -eUN -eUN -fjM -eUN -eUN -eUN -eUN -fjM -ftv -ftv -ftv -ftv -nEW -ftv -ftv -tit -tit -tit -tit -tit -tit -tit -xpG -tit -tit -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -lJV -"} -(189,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -hdL -uph -avi -vGB -tvU -kmr -lYD -kTN -eWK -dAb -upw -dAb -eWK -lmr -uBY -ovw -rJx -rJx -uiw -lPG -ldT -gYj -wLM -uiw -hdL -hdL -hdL -dXo -nGB -mDb -mDb -mDb -cuJ -dXo -tVd -lzN -dXo -lzN -tjF -dXo -dXo -dXo -hJi -hJi -pVz -xiT -xiT -lVZ -lVZ -raK -rIb -wLx -wLx -wLx -rqT -wLx -wLx -wLx -ylX -ylX -mTx -mTx -mTx -mTx -aJu -aJu -aJu -aJu -mTx -mTx -mTx -eUN -eUN -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -eUN -eUN -cNj -eUN -aYR -fjM -gCc -eUN -eUN -eUN -vEr -ftv -ftv -ftv -ftv -nEW -nEW -nEW -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -lJV -"} -(190,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -hdL -uph -jQv -wvS -tvU -wEC -azE -uph -fry -dAb -upw -dAb -nxO -lmr -lmr -lmr -rJx -rkq -uiw -uiw -oJE -xIS -uiw -uiw -hdL -hdL -hdL -dXo -udx -tLg -lWF -lWF -lpA -dXo -phV -mDb -uJB -mDb -exR -ylA -lrv -dXo -hJi -hJi -tPS -pVz -xiT -lVZ -wTi -wLx -wLx -wLx -mWp -wLx -wLx -ylX -ylX -ylX -ylX -mTx -mTx -mTx -mTx -mTx -aJu -aJu -aJu -aJu -aJu -mTx -mTx -eUN -eUN -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -eUN -eUN -cNj -eUN -upi -fjM -eUN -eUN -eUN -eUN -eUN -ftv -ftv -ftv -ftv -nEW -nEW -nEW -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -lJV -"} -(191,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -hdL -uph -avi -vGB -tvU -kmr -lYD -uph -eWK -dAb -upw -dAb -eWK -eWK -eWK -vXc -cdn -cdn -uvu -eWK -eWK -eWK -gxZ -bwp -eWK -eWK -enY -oUr -gzd -gzd -gzd -gzd -gzd -gzd -lHU -lHU -lHU -lHU -lHU -lHU -tjF -dXo -hJi -hJi -hJi -hJi -rIb -lVZ -wLx -wLx -wLx -ylX -ylX -ylX -ylX -ylX -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -aJu -aJu -aJu -aJu -mTx -mTx -eUN -eUN -eUN -cNj -eUN -eUN -eUN -eUN -eUN -eUN -eUN -eUN -eUN -cNj -eUN -upi -fjM -eUN -eUN -eUN -eUN -vEr -ftv -ftv -ftv -ftv -nEW -nEW -nEW -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -lJV -"} -(192,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -hdL -uph -bZh -wvS -tvU -wEC -bZh -uph -eWK -dAb -upw -dAb -dAb -dAb -dAb -dAb -rdj -fXY -dAb -dAb -dAb -dAb -dAb -iKc -dAb -dAb -enY -qCm -qCm -qCm -qCm -qCm -qCm -qCm -qCm -qCm -qCm -qCm -qCm -lHU -xKR -dXo -eWs -eWs -hJi -tPS -pVz -lVZ -mWp -wLx -ylX -ylX -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -aJu -aJu -aJu -aJu -aJu -mTx -aJu -eUN -eUN -cNj -pxf -fjM -fjM -fjM -xTB -fjM -gCc -eUN -eUN -cNj -eUN -dvS -fjM -gCc -eUN -bUb -eUN -eUN -ftv -ftv -ftv -ftv -nEW -nEW -nEW -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -lJV -"} -(193,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -hdL -uph -avi -vGB -tvU -kmr -lYD -kTN -eWK -dAb -lCR -evt -evt -evt -evt -evt -rdj -fXY -evt -evt -evt -evt -evt -nIl -evt -evt -oyX -jIl -jIl -jIl -jIl -jIl -jIl -jIl -jIl -jIl -jIl -jIl -qCm -lHU -xKR -dXo -eWs -eWs -eWs -sil -vVF -gzR -aJu -aJu -aJu -aJu -aJu -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -kqz -aJu -aJu -aJu -aJu -aJu -aJu -aJu -eUN -eUN -cNj -eUN -wbN -jsJ -eUN -qJF -fjM -eUN -eUN -eUN -cNj -eUN -pxf -fjM -eUN -eUN -eUN -eUN -vEr -ftv -ftv -ftv -ftv -nEW -nEW -nEW -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -lJV -"} -(194,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -hdL -uph -bZh -wvS -tvU -wEC -bZh -kTN -eWK -dAb -dAb -dAb -dAb -dAb -dAb -dAb -rdj -fXY -dAb -dAb -dAb -dAb -dAb -iKc -dAb -dAb -enY -qCm -qCm -qCm -qCm -qCm -qCm -qCm -qCm -qCm -hfK -qCm -qCm -lHU -sqG -dzy -gzR -gzR -gzR -gzR -gzR -gzR -aJu -aJu -aJu -aJu -aJu -aJu -mTx -mTx -mTx -mTx -mTx -mTx -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -cQj -eUN -eUN -cNj -eUN -wbN -xyk -kzO -eUN -fjM -eUN -eUN -eUN -cNj -eUN -eUN -fjM -eUN -eUN -eUN -eUN -eUN -ftv -ftv -ftv -ftv -ftv -ftv -nEW -mAb -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -lJV -"} -(195,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -hdL -uph -fRU -vGB -tvU -kmr -hOW -uph -fry -eWK -eWK -eWK -eWK -eWK -eWK -fxV -hlZ -hlZ -iBl -vig -eWK -eWK -eWK -wYU -xCY -xCY -xtj -lHU -lHU -lHU -lHU -jMe -lHU -iig -lHU -lHU -lHU -lHU -lHU -lHU -xKR -mDb -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -mTx -mTx -mTx -mTx -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -cQj -cQj -cQj -eUN -eUN -cNj -eUN -wbN -jJO -jja -eUN -wbN -eUN -eUN -eUN -cNj -eUN -eUN -fjM -gCc -eUN -eUN -eUN -vEr -ftv -ftv -ftv -ftv -ftv -ftv -ftv -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -lJV -"} -(196,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -uph -uph -bZh -wvS -tvU -wEC -bZh -uph -hdL -hdL -pjL -pjL -pjL -pjL -dAw -dAw -rdR -pjL -pjL -uTw -uTw -uTw -uTw -uTw -rVA -rVA -uTw -rVA -rVA -uTw -uTw -uTw -lWF -lWF -oCm -mDb -gUI -lWF -lWF -lWF -dPW -dXo -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -mTx -mTx -mTx -mTx -mTx -mTx -eUN -eUN -cNj -eUN -wbN -jJO -ncq -jJO -wbN -eUN -eUN -msn -xmY -eUN -eUN -fjM -eUN -eUN -bUb -eUN -eUN -ftv -ftv -ftv -ftv -ftv -ftv -ftv -tit -tit -xpG -tit -tit -tit -jet -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -lJV -"} -(197,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -uph -uph -uph -ocI -bZh -mEq -ljf -aGo -bZh -uph -uph -uph -uph -uph -rdR -pjL -dAw -dAw -pjL -rVA -rVA -uTw -pTY -jLg -ygu -btM -ygu -ygu -jLg -tsA -pEP -nhq -baH -uTw -uTw -uTw -sKT -pmJ -uTw -dXo -dXo -dXo -dXo -dXo -aJu -aJu -aJu -aJu -aJu -aJu -aJu -mTx -mTx -mTx -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -mTx -mTx -mTx -mTx -mTx -mTx -eUN -eUN -cNj -eUN -fjM -fjM -wbN -wbN -fjM -gCc -msn -ash -cNj -eUN -pxf -fjM -eUN -eUN -eUN -eUN -vEr -ftv -ftv -ftv -ftv -ftv -ftv -ftv -tit -tit -tit -tit -tit -tit -tit -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -tit -tit -tit -tit -tit -tit -aJM -mAb -mAb -mAb -mAb -lJV -"} -(198,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -uph -bZh -bZh -ujU -bZh -xJb -rPz -aQW -bZh -uph -tTX -xpB -xpB -uph -pjL -pjL -dAw -dAw -wVn -rVA -pTY -ehU -ygu -ygu -nDZ -uTw -ygu -oyq -ygu -eww -eww -ygu -ygu -uTw -ygu -ygu -sKT -ygu -uTw -eWs -eWs -eWs -mTx -aJu -aJu -aJu -aJu -aJu -aJu -aJu -mTx -mTx -mTx -mTx -mTx -mTx -mTx -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -mTx -mTx -mTx -mTx -mTx -mTx -mTx -eUN -eUN -cNj -lYf -lYf -lYf -eUN -eUN -eUN -msn -ash -eUN -cNj -eUN -eUN -fjM -gCc -eUN -eUN -eUN -eUN -ftv -ftv -ftv -ftv -nEW -nEW -nEW -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -lJV -"} -(199,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -uph -bZh -bZh -bZh -bZh -bZh -bZh -arH -bZh -fHZ -qZb -qZb -qZb -kAt -tzL -tzL -tzL -tzL -uTw -uTw -iyX -ehU -ygu -tjN -syf -uTw -qWT -rAj -aQQ -sKT -sKT -sKT -sKT -vQS -sKT -sKT -sKT -ltb -uTw -eWs -eWs -mTx -mTx -aJu -aJu -aJu -aJu -aJu -aJu -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -aJu -aJu -aJu -aJu -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -uAP -mTx -mTx -nEW -ftv -ftv -vsH -ccB -ftv -ftv -qFT -ftv -ftv -nEW -nEW -nEW -nEW -nEW -fjM -ftv -ftv -ftv -nEW -nEW -nEW -nEW -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -mAb -lJV -"} -(200,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -uph -gOi -gwP -gOi -pQc -tIO -bZh -bZh -tuc -uph -cuD -xPe -tTX -uph -pVb -dAw -dAw -tzL -qSd -ygu -eZu -ygu -uTw -uTw -uTw -uTw -uTw -uTw -uTw -uHr -ygu -uDc -syf -syf -ehU -uTw -ygu -sKT -uTw -uTw -uTw -mTx -aJu -aJu -aJu -aJu -aJu -aJu -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -aJu -aJu -aJu -aJu -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -uAP -mTx -mTx -ftv -ftv -vsH -ccB -ftv -ftv -ftv -qFT -ftv -ftv -nEW -nEW -nEW -lRt -lRt -lRt -lRt -lRt -lRt -lRt -lRt -lRt -lRt -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -lJV -"} -(201,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -uph -uph -uph -uph -uph -uph -obN -uph -uph -uph -uph -uph -uph -uph -rdR -pjL -dAw -tzL -sKT -sKT -sKT -sKT -jTw -sKT -ygu -ygu -jLg -sKT -jTw -sKT -ygu -rPs -eww -ygu -ygu -uTw -hen -mft -ygu -oJX -uTw -aJu -aJu -aJu -aJu -aJu -aJu -aJu -mTx -mTx -mTx -mTx -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -uAP -mTx -mTx -ftv -vsH -ccB -ftv -ftv -ftv -ftv -qFT -ftv -ftv -nEW -lRt -lRt -lRt -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -"} -(202,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -uTw -uTw -rVA -rVA -uTw -uIH -sKT -sKT -sKT -sKT -uTw -rVA -rVA -uTw -ugt -ygu -gXt -uTw -hen -mft -fub -uQD -uTw -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -uAP -mTx -mTx -ftv -qFT -ftv -ftv -ftv -ftv -ftv -qFT -ftv -ftv -nEW -lRt -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -"} -(203,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -uTw -uAg -uAg -uTw -tQa -vTq -tQa -vTq -tQa -uTw -uAg -uAg -uTw -sEF -reG -rWy -uTw -hen -mft -uDc -rdN -uTw -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -uAP -mTx -mTx -nEW -qFT -ftv -nEW -ftv -ftv -ftv -qFT -nEW -nEW -nEW -lRt -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -"} -(204,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -uTw -oAv -oAv -uTw -tQa -nUh -tQa -nUh -tQa -uTw -oAv -oAv -uTw -uTw -uTw -uTw -uTw -uTw -uTw -uTw -uTw -uTw -mTx -mTx -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -aJu -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -uAP -mTx -mTx -nEW -pJG -nEW -nEW -ftv -ftv -ftv -qFT -nEW -nEW -nEW -lRt -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -"} -(205,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -hdL -hdL -hdL -tsJ -sKf -sKf -sKf -sKf -sKf -sKf -sKf -bUF -bUF -bUF -bUF -bUF -eWs -eWs -eWs -eWs -eWs -eWs -eWs -mTx -mTx -mTx -mTx -aJu -aJu -aJu -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -uAP -mTx -mTx -nEW -pJG -nEW -nEW -nEW -nEW -nEW -pJG -nEW -lRt -lRt -lRt -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -"} -(206,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -epe -luu -luu -luu -luu -luu -luu -luu -mTx -mTx -mTx -mTx -aJu -aJu -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -uAP -mTx -mTx -nEW -pJG -nEW -nEW -nEW -nEW -nEW -pJG -nEW -lRt -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -"} -(207,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dqQ -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -uAP -mTx -mTx -nEW -pJG -lRt -lRt -lRt -lRt -lRt -pJG -lRt -lRt -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -"} -(208,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dqQ -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -mTx -uAP -mTx -mTx -nEW -pJG -tbH -dSy -dSy -dSy -tbH -tbH -tbH -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -"} -(209,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -dqQ -uAP -dqQ -dqQ -lRt -pJG -tbH -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -"} -(210,1,1) = {" -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -tbH -tbH -tbH -tbH -tbH -tbH -tbH -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -dSy -"} diff --git a/_maps/map_files/Last_Stand/Last_Stand.dmm b/_maps/map_files/Last_Stand/Last_Stand.dmm index 74927dc9328..6f3828ca824 100644 --- a/_maps/map_files/Last_Stand/Last_Stand.dmm +++ b/_maps/map_files/Last_Stand/Last_Stand.dmm @@ -161,15 +161,6 @@ /obj/machinery/deployable/floodlight, /turf/open/floor/prison, /area/whiskey_outpost) -"aY" = ( -/obj/structure/rack, -/obj/item/storage/box/visual/magazine/compact/standard_carbine/full, -/obj/item/storage/box/visual/magazine/compact/standard_carbine/full, -/obj/item/storage/box/visual/magazine/compact/standard_carbine/full, -/obj/item/storage/box/visual/magazine/compact/standard_carbine/full, -/obj/item/storage/box/visual/magazine/compact/standard_carbine/full, -/turf/open/floor/prison, -/area/whiskey_outpost) "aZ" = ( /turf/open/floor/tile/yellow{ dir = 10 @@ -981,8 +972,6 @@ }, /area/whiskey_outpost) "fE" = ( -/obj/item/storage/box/crate/minisentry, -/obj/item/storage/box/crate/minisentry, /obj/structure/rack, /turf/open/floor/prison, /area/whiskey_outpost) @@ -1524,12 +1513,6 @@ /obj/machinery/smartfridge/chemistry, /turf/open/floor/mainship/sterile, /area/whiskey_outpost) -"iY" = ( -/obj/structure/largecrate/supply/weapons/standard_carbine, -/turf/open/floor/plating/asteroidwarning{ - dir = 4 - }, -/area/whiskey_outpost) "iZ" = ( /obj/structure/largecrate/supply/weapons/sentries, /turf/open/floor/plating/asteroidwarning{ @@ -2697,10 +2680,6 @@ /obj/structure/largecrate/supply/floodlights, /turf/open/floor/plating/asteroidfloor, /area/whiskey_outpost) -"qm" = ( -/obj/structure/largecrate/supply/weapons/standard_carbine, -/turf/open/floor/plating/asteroidfloor, -/area/whiskey_outpost) "qo" = ( /obj/structure/closet/crate, /obj/item/weapon/gun/launcher/rocket, @@ -3383,24 +3362,10 @@ /obj/item/storage/box/visual/magazine/compact/sh15/slug/full, /obj/item/storage/box/visual/magazine/compact/smg90/full, /obj/item/storage/box/visual/magazine/compact/smg90/full, -/obj/item/storage/box/visual/magazine/compact/standard_revolver/full, -/obj/item/storage/box/visual/magazine/compact/standard_pistol/full, /obj/item/storage/box/visual/magazine/compact/mp19/full, -/obj/item/storage/box/visual/magazine/compact/standard_lmg/full, -/obj/item/storage/box/visual/magazine/compact/standard_lmg/full, -/obj/item/storage/box/visual/magazine/compact/standard_heavypistol/full, -/obj/item/storage/box/visual/magazine/compact/standard_gpmg/full, -/obj/item/storage/box/visual/magazine/compact/standard_gpmg/full, -/obj/item/storage/box/visual/magazine/compact/standard_dmr/full, -/obj/item/storage/box/visual/magazine/compact/standard_dmr/full, -/obj/item/storage/box/visual/magazine/compact/standard_carbine/full, -/obj/item/storage/box/visual/magazine/compact/standard_carbine/full, -/obj/item/storage/box/visual/magazine/compact/standard_br/full, -/obj/item/storage/box/visual/magazine/compact/standard_assaultrifle/full, /obj/item/storage/box/visual/magazine/compact/plasma_pistol/full, /obj/item/storage/box/visual/magazine/compact/lasrifle/marine/full, /obj/item/storage/box/visual/magazine/compact/lasrifle/full, -/obj/item/storage/box/visual/magazine/compact/chamberedrifle/full, /turf/open/ground/grass, /area/whiskey_outpost/outside/west) "vM" = ( @@ -4456,11 +4421,6 @@ /obj/machinery/floodlight/outpost, /turf/open/floor/plating/asteroidfloor, /area/whiskey_outpost/outside/north) -"GX" = ( -/obj/structure/barricade/metal, -/obj/structure/barricade/metal, -/turf/open/floor/plating/warning, -/area/whiskey_outpost/outside/east) "GZ" = ( /obj/item/weapon/gun/sentry/premade, /obj/structure/barricade/sandbags{ @@ -5087,7 +5047,6 @@ /turf/closed/wall/r_wall, /area/whiskey_outpost/outside/east) "ND" = ( -/obj/effect/ai_node/goal, /obj/structure/nuclearbomb, /turf/open/floor/plating/asteroidfloor, /area/whiskey_outpost) @@ -5165,9 +5124,7 @@ }, /area/whiskey_outpost) "Ot" = ( -/obj/machinery/marine_selector/clothes{ - lock_flags = 0 - }, +/obj/machinery/marine_selector/clothes, /turf/open/floor/plating/ground/dirt, /area/whiskey_outpost) "Oz" = ( @@ -5338,11 +5295,6 @@ /obj/structure/barricade/plasteel, /turf/open/floor/plating/warning, /area/whiskey_outpost/outside/west) -"Rb" = ( -/obj/structure/barricade/metal, -/obj/structure/barricade/metal, -/turf/open/floor/plating/warning, -/area/whiskey_outpost/outside/west) "Rc" = ( /obj/structure/flora/tree/jungle, /turf/open/ground/jungle, @@ -12122,7 +12074,7 @@ NW NW NW ac -aY +fE bl ns cd @@ -13003,7 +12955,7 @@ Hr hm hm Xh -Rb +QX Hm Qu In @@ -13929,7 +13881,7 @@ yQ yw yw FD -qm +yw yw yQ Fi @@ -14921,7 +14873,7 @@ kl Zi PW Pv -GX +VI Jf Jf Jf @@ -15695,7 +15647,7 @@ ft gb gK iH -iY +kc jp kc kC @@ -16839,7 +16791,7 @@ Jf Jf Jf Pv -GX +VI Jf Jf Bp diff --git a/_maps/map_files/Lawanka_Outpost/LawankaOutpost.dmm b/_maps/map_files/Lawanka_Outpost/LawankaOutpost.dmm index ec508465830..3dad6ee6089 100644 --- a/_maps/map_files/Lawanka_Outpost/LawankaOutpost.dmm +++ b/_maps/map_files/Lawanka_Outpost/LawankaOutpost.dmm @@ -1702,9 +1702,6 @@ /obj/item/stack/sheet/metal, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, /turf/open/floor/tile/dark/red2/corner{ dir = 1 }, @@ -12153,14 +12150,6 @@ }, /turf/open/floor/tile/blue/taupebluecorner, /area/lawankaoutpost/colony/robotics) -"kyc" = ( -/obj/effect/spawner/random/misc/structure/supplycrate, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/open/floor/tile/dark, -/area/lawankaoutpost/colony/operations_storage) "kyf" = ( /obj/effect/turf_decal/tracks/wheels/bloody{ dir = 4 @@ -61655,7 +61644,7 @@ oay mXv hQO hQO -kyc +hQO usj pMi wgw diff --git a/_maps/map_files/Orion_Military_Outpost/orionoutpost.dmm b/_maps/map_files/Orion_Military_Outpost/orionoutpost.dmm index 15ae39ee561..23a764f5f9d 100644 --- a/_maps/map_files/Orion_Military_Outpost/orionoutpost.dmm +++ b/_maps/map_files/Orion_Military_Outpost/orionoutpost.dmm @@ -3295,7 +3295,6 @@ "qM" = ( /obj/effect/ai_node, /obj/structure/barricade/plasteel, -/obj/structure/barricade/plasteel, /turf/open/floor/plating/ground/concrete, /area/orion_outpost/surface/landing_pad2_external) "qO" = ( @@ -8573,7 +8572,6 @@ /area/orion_outpost/ground/outpostw) "RS" = ( /obj/structure/barricade/metal, -/obj/structure/barricade/metal, /turf/open/floor/plating/ground/mars/random/cave/darker, /area/orion_outpost/surface/landing_pad2_external) "RT" = ( diff --git a/_maps/map_files/Whiskey_Outpost/Whiskey_Outpost_v2.dmm b/_maps/map_files/Whiskey_Outpost/Whiskey_Outpost_v2.dmm index f7e25da7207..32654bee941 100644 --- a/_maps/map_files/Whiskey_Outpost/Whiskey_Outpost_v2.dmm +++ b/_maps/map_files/Whiskey_Outpost/Whiskey_Outpost_v2.dmm @@ -2726,7 +2726,6 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/window/reinforced, /obj/machinery/vending/weapon, /turf/open/floor/plating/asteroidfloor, /area/whiskey_outpost) @@ -6800,9 +6799,7 @@ /turf/open/floor/plating/ground/dirt, /area/whiskey_outpost/outside/north) "Ot" = ( -/obj/machinery/marine_selector/clothes{ - lock_flags = 0 - }, +/obj/machinery/marine_selector/clothes, /turf/open/floor/plating/ground/dirt, /area/whiskey_outpost) "Ow" = ( @@ -7057,7 +7054,6 @@ /area/whiskey_outpost/outside/west) "Rb" = ( /obj/structure/barricade/metal, -/obj/structure/barricade/metal, /turf/open/floor/plating/warning, /area/whiskey_outpost/outside/west) "Rc" = ( diff --git a/_maps/map_files/deltastation/deltastation.dmm b/_maps/map_files/deltastation/deltastation.dmm index 7b46c966f7d..87f8c6806f6 100644 --- a/_maps/map_files/deltastation/deltastation.dmm +++ b/_maps/map_files/deltastation/deltastation.dmm @@ -1657,9 +1657,6 @@ /obj/machinery/light{ dir = 8 }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/layer_manifold, /turf/open/floor/iron, /area/deltastation/engineering/supermatter/room) @@ -15669,9 +15666,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -20621,8 +20615,6 @@ /area/deltastation/command/heads_quarters/rd) "ehW" = ( /obj/structure/prop/mainship/supermatter, -/obj/effect/mapping_helpers/simple_pipes/cyan/visible/layer2, -/obj/effect/mapping_helpers/simple_pipes/green/visible/layer4, /turf/open/floor/engine, /area/deltastation/engineering/supermatter) "ehZ" = ( @@ -24793,12 +24785,6 @@ /obj/effect/turf_decal/warning_stripes/box/empty, /turf/open/floor/iron, /area/deltastation/hallway/secondary/entry) -"eYP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/gcircuit, -/area/deltastation/ai_monitored/turret_protected/ai) "eYV" = ( /turf/open/floor/iron/white/corner{ dir = 4 @@ -36357,9 +36343,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, /turf/open/floor/iron, /area/deltastation/engineering/supermatter/room) "hnx" = ( @@ -36538,8 +36521,6 @@ /turf/closed/wall/r_wall/unmeltable, /area/deltastation/command/heads_quarters/hos) "hpF" = ( -/obj/effect/mapping_helpers/simple_pipes/cyan/visible/layer2, -/obj/effect/mapping_helpers/simple_pipes/green/visible/layer4, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -44350,7 +44331,9 @@ /turf/open/floor/iron, /area/deltastation/cargo/storage) "iXV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, /turf/open/floor/plating, /area/deltastation/ai_monitored/turret_protected/ai) "iXW" = ( @@ -46298,9 +46281,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47209,7 +47189,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/layer_manifold, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, /turf/open/floor/iron, /area/deltastation/science/xenobiology) @@ -48684,7 +48663,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/simple_pipes/cyan/visible, /obj/effect/mapping_helpers/simple_pipes/cyan/visible/layer2, /obj/machinery/door_control{ dir = 4; @@ -52845,9 +52823,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, /turf/open/floor/iron, /area/deltastation/engineering/atmos/project) "kMF" = ( @@ -52934,8 +52909,6 @@ /turf/open/floor/iron/cafeteria, /area/deltastation/security/prison/mess) "kNX" = ( -/obj/effect/mapping_helpers/simple_pipes/cyan/visible/layer2, -/obj/effect/mapping_helpers/simple_pipes/green/visible/layer4, /obj/effect/forcefield{ desc = "You can't get in. Heh."; name = "Blocker" @@ -59138,16 +59111,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/deltastation/security/prison) -"mbE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/layer1{ - dir = 1 - }, -/obj/effect/forcefield{ - desc = "You can't get in. Heh."; - name = "Blocker" - }, -/turf/open/floor/engine, -/area/deltastation/engineering/supermatter) "mbR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/layer1, /turf/open/floor/iron/white/smooth_large, @@ -64414,7 +64377,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/simple_pipes/green/visible, /obj/effect/mapping_helpers/simple_pipes/green/visible/layer4, /obj/structure/sign/securearea{ dir = 8 @@ -72130,7 +72092,6 @@ /obj/effect/turf_decal/tile/transparent/neutral/fourcorners, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/outlet_injector, /turf/open/floor/iron/dark, /area/deltastation/security/execution/education) "oLV" = ( @@ -74196,8 +74157,6 @@ /turf/open/floor/plating, /area/deltastation/engineering/transit_tube) "pir" = ( -/obj/effect/mapping_helpers/simple_pipes/cyan/visible/layer2, -/obj/effect/mapping_helpers/simple_pipes/green/visible/layer4, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -77426,9 +77385,6 @@ "pNP" = ( /obj/effect/spawner/random/misc/structure/office_chair_or_metal/dark/west, /obj/effect/turf_decal/tile/transparent/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, /obj/effect/ai_node, /turf/open/floor/iron/dark, /area/deltastation/ai_monitored/turret_protected/ai) @@ -78756,7 +78712,6 @@ }, /obj/structure/prop/mainship/turretprop, /obj/effect/turf_decal/tile/transparent/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ dir = 6 }, @@ -94615,9 +94570,6 @@ /obj/effect/turf_decal/tile/transparent/neutral/fourcorners, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/layer1{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, /turf/open/floor/iron, /area/deltastation/science/server) @@ -95292,16 +95244,6 @@ /turf/open/floor/iron/white, /area/deltastation/medical/chemistry) "ttl" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Gas to Chamber"; - pixel_y = -5 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Chamber to Cooling"; - pixel_y = 4 - }, /obj/effect/turf_decal/box, /turf/open/floor/engine, /area/deltastation/engineering/supermatter) @@ -101327,14 +101269,6 @@ /obj/effect/landmark/start/job/xenomorph, /turf/open/floor/iron/grimy, /area/deltastation/ai_monitored/turret_protected/aisat_interior) -"uCs" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/forcefield{ - desc = "You can't get in. Heh."; - name = "Blocker" - }, -/turf/open/floor/engine, -/area/deltastation/engineering/supermatter) "uCE" = ( /turf/closed/wall/r_wall/unmeltable, /area/deltastation/engineering/atmos/hfr_room) @@ -107853,9 +107787,7 @@ /turf/open/floor/iron, /area/deltastation/medical/paramedic) "vQG" = ( -/obj/effect/turf_decal/tile/transparent/yellow{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/layer_manifold, /obj/effect/turf_decal/tile/transparent/yellow, /obj/effect/decal/cleanable/dirt, /obj/effect/ai_node, @@ -110726,7 +110658,6 @@ /area/deltastation/asteroidcaves/derelictwest) "wur" = ( /obj/effect/spawner/random/misc/plant, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -110811,10 +110742,6 @@ /turf/open/floor/iron, /area/deltastation/security/execution/transfer) "wvg" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Engine Cooling Bypass" - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -112716,10 +112643,6 @@ /obj/machinery/light{ dir = 8 }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold, /turf/open/floor/iron, /area/deltastation/engineering/supermatter/room) "wNb" = ( @@ -127893,7 +127816,7 @@ piC cwO ckX xYm -eYP +ckX ckX xxC dWz @@ -141276,9 +141199,9 @@ wyI jHw jdQ gWn -uCs kNX -mbE +kNX +kNX oMW nzj sHC @@ -141533,9 +141456,9 @@ ekN spQ seK tbJ -uCs +kNX ehW -mbE +kNX aIN vRs mEc @@ -141790,9 +141713,9 @@ qxm kTe lvk gWn -uCs kNX -mbE +kNX +kNX oMW qnb jrx diff --git a/_maps/map_files/gelida_iv/gelida_iv.dmm b/_maps/map_files/gelida_iv/gelida_iv.dmm index e69e1fe9745..174b8972b28 100644 --- a/_maps/map_files/gelida_iv/gelida_iv.dmm +++ b/_maps/map_files/gelida_iv/gelida_iv.dmm @@ -8569,9 +8569,6 @@ /obj/machinery/atmospherics/pipe/simple/green/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, /turf/open/floor/mainship/stripesquare, /area/gelida/indoors/a_block/security) "fNo" = ( @@ -27049,9 +27046,6 @@ /turf/open/floor/prison, /area/gelida/indoors/c_block/mining) "shH" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, /obj/structure/barricade/metal{ dir = 4 }, @@ -31424,9 +31418,6 @@ }, /area/gelida/outdoors/colony_streets/east_central_street) "vka" = ( -/obj/structure/barricade/metal{ - dir = 1 - }, /obj/structure/barricade/metal{ dir = 1 }, diff --git a/_maps/map_files/icy_caves/icy_caves.dmm b/_maps/map_files/icy_caves/icy_caves.dmm index 28b3573e201..e5bac2e7638 100644 --- a/_maps/map_files/icy_caves/icy_caves.dmm +++ b/_maps/map_files/icy_caves/icy_caves.dmm @@ -566,9 +566,6 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 8 - }, /obj/structure/barricade/plasteel{ dir = 8 }, @@ -4829,17 +4826,6 @@ /obj/effect/ai_node, /turf/open/floor/tile/dark/brown2/corner, /area/icy_caves/outpost/garage) -"zq" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 8 - }, -/turf/open/floor/tile/dark/blue2{ - dir = 1 - }, -/area/icy_caves/outpost/LZ2) "zr" = ( /obj/machinery/atmospherics/pipe/simple/green/hidden{ dir = 4 @@ -30671,7 +30657,7 @@ Qp oP oP wa -zq +Zf QW wa oP diff --git a/_maps/map_files/oscar_outpost/oscar_outpost.dmm b/_maps/map_files/oscar_outpost/oscar_outpost.dmm index 03cf24463a0..08ca0b19e40 100644 --- a/_maps/map_files/oscar_outpost/oscar_outpost.dmm +++ b/_maps/map_files/oscar_outpost/oscar_outpost.dmm @@ -4060,11 +4060,6 @@ /obj/machinery/camera/autoname/mainship, /turf/open/floor, /area/oscar_outpost/village) -"AJ" = ( -/obj/structure/cable, -/obj/machinery/power/apc/hyper, -/turf/open/floor/tile/dark, -/area/oscar_outpost) "AL" = ( /obj/structure/closet/crate, /obj/effect/spawner/random/weaponry/gun/sidearms, @@ -18058,7 +18053,7 @@ Tx WZ Li WZ -AJ +YO YO bk xe diff --git a/_maps/map_files/slumbridge/slumbridge.dmm b/_maps/map_files/slumbridge/slumbridge.dmm index e95da57296c..0c57bdefac6 100644 --- a/_maps/map_files/slumbridge/slumbridge.dmm +++ b/_maps/map_files/slumbridge/slumbridge.dmm @@ -2073,9 +2073,6 @@ /obj/structure/disposalpipe/segment/corner{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer3{ - dir = 10 - }, /turf/open/floor/plating, /area/slumbridge/inside/hydrotreatment) "bCz" = ( @@ -2273,12 +2270,6 @@ }, /turf/open/floor/plating/asteroidplating, /area/slumbridge/inside/zeta/south) -"bIO" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible/layer1{ - dir = 8 - }, -/turf/open/floor/plating, -/area/slumbridge/inside/hydrotreatment) "bIY" = ( /obj/structure/fence, /obj/structure/flora/jungle/vines/heavy, @@ -3310,16 +3301,6 @@ /obj/machinery/computer/body_scanconsole, /turf/open/floor/tile/blue, /area/slumbridge/inside/houses/surgery/garbledradio) -"cwu" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer3{ - dir = 5; - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/visible/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/slumbridge/inside/hydrotreatment) "cwz" = ( /obj/machinery/door/airlock/mainship/secure/open, /obj/effect/turf_decal/tracks/wheels/bloody{ @@ -4620,10 +4601,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/slumbridge/inside/colony/construction) -"dxS" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible/layer1, -/turf/open/floor/plating, -/area/slumbridge/inside/hydrotreatment) "dxX" = ( /obj/effect/landmark/lv624/fog_blocker/xeno_spawn, /turf/open/floor/plating/ground/mars/random/dirt, @@ -5571,19 +5548,6 @@ dir = 6 }, /area/slumbridge/inside/colony/southerndome) -"elb" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible/layer1{ - dir = 9; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible/layer1{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer3{ - dir = 8 - }, -/turf/open/floor/plating, -/area/slumbridge/inside/hydrotreatment) "elw" = ( /obj/machinery/vending/snack, /turf/open/floor/tile/blue/whitebluefull, @@ -6160,17 +6124,6 @@ /turf/open/floor/tile/yellow/full, /area/slumbridge/inside/engi/central) "eKY" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible/layer1{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible/layer1{ - dir = 5; - pixel_x = 5; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer3{ - dir = 5 - }, /obj/structure/disposalpipe/segment, /obj/structure/lattice, /turf/open/floor/plating, @@ -6597,10 +6550,6 @@ dir = 1 }, /area/slumbridge/inside/prison/innerring) -"fdY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer3, -/turf/open/floor/plating, -/area/slumbridge/inside/hydrotreatment) "fek" = ( /obj/structure/cable, /obj/effect/ai_node, @@ -8509,8 +8458,6 @@ "gzE" = ( /obj/machinery/atmospherics/pipe/layer_manifold, /obj/structure/disposalpipe/segment/corner, -/obj/machinery/atmospherics/pipe/simple/purple/visible/layer1, -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer3, /obj/structure/lattice, /turf/open/floor/plating, /area/slumbridge/inside/hydrotreatment) @@ -10460,23 +10407,6 @@ /obj/structure/prop/mainship/gelida/powerccable, /turf/open/floor/plating/ground/snow/layer1, /area/slumbridge/outside/southwest) -"hWf" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos{ - dir = 8; - pixel_x = 3; - pixel_y = -4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible/layer1{ - dir = 8; - pixel_x = -8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible/layer2, -/obj/machinery/atmospherics/pipe/simple/purple/visible/layer1{ - dir = 8; - pixel_x = 13 - }, -/turf/open/floor/plating, -/area/slumbridge/inside/hydrotreatment) "hWn" = ( /obj/structure/table/mainship, /obj/structure/prop/mainship/minigun_crate, @@ -13412,19 +13342,6 @@ dir = 8 }, /area/slumbridge/outside/northwest) -"kaS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer3{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer3{ - dir = 10; - pixel_y = -6 - }, -/turf/open/floor/plating, -/area/slumbridge/inside/hydrotreatment) "kbn" = ( /obj/structure/flora/ausbushes/lavendergrass, /turf/open/ground/grass/weedable/patch, @@ -15136,18 +15053,6 @@ /obj/structure/stairs/seamless, /turf/open/floor/plating/ground/snow, /area/slumbridge/outside/southwest) -"lpM" = ( -/obj/machinery/atmospherics/pipe/layer_manifold, -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer3{ - dir = 10; - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/slumbridge/inside/hydrotreatment) "lpP" = ( /obj/machinery/power/apc/drained{ dir = 8 @@ -18853,13 +18758,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/slumbridge/inside/sombase/east) -"nXy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible/layer1, -/turf/open/floor/plating, -/area/slumbridge/inside/hydrotreatment) "nXF" = ( /obj/structure/cable, /obj/effect/ai_node, @@ -21841,15 +21739,6 @@ /obj/structure/cable, /turf/open/floor/tile/blue, /area/slumbridge/inside/medical/chemistry) -"qkz" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible/layer1{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer3{ - dir = 8 - }, -/turf/open/floor/plating, -/area/slumbridge/inside/hydrotreatment) "qll" = ( /obj/structure/barricade/snow, /turf/open/floor/plating/ground/snow/layer2, @@ -22473,19 +22362,6 @@ /obj/structure/cable, /turf/open/floor/mainship/silver, /area/slumbridge/inside/colony/northerndome) -"qIU" = ( -/obj/machinery/atmospherics/components/trinary/mixer/on/layer3, -/obj/machinery/atmospherics/pipe/simple/green/visible/layer1{ - dir = 8; - pixel_x = -3 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer3{ - dir = 8; - pixel_x = -3 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible/layer2, -/turf/open/floor/plating, -/area/slumbridge/inside/hydrotreatment) "qJo" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/asteroidfloor, @@ -24909,24 +24785,6 @@ /obj/structure/cable, /turf/open/floor/tile/brown, /area/slumbridge/inside/houses/dorms) -"stY" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos{ - dir = 4; - pixel_x = -4 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer3{ - dir = 8; - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible/layer1{ - pixel_y = -6 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/slumbridge/inside/hydrotreatment) "sux" = ( /obj/structure/table, /obj/item/reagent_containers/glass/bottle/dylovene, @@ -24994,12 +24852,6 @@ "swK" = ( /obj/machinery/atmospherics/pipe/layer_manifold, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/purple/visible/layer1{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer3{ - dir = 9 - }, /obj/structure/lattice, /obj/machinery/light{ dir = 4 @@ -25080,7 +24932,6 @@ /turf/open/floor/plating, /area/slumbridge/inside/engi/south) "sAl" = ( -/obj/machinery/atmospherics/pipe/manifold/purple/visible/layer1, /obj/structure/disposalpipe/segment, /obj/effect/ai_node, /turf/open/floor/plating, @@ -26617,18 +26468,6 @@ }, /turf/open/floor/elevatorshaft, /area/slumbridge/inside/zeta/north) -"tII" = ( -/obj/machinery/atmospherics/pipe/layer_manifold, -/obj/machinery/atmospherics/pipe/simple/purple/visible/layer1{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer3{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer3, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/slumbridge/inside/hydrotreatment) "tJb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/window/reinforced{ @@ -29214,15 +29053,6 @@ /obj/effect/ai_node, /turf/open/floor/plating, /area/slumbridge/inside/engi/west) -"vHI" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer3{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible/layer1{ - dir = 6 - }, -/turf/open/floor/plating, -/area/slumbridge/inside/hydrotreatment) "vHO" = ( /obj/machinery/smartfridge/chemistry/nopower, /turf/open/floor/plating, @@ -32847,15 +32677,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrown/full, /area/slumbridge/inside/houses/swcargo) -"ymi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/turf/open/floor/tile/dark, -/area/slumbridge/inside/colony/dorms) (1,1,1) = {" dHe @@ -36898,13 +36719,13 @@ feW feW buv lFT -kaS -fdY -vHI -dxS -bIO -nXy -elb +nlB +lFT +lFT +lFT +lFT +nlB +lFT lyP feW feW @@ -37080,12 +36901,12 @@ snj dIA ujc bCd -fdY -qIU -cwu -hWf +lFT +lFT +lFT +lFT nlB -qkz +lFT lyP nst feW @@ -37263,10 +37084,10 @@ nTY kzb kzb kzb -stY +kzb sAl tzA -qkz +lFT lyP ouI ouI @@ -37444,8 +37265,8 @@ rKf tlu tlu tlu -lpM -tII +tlu +tlu gzE swK lyP @@ -46731,7 +46552,7 @@ jXX xTb opq svM -ymi +hbY hbY jXX uls diff --git a/_maps/modularmaps/oscaroutpost/oscarnorthvar1.dmm b/_maps/modularmaps/oscaroutpost/oscarnorthvar1.dmm index 472a311924b..495d6465d1e 100644 --- a/_maps/modularmaps/oscaroutpost/oscarnorthvar1.dmm +++ b/_maps/modularmaps/oscaroutpost/oscarnorthvar1.dmm @@ -4326,11 +4326,6 @@ }, /area/oscar_outpost/outside/northeast) "Yr" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - name = "trench lining"; - pixel_y = 1 - }, /obj/structure/barricade/sandbags{ dir = 8; name = "trench lining"; diff --git a/_maps/modularmaps/oscaroutpost/oscarnorthvar2.dmm b/_maps/modularmaps/oscaroutpost/oscarnorthvar2.dmm index 56a5ce697d6..c399f3a1349 100644 --- a/_maps/modularmaps/oscaroutpost/oscarnorthvar2.dmm +++ b/_maps/modularmaps/oscaroutpost/oscarnorthvar2.dmm @@ -262,9 +262,6 @@ "cy" = ( /obj/structure/table/reinforced, /obj/structure/barricade/metal, -/obj/structure/barricade/metal, -/obj/structure/barricade/metal, -/obj/structure/barricade/metal, /turf/open/floor/plating, /area/oscar_outpost/outside/north) "cz" = ( @@ -1669,11 +1666,6 @@ /turf/open/floor/plating/ground/dirt2, /area/oscar_outpost/outside/west) "qC" = ( -/obj/structure/barricade/sandbags{ - dir = 4; - name = "trench lining"; - pixel_y = 1 - }, /obj/structure/barricade/sandbags{ dir = 4; name = "trench lining"; @@ -5396,11 +5388,6 @@ /turf/open/floor/plating/ground/dirt2, /area/oscar_outpost/outside/northeast) "Yr" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - name = "trench lining"; - pixel_y = 1 - }, /obj/structure/barricade/sandbags{ dir = 8; name = "trench lining"; diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm index c4569316720..1ea49d321ef 100644 --- a/code/__DEFINES/misc.dm +++ b/code/__DEFINES/misc.dm @@ -28,7 +28,7 @@ ///How many variations of bullethole patterns there are #define BULLETHOLE_STATES 10 ///Maximum possible bullet holes in a closed turf -#define BULLETHOLE_MAX 24 +#define BULLETHOLE_MAX 24 //wet floors @@ -46,6 +46,10 @@ /// Takes a datum as input, returns its ref string #define text_ref(datum) ref(datum) +/// A null statement to guard against EmptyBlock lint without necessitating the use of pass() +/// Used to avoid proc-call overhead. But use sparingly. Probably pointless in most places. +#define EMPTY_BLOCK_GUARD ; + #define RESIZE_DEFAULT_SIZE 1 GLOBAL_VAR_INIT(global_unique_id, 1) diff --git a/code/__DEFINES/procpath.dm b/code/__DEFINES/procpath.dm index 642ca3eab6c..16716d6c091 100644 --- a/code/__DEFINES/procpath.dm +++ b/code/__DEFINES/procpath.dm @@ -15,12 +15,12 @@ // below, their accesses are optimized away. /// A text string of the verb's name. - var/name as text + var/name = null as text|null /// The verb's help text or description. - var/desc as text + var/desc = null as text|null /// The category or tab the verb will appear in. - var/category as text + var/category = null as text|null /// Only clients/mobs with `see_invisibility` higher can use the verb. - var/invisibility as num + var/invisibility = null as num|null /// Whether or not the verb appears in statpanel and commandbar when you press space - var/hidden as num + var/hidden = null as num|null diff --git a/code/__HELPERS/icons.dm b/code/__HELPERS/icons.dm index 8d929c3c702..d1660931f04 100644 --- a/code/__HELPERS/icons.dm +++ b/code/__HELPERS/icons.dm @@ -252,6 +252,7 @@ ColorTone(rgb, tone) if(4, 8) usealpha = TRUE if(3, 6) //proceed as normal + EMPTY_BLOCK_GUARD // why isnt this a normal if hhhh else return diff --git a/code/__HELPERS/level_traits.dm b/code/__HELPERS/level_traits.dm index efd00d16f4d..4bc90717a90 100644 --- a/code/__HELPERS/level_traits.dm +++ b/code/__HELPERS/level_traits.dm @@ -17,4 +17,4 @@ #define is_away_level(z) SSmapping.level_trait(z, ZTRAIT_AWAY) -#define is_gameplay_level(z) SSmapping.level_trait(z, ZTRAIT_MARINE_MAIN_SHIP) || SSmapping.level_trait(z, ZTRAIT_GROUND) +#define is_gameplay_level(z) (SSmapping.level_trait(z, ZTRAIT_MARINE_MAIN_SHIP) || SSmapping.level_trait(z, ZTRAIT_GROUND)) diff --git a/code/__HELPERS/type2type.dm b/code/__HELPERS/type2type.dm index 883657d2a6b..e9784de76da 100644 --- a/code/__HELPERS/type2type.dm +++ b/code/__HELPERS/type2type.dm @@ -77,6 +77,7 @@ if(15) hex += "F" else + EMPTY_BLOCK_GUARD power-- while(length(hex) < placeholder) hex = "0[hex]" diff --git a/code/__byond_version_compat.dm b/code/__byond_version_compat.dm index ae3b5f737b2..753b8fe4b47 100644 --- a/code/__byond_version_compat.dm +++ b/code/__byond_version_compat.dm @@ -1,21 +1,14 @@ //Update this whenever you need to take advantage of more recent byond features #define MIN_COMPILER_VERSION 515 -#define MIN_COMPILER_BUILD 1636 +#define MIN_COMPILER_BUILD 1609 #ifndef SPACEMAN_DMM #if DM_VERSION < MIN_COMPILER_VERSION || DM_BUILD < MIN_COMPILER_BUILD //Don't forget to update this part #error Your version of BYOND is too out-of-date to compile this project. Go to https://secure.byond.com/download and update. -#error You need version 515.1636 or higher +#error You need version 515.1609 or higher #endif #endif -//Update this whenever the byond version is stable so people stop updating to hilariously broken versions -#define MAX_COMPILER_VERSION 515 -#define MAX_COMPILER_BUILD 1641 -#if DM_VERSION > MAX_COMPILER_VERSION || DM_BUILD > MAX_COMPILER_BUILD -#warn WARNING! your byond version is over the recommended version! There may be unexpected byond bugs! -#endif - // So we want to have compile time guarantees these methods exist on local type // We use wrappers for this in case some part of the api ever changes, and to make their function more clear // For the record: GLOBAL_VERB_REF would be useless as verbs can't be global. diff --git a/code/_compile_options.dm b/code/_compile_options.dm index fe5a7679e86..7f58d223646 100644 --- a/code/_compile_options.dm +++ b/code/_compile_options.dm @@ -70,7 +70,7 @@ #warn compiling in TESTING mode. testing() debug messages will be visible. #endif -#ifdef CIBUILDING +#if defined(CIBUILDING) && !defined(OPENDREAM) #define UNIT_TESTS #endif @@ -95,8 +95,15 @@ #define CBT #endif -#if !defined(CBT) && !defined(SPACEMAN_DMM) -#warn Building with Dream Maker is no longer supported and will result in errors. -#warn In order to build, run BUILD.cmd in the root directory. -#warn Consider switching to VSCode editor instead, where you can press Ctrl+Shift+B to build. +#if defined(OPENDREAM) + #if !defined(CIBUILDING) + #warn You are building with OpenDream. Remember to build TGUI manually. + #warn You can do this by running tgui-build.cmd from the bin directory. + #endif +#else + #if !defined(CBT) && !defined(SPACEMAN_DMM) + #warn Building with Dream Maker is no longer supported and will result in errors. + #warn In order to build, run BUILD.cmd in the root directory. + #warn Consider switching to VSCode editor instead, where you can press Ctrl+Shift+B to build. + #endif #endif diff --git a/code/controllers/globals.dm b/code/controllers/globals.dm index 895665866d2..b8851195288 100644 --- a/code/controllers/globals.dm +++ b/code/controllers/globals.dm @@ -18,9 +18,6 @@ GLOBAL_REAL(GLOB, /datum/controller/global_vars) controller_vars["vars"] = null gvars_datum_in_built_vars = controller_vars + list(NAMEOF(src, gvars_datum_protected_varlist), NAMEOF(src, gvars_datum_in_built_vars), NAMEOF(src, gvars_datum_init_order)) -//#if DM_VERSION >= 515 && DM_BUILD > 1620 //TODO: Do something with this -// #warn datum.vars hanging a ref should now be fixed, there should be no reason to remove the vars list from our controller's vars list anymore -//#endif QDEL_IN(exclude_these, 1) //signal logging isn't ready log_world("[length(vars) - length(gvars_datum_in_built_vars)] global variables") diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm index 7fe4cb11419..06568d24082 100644 --- a/code/controllers/subsystem/mapping.dm +++ b/code/controllers/subsystem/mapping.dm @@ -190,10 +190,14 @@ SUBSYSTEM_DEF(mapping) var/datum/map_config/ground_map = configs[GROUND_MAP] INIT_ANNOUNCE("Loading [ground_map.map_name]...") LoadGroup(FailedZs, ground_map.map_name, ground_map.map_path, ground_map.map_file, ground_map.traits, ZTRAITS_GROUND) + // Also saving this as a feedback var as we don't have ship_name in the round table. + SSblackbox.record_feedback(FEEDBACK_TEXT, "ground_map", 1, ground_map.map_name) + #if !(defined(CIBUILDING) && !defined(ALL_MAPS)) var/datum/map_config/ship_map = configs[SHIP_MAP] INIT_ANNOUNCE("Loading [ship_map.map_name]...") LoadGroup(FailedZs, ship_map.map_name, ship_map.map_path, ship_map.map_file, ship_map.traits, ZTRAITS_MAIN_SHIP) + #endif if(SSdbcore.Connect()) var/datum/db_query/query_round_map_name = SSdbcore.NewQuery({" @@ -202,10 +206,6 @@ SUBSYSTEM_DEF(mapping) query_round_map_name.Execute() qdel(query_round_map_name) - // Also saving this as a feedback var as we don't have ship_name in the round table. - SSblackbox.record_feedback(FEEDBACK_TEXT, "ground_map", 1, ground_map.map_name) - SSblackbox.record_feedback(FEEDBACK_TEXT, "ship_map", 1, ship_map.map_name) - if(LAZYLEN(FailedZs)) //but seriously, unless the server's filesystem is messed up this will never happen var/msg = "RED ALERT! The following map files failed to load: [FailedZs[1]]" if(length(FailedZs) > 1) diff --git a/code/datums/gamemodes/last_stand.dm b/code/datums/gamemodes/last_stand.dm index 7905f78b170..304efad0c1a 100644 --- a/code/datums/gamemodes/last_stand.dm +++ b/code/datums/gamemodes/last_stand.dm @@ -70,6 +70,10 @@ continue GLOB.latejoin_gateway -= loc + for(var/atom/nuke in GLOB.last_stand_nukes) + var/turf_targeted = get_turf(nuke) + new /obj/effect/ai_node/goal(turf_targeted, null) + GLOB.start_squad_landmarks_list = null GLOB.latejoin_squad_landmarks_list = null diff --git a/code/datums/gamemodes/offduty.dm b/code/datums/gamemodes/offduty.dm deleted file mode 100644 index 262953db877..00000000000 --- a/code/datums/gamemodes/offduty.dm +++ /dev/null @@ -1,62 +0,0 @@ -/datum/game_mode/offduty - name = "Off-Duty" - config_tag = "Off-Duty" - required_players = 0 - votable = FALSE - allow_persistence_save = FALSE - var/operation_start_timer - -/datum/game_mode/offduty/announce() - to_chat(world, "The current game mode is - Off-Duty!") - to_chat(world, "Just have fun and role-play! Don't do harm to your fellow comrades!") - -/datum/game_mode/offduty/post_setup() - . = ..() - addtimer(CALLBACK(PROC_REF(start_round_end)), 10 SECONDS) - - if(!operation_start_timer) - return TRUE - -/datum/game_mode/offduty/check_finished() - var/round_end_stage = 0 - - if(round_end_stage == 2) - return TRUE - return FALSE - - if(world.time < (SSticker.round_start_time + 5 SECONDS)) - return FALSE - -/datum/game_mode/offduty/process() - if(round_finished) - return FALSE - -/datum/game_mode/offduty/declare_completion() - . = ..() - to_chat(world, span_round_header("|Round Complete|")) - to_chat(world, span_round_body("Thus ends the story of the men and women of the [SSmapping.configs[SHIP_MAP].map_name] and their day-off on [SSmapping.configs[GROUND_MAP].map_name].")) - var/sound/S = sound(pick('sound/theme/neutral_hopeful1.ogg','sound/theme/neutral_hopeful2.ogg'), channel = CHANNEL_CINEMATIC) - SEND_SOUND(world, S) - - log_game("[round_finished]\nGame mode: [name]\nRound time: [duration2text()]\nEnd round player population: [length(GLOB.clients)]\nTotal xenos spawned: [GLOB.round_statistics.total_xenos_created]\nTotal humans spawned: [GLOB.round_statistics.total_humans_created]") - - announce_medal_awards() - announce_round_stats() - -/datum/game_mode/offduty/proc/start_round_end() - check_finished(TRUE) - var/datum/game_mode/offduty/check_finished/round_end_stage = 1 - -/datum/game_mode/offduty/proc/get_operation_start_countdown() - if(!operation_start_timer) - return - var/eta = timeleft(operation_start_timer) * 0.1 - if(eta > 0) - return "[(eta / 60) % 60]:[add_zero(num2text(eta % 60), 2)]" -/* Sigh, this part isn't working. - XSlayer300 -/datum/game_mode/offduty/proc/announce_deployment(announce_humans = TRUE) - var/name = "[MAIN_AI_SYSTEM] Signal Decrypted" - var/input = {"A TGMC distress signal has been decrypted in an unknown location.

Prepare for deployment and briefing."} - - if(var/round_end_stage == 2) - priority_announce(input, name, sound = 'sound/AI/bioscan.ogg')*/ diff --git a/code/datums/keybinding/xeno.dm b/code/datums/keybinding/xeno.dm index 9c317e4d73b..84efd940778 100644 --- a/code/datums/keybinding/xeno.dm +++ b/code/datums/keybinding/xeno.dm @@ -43,7 +43,7 @@ /datum/keybinding/xeno/secrete_resin name = "secrete_resin" full_name = "Secrete Resin" - description = "Builds whatever you’ve selected with (choose resin structure) on your tile." + description = "Builds whatever you've selected with (choose resin structure) on your tile." keybind_signal = COMSIG_XENOABILITY_SECRETE_RESIN hotkey_keys = list("R") diff --git a/code/game/area/barrenquilla_mining.dm b/code/game/area/barrenquilla_mining.dm index 1b745878fc0..568034bbf1e 100644 --- a/code/game/area/barrenquilla_mining.dm +++ b/code/game/area/barrenquilla_mining.dm @@ -2,9 +2,11 @@ //Base Area +//Why is /area/barren a lava area? /area/barren name = "Lava" icon_state = "lava" + always_unpowered = TRUE //Caves /area/lavaland/cave @@ -44,11 +46,13 @@ name = "Landing Zone 1" icon_state = "lava_lz1" outside = FALSE + always_unpowered = FALSE /area/barren/cave/lz2 name = "Landing Zone 2" icon_state = "lava_lz2" outside = FALSE + always_unpowered = FALSE /area/barren/caves name = "Unknown Area" @@ -83,6 +87,7 @@ icon_state = "lava_med" outside = FALSE minimap_color = MINIMAP_AREA_MEDBAY + always_unpowered = FALSE /area/barren/medical/chemistry name = "Medical Clinic Chemistry" @@ -102,6 +107,7 @@ outside = FALSE icon_state = "lava_engine" minimap_color = MINIMAP_AREA_ENGI + always_unpowered = FALSE /area/barren/engie/one name = "Generator One" @@ -126,6 +132,7 @@ icon_state = "lava_sec_prison" outside = FALSE minimap_color = MINIMAP_AREA_SEC + always_unpowered = FALSE /area/barren/security/storage name = "Prison Facility Storage" @@ -148,6 +155,7 @@ minimap_color = MINIMAP_AREA_LIVING ceiling = CEILING_METAL outside = FALSE + always_unpowered = FALSE /area/barren/civilian/cook name = "Civilian Kitchen" @@ -204,10 +212,12 @@ /area/barren/misc/genstorage name = "General Storage" icon_state = "lava_misc_genstorage" + always_unpowered = FALSE /area/barren/misc/eastarmory name = "Eastern Armory" icon_state = "lava_misc_armory1" + always_unpowered = FALSE /area/barren/misc/westarmory name = "Western Armory" @@ -217,6 +227,7 @@ name = "Ore Processing Facility" icon_state = "lava_misc_refinery" minimap_color = MINIMAP_AREA_ENGI + always_unpowered = FALSE /area/barren/misc/crashed name = "Crashed Ship" @@ -230,6 +241,7 @@ /area/barren/misc/ashshelter name = "Ash Shelter" icon_state = "lava_ash_shelter" + always_unpowered = FALSE /area/barren/misc/ruin name = "\improper Unknown structure" diff --git a/code/game/area/desertdam.dm b/code/game/area/desertdam.dm deleted file mode 100644 index 29b33c187f8..00000000000 --- a/code/game/area/desertdam.dm +++ /dev/null @@ -1,1031 +0,0 @@ -//Base Instance -/area/desert_dam - name = "Desert Dam" - icon_state = "cliff_blocked" - -//INTERIOR -// areas under rock -/area/desert_dam/interior - ceiling = CEILING_METAL - outside = FALSE - -//NorthEastern Lab Section -/area/desert_dam/interior/lab_northeast - ceiling = CEILING_DEEP_UNDERGROUND - minimap_color = MINIMAP_AREA_RESEARCH_CAVE - -/area/desert_dam/interior/lab_northeast - name = "Northeastern Lab" - icon_state = "purple" - -/area/desert_dam/interior/lab_northeast/east_lab_lobby - name = "East Lab Lobby" - icon_state = "green" - -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway - name = "East Lab Western Hallway" - icon_state = "blue" - -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway - name = "East Lab Central Hallway" - icon_state = "green" - -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway - name = "East Lab East Hallway" - icon_state = "yellow" - -/area/desert_dam/interior/lab_northeast/east_lab_workshop - name = "East Lab Workshop" - icon_state = "ass_line" - -/area/desert_dam/interior/lab_northeast/east_lab_storage - name = "East Lab Storage " - icon_state = "storage" - -/area/desert_dam/interior/lab_northeast/east_lab_RD_office - name = "East Lab Research Director's Office" - icon_state = "yellow" - -/area/desert_dam/interior/lab_northeast/east_lab_maintenence - name = "East Lab Maintenence" - icon_state = "maintcentral" - -/area/desert_dam/interior/lab_northeast/east_lab_containment - name = "East Lab Containment" - icon_state = "purple" - -/area/desert_dam/interior/lab_northeast/east_lab_RND - name = "East Lab Research and Development" - icon_state = "purple" - -/area/desert_dam/interior/lab_northeast/east_lab_biology - name = "East Lab Biology" - icon_state = "purple" - -/area/desert_dam/interior/lab_northeast/east_lab_surgery - name = "East Lab Surgery" - icon_state = "red" - -/area/desert_dam/interior/lab_northeast/east_lab_excavation - name = "East Lab Excavation Prep" - icon_state = "blue" - -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance - name = "East Lab West Entrance" - icon_state = "purple" - -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance - name = "East Lab Entrance" - icon_state = "purple" - -/area/desert_dam/interior/lab_northeast/east_lab_security_checkpoint - name = "East Lab Security Checkpoint" - icon_state = "purple" - minimap_color = MINIMAP_AREA_SEC_CAVE - -/area/desert_dam/interior/lab_northeast/east_lab_security_office - name = "East Lab Security Office" - icon_state = "security" - minimap_color = MINIMAP_AREA_SEC_CAVE - -/area/desert_dam/interior/lab_northeast/east_lab_security_armory - name = "East Lab Armory" - icon_state = "armory" - minimap_color = MINIMAP_AREA_SEC_CAVE - -/area/desert_dam/interior/lab_northeast/east_lab_xenobiology - name = "East Lab Xenobiology" - icon_state = "red" - -//Dam Interior -/area/desert_dam/interior/dam_interior - minimap_color = MINIMAP_AREA_ENGI - outside = FALSE - -/area/desert_dam/interior/dam_interior/engine_room - name = "Engineering Generator Room" - icon_state = "yellow" - -/area/desert_dam/interior/dam_interior/control_room - name = "Engineering Control Room" - icon_state = "red" - -/area/desert_dam/interior/dam_interior/smes_main - name = "Engineering Main Substation" - icon_state = "purple" - -/area/desert_dam/interior/dam_interior/smes_backup - name = "Engineering Secondary Backup Substation" - icon_state = "green" - -/area/desert_dam/interior/dam_interior/engine_east_wing - name = "Engineering East Engine Wing" - icon_state = "blue-red" - -/area/desert_dam/interior/dam_interior/engine_west_wing - name = "Engineering West Engine Wing" - icon_state = "yellow" - -/area/desert_dam/interior/dam_interior/lobby - name = "Engineering Lobby" - icon_state = "purple" - -/area/desert_dam/interior/dam_interior/atmos_storage - name = "Engineering Atmospheric Storage" - icon_state = "purple" - -/area/desert_dam/interior/dam_interior/northwestern_tunnel - name = "Engineering Northwestern Tunnel" - icon_state = "green" - -/area/desert_dam/interior/dam_interior/north_tunnel - name = "Engineering Northern Tunnel" - icon_state = "blue-red" - minimap_color = MINIMAP_AREA_COLONY - -/area/desert_dam/interior/dam_interior/west_tunnel - name = "Engineering Western Tunnel" - icon_state = "yellow" - -/area/desert_dam/interior/dam_interior/central_tunnel - name = "Engineering Central Tunnel" - icon_state = "red" - minimap_color = MINIMAP_AREA_COLONY - -/area/desert_dam/interior/dam_interior/south_tunnel - name = "Engineering Southern Tunnel" - icon_state = "purple" - minimap_color = MINIMAP_AREA_ENGI - -/area/desert_dam/interior/dam_interior/northeastern_tunnel - name = "Engineering Northeastern Tunnel" - icon_state = "green" - minimap_color = MINIMAP_AREA_COLONY - -/area/desert_dam/interior/dam_interior/CE_office - name = "Engineering Chief Engineer's Office" - icon_state = "yellow" - -/area/desert_dam/interior/dam_interior/workshop - name = "Engineering Workshop" - icon_state = "purple" - -/area/desert_dam/interior/dam_interior/hanger - name = "Engineering Hangar" - icon_state = "hangar" - -/area/desert_dam/interior/dam_interior/hangar_storage - name = "Engineering Hangar Storage" - icon_state = "storage" - -/area/desert_dam/interior/dam_interior/auxilary_tool_storage - name = "Engineering Auxiliary Tool Storage" - icon_state = "red" - -/area/desert_dam/interior/dam_interior/primary_tool_storage - name = "Engineering Primary Tool Storage" - icon_state = "blue" - -/area/desert_dam/interior/dam_interior/tech_storage - name = "Engineering Secure Tech Storage" - icon_state = "dark" - -/area/desert_dam/interior/dam_interior/break_room - name = "Engineering Breakroom" - icon_state = "yellow" - -/area/desert_dam/interior/dam_interior/disposals - name = "Engineering Disposals" - icon_state = "disposal" - -/area/desert_dam/interior/dam_interior/western_dam_cave - name = "Engineering West Entrance" - icon_state = "red" - minimap_color = MINIMAP_AREA_CAVES - -/area/desert_dam/interior/dam_interior/office - name = "Engineering Office" - icon_state = "red" - -/area/desert_dam/interior/dam_interior - name = "Engineering" - icon_state = "" - -/area/desert_dam/interior/east_engineering - name = "Eastern Engineering" - icon_state = "yellow" - minimap_color = MINIMAP_AREA_ENGI - -/area/desert_dam/interior/dam_interior/north_tunnel_entrance - name = "Engineering North Tunnel Entrance" - icon_state = "yellow" - minimap_color = MINIMAP_AREA_SEC - -/area/desert_dam/interior/dam_interior/east_tunnel_entrance - name = "Engineering East Tunnel Entrance" - icon_state = "yellow" - minimap_color = MINIMAP_AREA_SEC - -/area/desert_dam/interior/dam_interior/south_tunnel_entrance - name = "Engineering South Tunnel Entrance" - icon_state = "red" - minimap_color = MINIMAP_AREA_SEC - -/area/desert_dam/interior/caves - name = "Caves" - ceiling = CEILING_DEEP_UNDERGROUND - outside = FALSE - icon_state = "red" - ambience = list('sound/ambience/ambimine.ogg','sound/ambience/ambigen10.ogg','sound/ambience/ambigen12.ogg','sound/ambience/ambisin4.ogg') - minimap_color = MINIMAP_AREA_CAVES - -/area/desert_dam/interior/caves/northern_caves - name = "Northern Caves" - icon_state = "red" - -/area/desert_dam/interior/caves/east_caves - name = "Eastern Caves" - icon_state = "red" - -/area/desert_dam/interior/caves/central_caves - name = "Central Caves" - icon_state = "yellow" - -/area/desert_dam/interior/caves/central_caves/entrances/east_tunnel_entrance - name = "Eastern Central Tunnel Entrance" - icon_state = "red" - -/area/desert_dam/interior/caves/central_caves/entrances/south_tunnel_entrance - name = "Southern Central Tunnel Entrance" - icon_state = "red" - -/area/desert_dam/interior/caves/central_caves/entrances/west_tunnel_entrance - name = "Western Central Tunnel Entrance" - icon_state = "red" - -/area/desert_dam/interior/caves/temple - name = "Sand Temple" - icon_state = "green" - -//BUILDING -//areas not under rock -// ceiling = CEILING_METAL -/area/desert_dam/building - ceiling = CEILING_METAL - outside = FALSE -//Substations -/area/desert_dam/building/substation - name = "Substation" - icon = 'icons/turf/dam_areas.dmi' - minimap_color = MINIMAP_AREA_ENGI - -/area/desert_dam/building/substation/northwest - name = "Command Substation" - icon_state = "northewestern_ss" - -/area/desert_dam/building/substation/northeast - name = "Command Substation" - icon_state = "northeastern_ss" - -/area/desert_dam/building/substation/east - name = "Command Substation" - icon_state = "eastern_ss" - -/area/desert_dam/building/substation/southeast - name = "Command Substation" - icon_state = "southeastern_ss" - -/area/desert_dam/building/substation/central - name = "Command Substation" - icon_state = "central_ss" - -/area/desert_dam/building/substation/southwest - name = "Command Substation" - icon_state = "southwestern_ss" - -/area/desert_dam/building/substation/west - name = "Command Substation" - icon_state = "western_ss" - -//Administration -/area/desert_dam/building/administration - minimap_color = MINIMAP_AREA_COMMAND - -/area/desert_dam/building/administration/control_room - name = "Administration Landing Control Room" - icon_state = "yellow" - -/area/desert_dam/building/administration/lobby - name = "Administration Lobby" - icon_state = "green" - -/area/desert_dam/building/administration/hallway - name = "Administration Hallway" - icon_state = "purple" - -/area/desert_dam/building/administration/office - name = "Administration Office" - icon_state = "blue-red" - -/area/desert_dam/building/administration/overseer_office - name = "Administration Overseer's Office" - icon_state = "red" - -/area/desert_dam/building/administration/meetingrooom - name = "Administration Meeting Room" - icon_state = "yellow" - -/area/desert_dam/building/administration/archives - name = "Administration Archives" - icon_state = "green" - - -//Bar -/area/desert_dam/building/bar - minimap_color = MINIMAP_AREA_LIVING - -/area/desert_dam/building/bar/bar - name = "Bar" - icon_state = "yellow" - -/area/desert_dam/building/bar/backroom - name = "Bar Backroom" - icon_state = "green" - -/area/desert_dam/building/bar/bar_restroom - name = "Bar Restroom" - icon_state = "purple" - - -//Cafe -/area/desert_dam/building/cafeteria - minimap_color = MINIMAP_AREA_LIVING - -/area/desert_dam/building/cafeteria/cafeteria - name = "Cafeteria" - icon_state = "yellow" - -/area/desert_dam/building/cafeteria/backroom - name = "Cafeteria Backroom" - icon_state = "green" - -/area/desert_dam/building/cafeteria/restroom - name = "Cafeteria Restroom" - icon_state = "purple" - -/area/desert_dam/building/cafeteria/loading - name = "Cafeteria Loading Room" - icon_state = "blue-red" - -/area/desert_dam/building/cafeteria/cold_room - name = "Cafeteria Coldroom" - icon_state = "red" - - -//Dorms -/area/desert_dam/building/dorms - minimap_color = MINIMAP_AREA_LIVING - -/area/desert_dam/building/dorms/hallway_northwing - name = "Dormitory North Wing" - icon_state = "yellow" - -/area/desert_dam/building/dorms/hallway_westwing - name = "Dormitory West Wing" - icon_state = "green" - -/area/desert_dam/building/dorms/hallway_eastwing - name = "Dormitory East Wing" - icon_state = "purple" - -/area/desert_dam/building/dorms/restroom - name = "Dormitory Showers" - icon_state = "blue-red" - -/area/desert_dam/building/dorms/pool - name = "Dormitory Pool Room" - icon_state = "red" - - -//Medical -/area/desert_dam/building/medical - minimap_color = MINIMAP_AREA_MEDBAY - -/area/desert_dam/building/medical/garage - name = "Medical Garage" - icon_state = "garage" - -/area/desert_dam/building/medical/emergency_room - name = "Medical Emergency Room" - icon_state = "medbay" - -/area/desert_dam/building/medical/treatment_room - name = "Medical Treatment Room" - icon_state = "medbay2" - -/area/desert_dam/building/medical/lobby - name = "Medical Lobby" - icon_state = "medbay3" - -/area/desert_dam/building/medical/chemistry - name = "Medical Pharmacy" - icon_state = "medbay" - -/area/desert_dam/building/medical/west_wing_hallway - name = "Medical West Wing " - icon_state = "medbay2" - -/area/desert_dam/building/medical/north_wing_hallway - name = "Medical North Wing" - icon_state = "medbay3" - -/area/desert_dam/building/medical/east_wing_hallway - name = "Medical East Wing" - icon_state = "medbay" - -/area/desert_dam/building/medical/primary_storage - name = "Medical Primary Storage" - icon_state = "red" - -/area/desert_dam/building/medical/surgery_room_one - name = "Medical Surgery Room One" - icon_state = "yellow" - -/area/desert_dam/building/medical/surgery_room_two - name = "Medical Surgery Room Two" - icon_state = "purple" - -/area/desert_dam/building/medical/surgery_observation - name = "Medical Surgery Observation" - icon_state = "medbay2" - -/area/desert_dam/building/medical/morgue - name = "Medical Morgue" - icon_state = "blue" - -/area/desert_dam/building/medical/break_room - name = "Medical Breakroom" - icon_state = "medbay" - -/area/desert_dam/building/medical/CMO - name = "Medical CMO's Office" - icon_state = "CMO" - -/area/desert_dam/building/medical/office1 - name = "Medical Office One" - icon_state = "red" - -/area/desert_dam/building/medical/office2 - name = "Medical Office Two" - icon_state = "blue" - -/area/desert_dam/building/medical/patient_wing - name = "Medical Patient Wing" - icon_state = "medbay2" - -/area/desert_dam/building/medical/virology_wing - name = "Medical Virology Wing" - icon_state = "medbay3" - -/area/desert_dam/building/medical/virology_isolation - name = "Medical Virology Isolation" - icon_state = "medbay" - -/area/desert_dam/building/medical/medsecure - name = "Medical Virology Isolation" - icon_state = "red" - -/area/desert_dam/building/medical - name = "Medical" - icon_state = "medbay2" - - -//Warehouse -/area/desert_dam/building/warehouse - minimap_color = MINIMAP_AREA_REQ - -/area/desert_dam/building/warehouse/warehouse - name = "Warehouse" - icon_state = "yellow" - -/area/desert_dam/building/warehouse/loading - name = "Warehouse Loading Room" - icon_state = "red" - -/area/desert_dam/building/warehouse/breakroom - name = "Warehouse Breakroom" - icon_state = "green" - - - -//Hydroponics -/area/desert_dam/building/hydroponics - minimap_color = MINIMAP_AREA_LIVING - -/area/desert_dam/building/hydroponics/hydroponics - name = "Hydroponics" - icon_state = "hydro" - -/area/desert_dam/building/hydroponics/hydroponics_storage - name = "Hydroponics Storage" - icon_state = "green" - -/area/desert_dam/building/hydroponics/hydroponics_loading - name = "Hydroponics Loading Room" - icon_state = "garage" - -/area/desert_dam/building/hydroponics/hydroponics_breakroom - name = "Hydroponics Breakroom" - icon_state = "red" - - -//Telecoms -/area/desert_dam/building/telecommunication - name = "Telecommunications" - icon_state = "yellow" - minimap_color = MINIMAP_AREA_COMMAND - -//Water Treatment Plant 1 -/area/desert_dam/building/water_treatment_one - name = "Water Treatment One" - icon_state = "yellow" - minimap_color = MINIMAP_AREA_ENGI - -/area/desert_dam/building/water_treatment_one/lobby - name = "Water Treatment One Lobby" - icon_state = "red" - -/area/desert_dam/building/water_treatment_one/breakroom - name = "Water Treatment One Breakroom" - icon_state = "green" - -/area/desert_dam/building/water_treatment_one/garage - name = "Water Treatment One Garage" - icon_state = "garage" - -/area/desert_dam/building/water_treatment_one/sedimentation - name = "Water Treatment One Sedimentation" - icon_state = "blue" - -/area/desert_dam/building/water_treatment_one/equipment - name = "Water Treatment One Equipment Room" - icon_state = "red" - -/area/desert_dam/building/water_treatment_one/hallway - name = "Water Treatment One Hallway" - icon_state = "purple" - -/area/desert_dam/building/water_treatment_one/control_room - name = "Water Treatment One Control Room" - icon_state = "yellow" - -/area/desert_dam/building/water_treatment_one/purification - name = "Water Treatment One Purification" - icon_state = "green" - -/area/desert_dam/building/water_treatment_one/floodgate_control - name = "Water Treatment One Floodgate Control" - icon_state = "green" - -/area/desert_dam/building/water_treatment_one/floodgate_control/central - name = "Central Floodgate Control" - icon_state = "green" - -/area/desert_dam/building/water_treatment_one/floodgate_control/central2 - name = "Central Floodgate Control Storage" - icon_state = "green" - -//Water Treatment Plant 2 -/area/desert_dam/building/water_treatment_two - name = "Water Treatment Two" - icon_state = "yellow" - minimap_color = MINIMAP_AREA_ENGI - -/area/desert_dam/building/water_treatment_two/lobby - name = "Water Treatment Two Lobby" - icon_state = "red" - -/area/desert_dam/building/water_treatment_two/breakroom - name = "Water Treatment Two Breakroom" - icon_state = "green" - -/area/desert_dam/building/water_treatment_two/garage - name = "Water Treatment Two Garage" - icon_state = "garage" - -/area/desert_dam/building/water_treatment_two/sedimentation - name = "Water Treatment Two Sedimentation" - icon_state = "blue" - -/area/desert_dam/building/water_treatment_two/equipment - name = "Water Treatment Two Equipment" - icon_state = "red" - -/area/desert_dam/building/water_treatment_two/hallway - name = "Water Treatment Two Hallway" - icon_state = "purple" - -/area/desert_dam/building/water_treatment_two/control_room - name = "Water Treatment Two Control Room" - icon_state = "yellow" - -/area/desert_dam/building/water_treatment_two/purification - name = "Water Treatment Two Purification" - icon_state = "green" - -/area/desert_dam/building/water_treatment_two/floodgate_control - name = "Water Treatment Two Floodgate Control" - icon_state = "green" - - -//Library UNUSED -/* -/area/desert_dam/building/library/library - name = "Library" - icon_state = "library" -/area/desert_dam/building/library/restroom - name = "Library Restroom" - icon_state = "green" -/area/desert_dam/building/library/studyroom - name = "Library Study Room" - icon_state = "purple" -*/ - -//Security -/area/desert_dam/building/security - minimap_color = MINIMAP_AREA_SEC - -/area/desert_dam/building/security/prison - name = "Security Prison" - icon_state = "sec_prison" - -/area/desert_dam/building/security/marshals_office - name = "Security Marshal's Office" - icon_state = "sec_hos" - -/area/desert_dam/building/security/armory - name = "Security Armory" - icon_state = "armory" - -/area/desert_dam/building/security/warden - name = "Security Warden's Office" - icon_state = "Warden" - -/area/desert_dam/building/security/interrogation - name = "Security Interrogation" - icon_state = "interrogation" - -/area/desert_dam/building/security/backroom - name = "Security Interrogation" - icon_state = "sec_backroom" - -/area/desert_dam/building/security/observation - name = "Security Observation" - icon_state = "observatory" - -/area/desert_dam/building/security/detective - name = "Security Detective's Office" - icon_state = "detective" - -/area/desert_dam/building/security/office - name = "Security Office" - icon_state = "yellow" - -/area/desert_dam/building/security/lobby - name = "Security Lobby" - icon_state = "green" - -/area/desert_dam/building/security/northern_hallway - name = "Security North Hallway" - icon_state = "purple" - -/area/desert_dam/building/security/courtroom - name = "Security Courtroom" - icon_state = "courtroom" - -/area/desert_dam/building/security/evidence - name = "Security Evidence" - icon_state = "red" - -/area/desert_dam/building/security/holding - name = "Security Holding Room" - icon_state = "yellow" - -/area/desert_dam/building/security/southern_hallway - name = "Security South Hallway" - icon_state = "green" - -/area/desert_dam/building/security/deathrow - name = "Security Death Row" - icon_state = "cells_max_n" - -/area/desert_dam/building/security/execution_chamber - name = "Security Execution Chamber" - icon_state = "red" - -/area/desert_dam/building/security/staffroom - name = "Security Staffroom" - icon_state = "security" - -//Church -/area/desert_dam/building/church - name = "Church" - icon_state = "courtroom" - minimap_color = MINIMAP_AREA_LIVING - -//Mining area -/area/desert_dam/building/mining - minimap_color = MINIMAP_AREA_REQ - -/area/desert_dam/building/mining/workshop - name = "Mining Workshop" - icon_state = "yellow" - -/area/desert_dam/building/mining/workshop_foyer - name = "Mining Workshop Foyer" - icon_state = "purple" - -//Legacy Areas for mining - /* -/area/desert_dam/building/mining/garage - name = "Mining Garage" - icon_state = "garage" -/area/desert_dam/building/mining/boxing_room - name = "Mining Boxing Room" - icon_state = "red" -/area/desert_dam/building/mining/loading_room - name = "Mining Loading Bay" - icon_state = "yellow" -/area/desert_dam/building/mining/break_room - name = "Mining Breakroom" - icon_state = "purple" -/area/desert_dam/building/mining/locker_room - name = "Mining Locker Room" - icon_state = "green" -/area/desert_dam/building/mining/lobby - name = "Mining Lobby" - icon_state = "red" -/area/desert_dam/building/mining/front_desk - name = "Mining Front Desk" - icon_state = "green" -/area/desert_dam/building/mining/foremans_office - name = "Mining Foreman's Office" - icon_state = "yellow" -/area/desert_dam/building/mining/maintenance_north - name = "Mining Maintenance North" - icon_state = "dark160" -/area/desert_dam/building/mining/maintenance_east - name = "Mining Maintenance East" - icon_state = "dark128" -/area/desert_dam/building/mining/bunkhouse - name = "Mining Bunkhouse" - icon_state = "red" -/area/desert_dam/building/mining/construction_site - name = "Construction Site" - icon_state = "yellow" -*/ - - -//NorthWest Lab Buildings -/area/desert_dam/building/lab_northwest - minimap_color = MINIMAP_AREA_RESEARCH - -/area/desert_dam/building/lab_northwest/west_lab_robotics - name = "West Lab Robotics" - icon_state = "ass_line" - -/area/desert_dam/building/lab_northwest/west_lab_robotics_mechbay - name = "West Lab Mechbay" - icon_state = "purple" - -/area/desert_dam/building/lab_northwest/west_lab_east_hallway - name = "West Lab Hallway" - icon_state = "red" - -/area/desert_dam/building/lab_northwest/west_lab_west_hallway - name = "West Lab Hallway" - icon_state = "red" - -/area/desert_dam/building/lab_northwest/west_lab_maintenance - name = "West Lab Maintenance" - icon_state = "purple" - -/area/desert_dam/building/lab_northwest/west_lab_chemistry - name = "West Lab Chemistry" - icon_state = "yellow" - -/area/desert_dam/building/lab_northwest/west_lab_cafeteria - name = "West Lab Cafeteria" - icon_state = "blue" - -/area/desert_dam/building/lab_northwest/west_lab_kitchen - name = "West Lab Kitchen" - icon_state = "kitchen" - -/area/desert_dam/building/lab_northwest/west_lab_dormitory - name = "West Lab Dormitory" - icon_state = "red" - -/area/desert_dam/building/lab_northwest/west_lab_meeting_room - name = "West Lab Meeting Room" - icon_state = "purple" - -/area/desert_dam/building/lab_northwest/west_lab_xenoflora - name = "West Lab Xenoflora" - icon_state = "purple" - -/area/desert_dam/building/lab_northeast/checkpoint - name = "East Lab Checkpoint" - icon_state = "red" - -/area/desert_dam/building/lab_northeast/garage - name = "East Lab Garage" - icon_state = "garage" - - - -//EXTERIOR -//under open sky -/area/desert_dam/exterior - always_unpowered = TRUE - -/area/desert_dam/exterior/rock - name = "Rock" - icon_state = "cave" - -/area/desert_dam/exterior/landing - always_unpowered = FALSE - minimap_color = MINIMAP_AREA_LZ - -//Landing Pad for the Alamo. THIS IS NOT THE SHUTTLE AREA -/area/desert_dam/exterior/landing/landing_pad_one - name = "Airstrip Landing Pad" - icon_state = "landing_pad" - -/area/desert_dam/exterior/landing/landing_pad_one_external - name = "Airstrip Landing Valley" - icon_state = "landing_pad_ext" - - -//Landing Pad for the Normandy. THIS IS NOT THE SHUTTLE AREA -/area/desert_dam/exterior/landing/landing_pad_two - name = "Eastern Aerodrome Landing Pad" - icon_state = "landing_pad" - -/area/desert_dam/exterior/landing/landing_pad_two_external - name = "Eastern Landing Valley" - icon_state = "landing_pad_ext" - -//Landing Pad for the abandoned tradeship, not used for transit. THIS IS NOT THE SHUTTLE AREA -/area/desert_dam/exterior/landing/landing_pad_three - name = "Aerodrome Landing Pad" - icon_state = "landing_pad" - -/area/desert_dam/exterior/landing/landing_pad_three_external - name = "Aerodrome Landing Valley" - icon_state = "landing_pad_ext" - minimap_color = MINIMAP_AREA_COLONY - -//Valleys -//Near LZ -//TODO: incorporate valleys and substrations for floodlight coverage - -/area/desert_dam/exterior/valley - minimap_color = MINIMAP_AREA_COLONY - always_unpowered = FALSE - -/area/desert_dam/exterior/valley/valley_northwest - name = "Northwest Valley" - icon_state = "valley_north_west" - -/area/desert_dam/exterior/valley/valley_cargo - name = "Shipping Valley" - icon_state = "valley_south_west" - -/area/desert_dam/exterior/valley/valley_telecoms - name = "Telecomms Valley" - icon_state = "valley_west" - -/area/desert_dam/exterior/valley/tradeship - name = "NTT Jerry-Cabot" - icon_state = "dark160" - requires_power = FALSE - minimap_color = MINIMAP_AREA_SHIP - -//Away from LZ - -/area/desert_dam/exterior/valley/valley_labs - name = "Lab Valley" - icon_state = "valley_north" - -/area/desert_dam/exterior/valley/valley_mining - name = "Mining Valley" - icon_state = "valley_east" - -/area/desert_dam/exterior/valley/valley_civilian - name = "Civilian Valley" - icon_state = "valley_south_excv" - -/area/desert_dam/exterior/valley/valley_medical - name = "Medical Valley" - icon_state = "valley" - -/area/desert_dam/exterior/valley/valley_medical_south - name = "Southern Medical Valley" - icon_state = "valley" - -/area/desert_dam/exterior/valley/valley_hydro - name = "Hydro Valley" - icon_state = "valley" - -/area/desert_dam/exterior/valley/valley_crashsite - name = "Crash Site Valley" - icon_state = "yellow" - -/area/desert_dam/exterior/valley/north_valley_dam - name = "North Dam Valley" - icon_state = "valley" - -/area/desert_dam/exterior/valley/south_valley_dam - name = "South Dam Valley" - icon_state = "valley" - -/area/desert_dam/exterior/valley/bar_valley_dam - name = "Bar Valley" - icon_state = "yellow" - -/area/desert_dam/exterior/valley/valley_wilderness - name = "Wilderness Valley" - icon_state = "central" - - -//End of the river areas, no Next -/area/desert_dam/exterior/river/riverside_northwest - name = "Northwestern Riverbed" - icon_state = "bluenew" - -/area/desert_dam/exterior/river/riverside_central_north - name = "Northern Central Riverbed" - icon_state = "purple" - -/area/desert_dam/exterior/river/riverside_central_south - name = "Southern Central Riverbed" - icon_state = "purple" - -/area/desert_dam/exterior/river/riverside_south - name = "Southern Riverbed" - icon_state = "bluenew" - -/area/desert_dam/exterior/river/riverside_east - name = "Eastern Riverbed" - icon_state = "bluenew" - -/area/desert_dam/exterior/river/riverside_northeast - name = "Northeastern Riverbed" - icon_state = "bluenew" - -//The filtration plants - This area isn't for the WHOLE plant, but the areas that have water in them, so the water changes color as well. -/area/desert_dam/exterior/river/filtration_a - name = "Filtration Plant A" - -/area/desert_dam/exterior/river/filtration_b - name = "Filtration Plant B" - -//Areas that are rivers, but will not change because they're before the floodgates -/area/desert_dam/exterior/river_mouth/southern - name = "Southern River Mouth" - icon_state = "purple" - -/area/desert_dam/exterior/river_mouth/eastern - name = "Eastern River Mouth" - icon_state = "purple" - -/area/desert_dam/landing/console - name = "LZ1 'Admin'" - icon_state = "tcomsatcham" - requires_power = 0 - flags_area = NO_DROPPOD - -/area/desert_dam/landing/console2 - name = "LZ2 'Supply'" - icon_state = "tcomsatcham" - requires_power = 0 - flags_area = NO_DROPPOD - -//Transit Shuttle -/area/shuttle/tri_trans1/alpha - icon_state = "shuttle" - -/area/shuttle/tri_trans1/away - icon_state = "away1" - - -/area/shuttle/tri_trans2/alpha - icon_state = "shuttlered" - -/area/shuttle/tri_trans2/away - icon_state = "away2" - -/area/shuttle/tri_trans2/omega - icon_state = "shuttle2" - diff --git a/code/game/area/oscaroutpost.dm b/code/game/area/oscaroutpost.dm index f787ea86a81..2dbf1189c15 100644 --- a/code/game/area/oscaroutpost.dm +++ b/code/game/area/oscaroutpost.dm @@ -84,6 +84,7 @@ name = "Oscar Outpost Fairgrounds" icon_state = "green" ceiling = CEILING_NONE + requires_power = FALSE /area/oscar_outpost/village/abandonedbase name = "Oscar Outpost Base Zeta" diff --git a/code/game/objects/explosion_recursive.dm b/code/game/objects/explosion_recursive.dm index 5e056ca8df9..68a657093fd 100644 --- a/code/game/objects/explosion_recursive.dm +++ b/code/game/objects/explosion_recursive.dm @@ -132,7 +132,7 @@ explosion resistance exactly as much as their health switch(angle) //this reduces power when the explosion is going around corners if (0) - //no change + EMPTY_BLOCK_GUARD //no change if (45) if(spread_power >= 0) spread_power *= 0.75 diff --git a/code/game/objects/items/embedding.dm b/code/game/objects/items/embedding.dm index cae967a1ed5..a4ed6eaeac3 100644 --- a/code/game/objects/items/embedding.dm +++ b/code/game/objects/items/embedding.dm @@ -107,12 +107,12 @@ return //People can safely move inside a vehicle or on a roller bed/chair. var/embedded_thing = carrier.embedded_objects[src] if(embedded_thing == carrier) - //carbon stuff - else if(istype(embedded_thing, /datum/limb)) - var/datum/limb/limb_loc = embedded_thing - limb_loc.process_embedded(src) - else + return + if(!istype(embedded_thing, /datum/limb)) CRASH("[src] called embedded_on_carrier_move for [carrier] with mismatching embedded_object: [.]") + var/datum/limb/limb_loc = embedded_thing + limb_loc.process_embedded(src) + /obj/item/proc/embedded_on_limb_destruction(datum/limb/source) diff --git a/code/game/objects/machinery/computer/medical.dm b/code/game/objects/machinery/computer/medical.dm index 78e6f3fa59f..33b85760b5e 100644 --- a/code/game/objects/machinery/computer/medical.dm +++ b/code/game/objects/machinery/computer/medical.dm @@ -114,8 +114,6 @@ dat += "
None detected
" else dat += "
[bdat]" - - else else dat += "{Log In}" @@ -362,8 +360,6 @@ for(var/datum/data/record/E in GLOB.datacore.medical) if ((E.fields["name"] == R.fields["name"] || E.fields["id"] == R.fields["id"])) M = E - else - //Foreach continue //goto(2540) src.active1 = R src.active2 = M src.screen = 4 @@ -415,16 +411,12 @@ for(var/datum/data/record/R in GLOB.datacore.medical) if ((lowertext(R.fields["name"]) == t1 || t1 == lowertext(R.fields["id"]) || t1 == lowertext(R.fields["b_dna"]))) src.active2 = R - else - //Foreach continue //goto(3229) if (!( src.active2 )) src.temp = "Could not locate record [t1]." else for(var/datum/data/record/E in GLOB.datacore.general) if ((E.fields["name"] == src.active2.fields["name"] || E.fields["id"] == src.active2.fields["id"])) src.active1 = E - else - //Foreach continue //goto(3334) src.screen = 4 if (href_list["print_p"]) diff --git a/code/game/objects/machinery/computer/security.dm b/code/game/objects/machinery/computer/security.dm index 23c37647667..a03e5b449cd 100644 --- a/code/game/objects/machinery/computer/security.dm +++ b/code/game/objects/machinery/computer/security.dm @@ -193,7 +193,6 @@ dat += "[crimstat]" dat += "
" dat += "
Return to index." - else else dat += "{Log In}" @@ -527,7 +526,6 @@ What a mess.*/ if ((R.fields["name"] == active1.fields["name"] || R.fields["id"] == active1.fields["id"])) GLOB.datacore.medical -= R qdel(R) - else qdel(active1) active1 = null if (active2) diff --git a/code/game/objects/machinery/computer/skills.dm b/code/game/objects/machinery/computer/skills.dm index 54cc570ee14..521ce18d6ce 100644 --- a/code/game/objects/machinery/computer/skills.dm +++ b/code/game/objects/machinery/computer/skills.dm @@ -127,7 +127,6 @@ dat += "[crimstat]" dat += "
" dat += "
Return to index." - else else dat += "{Log In}" diff --git a/code/game/objects/machinery/sleeper.dm b/code/game/objects/machinery/sleeper.dm index 76016199b53..1357b19b509 100644 --- a/code/game/objects/machinery/sleeper.dm +++ b/code/game/objects/machinery/sleeper.dm @@ -374,7 +374,6 @@ t1 = "Unconscious" if(2) t1 = "*dead*" - else var/health_ratio = occupant.health * 100 / occupant.maxHealth to_chat(user, "[health_ratio > 50 ? " " : " "]\t Health %: [health_ratio] ([t1])") to_chat(user, "[occupant.bodytemperature > 50 ? "" : ""]\t -Core Temperature: [occupant.bodytemperature-T0C]°C ([occupant.bodytemperature*1.8-459.67]°F)
") diff --git a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm index 461263a1d6f..a32af3221ef 100644 --- a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm @@ -38,8 +38,6 @@ new /obj/item/clothing/mask/gas(src) new /obj/item/clothing/mask/gas(src) new /obj/item/storage/firstaid/o2(src) - if ("nothing") - // doot // teehee - Ah, tg coders... if ("delete") diff --git a/code/game/objects/structures/orbital_cannon.dm b/code/game/objects/structures/orbital_cannon.dm index 8487f9a25ee..e1197c3b654 100644 --- a/code/game/objects/structures/orbital_cannon.dm +++ b/code/game/objects/structures/orbital_cannon.dm @@ -42,6 +42,9 @@ if(tray) tray.linked_ob = null tray = null + if(GLOB.marine_main_ship.orbital_cannon == src) + GLOB.marine_main_ship.orbital_cannon = null + QDEL_NULL(tray) return ..() /obj/structure/orbital_cannon/update_icon_state() @@ -580,6 +583,12 @@ rail_gun_ammo.max_ammo_count = 8000 //200 uses or 15 full minutes of firing. rail_gun_ammo.ammo_count = 8000 +/obj/structure/ship_rail_gun/Destroy() + if(GLOB.marine_main_ship.rail_gun == src) + GLOB.marine_main_ship.rail_gun = null + QDEL_NULL(rail_gun_ammo) + return ..() + /obj/structure/ship_rail_gun/proc/fire_rail_gun(turf/T, mob/user, ignore_cooldown = FALSE, ai_operation = FALSE) if(cannon_busy && !ignore_cooldown) return diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index c6b65a3d1dd..ba783d10d62 100644 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -140,7 +140,7 @@ if(COMPONENT_MOVABLE_PREBUMP_STOPPED) return FALSE //No need for a bump, already procesed. if(COMPONENT_MOVABLE_PREBUMP_PLOWED) - //Continue. We've plowed through the obstacle. + EMPTY_BLOCK_GUARD else mover.Bump(src) return FALSE diff --git a/code/modules/admin/verbs/podlauncher.dm b/code/modules/admin/verbs/podlauncher.dm deleted file mode 100644 index 2da1220b5be..00000000000 --- a/code/modules/admin/verbs/podlauncher.dm +++ /dev/null @@ -1,690 +0,0 @@ -/datum/admins/proc/launch_pod() - set category = "Admin.Fun" - set name = "Launch Supply Pod" - - if(!check_rights(R_FUN)) - return - - var/datum/podlauncher/P = new(usr) - if(!P.bay || !P.podarea) - return - - to_chat(world, "verb") - - P.ui_interact(usr) - - to_chat(world, "post ui_interact") - -/datum/podlauncher - interaction_flags = INTERACT_UI_INTERACT - var/static/list/ignored_atoms = typecacheof(list(null, /mob/dead, /obj/effect/landmark, /obj/docking_port, /obj/effect/particle_effect/sparks, /obj/effect/DPtarget, /obj/effect/supplypod_selector)) - var/turf/oldTurf - var/client/holder - var/area/bay - var/area/podarea - var/launchClone = FALSE - var/launchChoice = 1 - var/explosionChoice = 0 - var/damageChoice = 0 - var/launcherActivated = FALSE - var/effectBurst = FALSE - var/effectAnnounce = FALSE - var/numTurfs = 0 - var/launchCounter = 1 - var/atom/specificTarget - var/list/orderedArea - var/list/turf/acceptableTurfs - var/list/launchList - var/obj/effect/supplypod_selector/selector - var/obj/structure/closet/supplypod/centcompod/temp_pod - - -/datum/podlauncher/New(user) - if(istype(user, /client)) - var/client/C = user - holder = C - else if(ismob(user)) - var/mob/M = user - holder = M.client - bay = locate(/area/centcom/supplypod/loading/one) in GLOB.sorted_areas - podarea = locate(/area/centcom/supplypod/podStorage) in GLOB.sorted_areas - createPod(podarea) - selector = new() - launchList = list() - acceptableTurfs = list() - orderedArea = createOrderedArea(bay) - - to_chat(world, "new") - -/datum/podlauncher/Destroy() - updateCursor(FALSE) - QDEL_NULL(temp_pod) - QDEL_NULL(selector) - to_chat(world, "destroy") - return ..() - - -/datum/podlauncher/can_interact(mob/user) - return TRUE - -/datum/podlauncher/ui_interact(mob/user, datum/tgui/ui) - ui = SStgui.try_update_ui(user, src, ui) - - to_chat(world, "ui_interact called") - - if(!ui) - ui = new(user, src, "PodLauncher", "podlauncher") - ui.open() - -/datum/podlauncher/ui_data(mob/user) - if(!temp_pod) - to_chat(user, span_warning("Pod has been deleted, closing the menu.")) - SStgui.close_user_uis(user, src) - return - var/list/data = list() - var/B = (istype(bay, /area/centcom/supplypod/loading/one)) ? 1 : (istype(bay, /area/centcom/supplypod/loading/two)) ? 2 : (istype(bay, /area/centcom/supplypod/loading/three)) ? 3 : (istype(bay, /area/centcom/supplypod/loading/four)) ? 4 : (istype(bay, /area/centcom/supplypod/loading/ert)) ? 5 : 0 - data["bay"] = bay - data["bayNumber"] = B - data["oldArea"] = (oldTurf ? get_area(oldTurf) : null) - data["launchClone"] = launchClone - data["launchChoice"] = launchChoice - data["explosionChoice"] = explosionChoice - data["damageChoice"] = damageChoice - data["fallDuration"] = temp_pod.fallDuration - data["landingDelay"] = temp_pod.landingDelay - data["openingDelay"] = temp_pod.openingDelay - data["departureDelay"] = temp_pod.departureDelay - data["styleChoice"] = temp_pod.style - data["effectStun"] = temp_pod.effectStun - data["effectLimb"] = temp_pod.effectLimb - data["effectBluespace"] = temp_pod.bluespace - data["effectStealth"] = temp_pod.effectStealth - data["effectQuiet"] = temp_pod.effectQuiet - data["effectMissile"] = temp_pod.effectMissile - data["effectCircle"] = temp_pod.effectCircle - data["effectBurst"] = effectBurst - data["effectReverse"] = temp_pod.reversing - data["effectTarget"] = specificTarget - data["effectName"] = temp_pod.adminNamed - data["effectAnnounce"] = effectAnnounce - data["giveLauncher"] = launcherActivated - data["numObjects"] = numTurfs - data["fallingSound"] = temp_pod.fallingSound != initial(temp_pod.fallingSound) - data["landingSound"] = temp_pod.landingSound - data["openingSound"] = temp_pod.openingSound - data["leavingSound"] = temp_pod.leavingSound - data["soundVolume"] = temp_pod.soundVolume != initial(temp_pod.soundVolume) - - return data - -/datum/podlauncher/ui_act(action, list/params) - . = ..() - if(.) - return - - switch(action) - if("bay") - switch(text2num(params["bay"])) - if(1) - bay = locate(/area/centcom/supplypod/loading/one) in GLOB.sorted_areas - if(2) - bay = locate(/area/centcom/supplypod/loading/two) in GLOB.sorted_areas - if(3) - bay = locate(/area/centcom/supplypod/loading/three) in GLOB.sorted_areas - if(4) - bay = locate(/area/centcom/supplypod/loading/four) in GLOB.sorted_areas - if(5) - bay = locate(/area/centcom/supplypod/loading/ert) in GLOB.sorted_areas - refreshBay() - . = TRUE - - if("teleportCentcom") - var/mob/M = holder.mob - oldTurf = get_turf(M) - var/area/A = locate(bay) in GLOB.sorted_areas - var/list/turfs = list() - for(var/turf/T in A) - turfs.Add(T) - var/turf/T = SAFEPICK(turfs) - if(!T) - to_chat(M, span_warning("Nowhere to jump to!")) - return - M.forceMove(T) - log_admin("[key_name(usr)] jumped to [AREACOORD(A)]") - message_admins("[key_name_admin(usr)] jumped to [AREACOORD(A)]") - . = TRUE - - if("teleportBack") - var/mob/M = holder.mob - if(!oldTurf) - to_chat(M, span_warning("Nowhere to jump to!")) - return - M.forceMove(oldTurf) - log_admin("[key_name(usr)] jumped to [AREACOORD(oldTurf)]") - message_admins("[key_name_admin(usr)] jumped to [AREACOORD(oldTurf)]") - . = TRUE - - if("launchClone") - launchClone = !launchClone - . = TRUE - - if("launchOrdered") - if(launchChoice == 1) - launchChoice = 0 - updateSelector() - . = TRUE - return - launchChoice = 1 - updateSelector() - . = TRUE - - if("launchRandom") - if(launchChoice == 2) - launchChoice = 0 - updateSelector() - . = TRUE - return - launchChoice = 2 - updateSelector() - . = TRUE - - if("explosionCustom") - if(explosionChoice == 1) - explosionChoice = 0 - temp_pod.explosion_power = 0 - temp_pod.explosion_falloff = 0 - . = TRUE - return - - explosionChoice = 1 - var/input_severity = tgui_input_number(usr, "Explosion Severity:", "Drop Bomb", 500, EXPLOSION_MAX_POWER, 1) - if(isnull(input_severity)) - return - var/input_falloff = tgui_input_number(usr, "Explosion Falloff:", "Drop Bomb", 50, EXPLOSION_MAX_POWER, 1) - if(isnull(input_falloff)) - return - temp_pod.explosion_power = power_input - temp_pod.explosion_falloff = falloff_input - . = TRUE - - if("explosionBus") - if(explosionChoice == 2) - explosionChoice = 0 - . = TRUE - return - explosionChoice = 2 - temp_pod.explosion_power = 1500 - temp_pod.explosion_falloff = 30 - . = TRUE - - if("damageCustom") - if(damageChoice == 1) - damageChoice = 0 - temp_pod.damage = 0 - . = TRUE - return - var/damageInput = input("How much damage to deal", "Enter the amount of brute damage dealt by getting hit", 0) as null|num - if(isnull(damageInput)) - return - if(!isnum(damageInput)) - to_chat(holder, span_warning("That wasn't a number! Value set to default (zero) instead.")) - damageInput = 0 - damageChoice = 1 - temp_pod.damage = damageInput - . = TRUE - - if("damageGib") - if(damageChoice == 2) - damageChoice = 0 - temp_pod.damage = 0 - temp_pod.effectGib = FALSE - . = TRUE - return - damageChoice = 2 - temp_pod.damage = 5000 - temp_pod.effectGib = TRUE - . = TRUE - - if("effectName") - if(temp_pod.adminNamed) - temp_pod.adminNamed = FALSE - temp_pod.setStyle(temp_pod.style) - . = TRUE - return - var/nameInput= input("Custom name", "Enter a custom name", GLOB.pod_styles[temp_pod.style][POD_NAME]) as null|text - if(isnull(nameInput)) - return - var/descInput = input("Custom description", "Enter a custom desc", GLOB.pod_styles[temp_pod.style][POD_DESC]) as null|text - if(isnull(descInput)) - return - temp_pod.name = nameInput - temp_pod.desc = descInput - temp_pod.adminNamed = TRUE - . = TRUE - - if("effectStun") - temp_pod.effectStun = !temp_pod.effectStun - . = TRUE - - if("effectLimb") - temp_pod.effectLimb = !temp_pod.effectLimb - . = TRUE - - if("effectBluespace") - temp_pod.bluespace = !temp_pod.bluespace - . = TRUE - - if("effectStealth") - temp_pod.effectStealth = !temp_pod.effectStealth - . = TRUE - - if("effectQuiet") - temp_pod.effectQuiet = !temp_pod.effectQuiet - . = TRUE - - if("effectMissile") - temp_pod.effectMissile = !temp_pod.effectMissile - . = TRUE - - if("effectCircle") - temp_pod.effectCircle = !temp_pod.effectCircle - . = TRUE - - if("effectBurst") - effectBurst = !effectBurst - . = TRUE - - if("effectAnnounce") - effectAnnounce = !effectAnnounce - . = TRUE - - if("effectReverse") - temp_pod.reversing = !temp_pod.reversing - . = TRUE - - if("effectTarget") - if(specificTarget) - specificTarget = null - . = TRUE - return - var/list/mobs = sortmobs() - var/inputTarget = input("Select a mob!", "Target", null, null) as null|anything in mobs - if(isnull(inputTarget)) - return - var/mob/target = mobs[inputTarget] - specificTarget = target - . = TRUE - - if("fallDuration") - if(temp_pod.fallDuration != initial(temp_pod.fallDuration)) - temp_pod.fallDuration = initial(temp_pod.fallDuration) - . = TRUE - return - var/timeInput = input("Enter the duration of the pod's falling animation, in seconds", "Delay Time", initial(temp_pod.fallDuration) * 0.1) as null|num - if(isnull(timeInput)) - return - if(!isnum(timeInput)) - to_chat(holder, span_warning("That wasn't a number! Value set to default [initial(temp_pod.fallDuration) * 0.1] instead.")) - timeInput = initial(temp_pod.fallDuration) - temp_pod.fallDuration = 10 * timeInput - . = TRUE - - if("landingDelay") - if(temp_pod.landingDelay != initial(temp_pod.landingDelay)) - temp_pod.landingDelay = initial(temp_pod.landingDelay) - . = TRUE - return - var/timeInput = input("Enter the time it takes for the pod to land, in seconds", "Delay Time", initial(temp_pod.landingDelay) * 0.1) as null|num - if(isnull(timeInput)) - return - if(!isnum(timeInput)) - to_chat(holder, span_warning("That wasnt a number! Value set to default [initial(temp_pod.landingDelay) * 0.1] instead.")) - timeInput = initial(temp_pod.landingDelay) - temp_pod.landingDelay = 10 * timeInput - . = TRUE - - if("openingDelay") - if(temp_pod.openingDelay != initial(temp_pod.openingDelay)) - temp_pod.openingDelay = initial(temp_pod.openingDelay) - . = TRUE - return - var/timeInput = input("Enter the time it takes for the pod to open after landing, in seconds", "Delay Time", initial(temp_pod.openingDelay) * 0.1) as null|num - if(isnull(timeInput)) - return - if(!isnum(timeInput)) - to_chat(holder, span_warning("That wasnt a number! Value set to default [initial(temp_pod.openingDelay) * 0.1] instead.")) - timeInput = initial(temp_pod.openingDelay) - temp_pod.openingDelay = 10 * timeInput - . = TRUE - - if("departureDelay") - if(temp_pod.departureDelay != initial(temp_pod.departureDelay)) - temp_pod.departureDelay = initial(temp_pod.departureDelay) - . = TRUE - return - var/timeInput = input("Enter the time it takes for the pod to leave after opening, in seconds", "Delay Time", initial(temp_pod.departureDelay) * 0.1) as null|num - if(isnull(timeInput)) - return - if(!isnum(timeInput)) - to_chat(holder, span_warning("That wasnt a number! Value set to default [initial(temp_pod.departureDelay) * 0.1] instead.")) - timeInput = initial(temp_pod.departureDelay) - temp_pod.departureDelay = 10 * timeInput - . = TRUE - - if("fallingSound") - if((temp_pod.fallingSound) != initial(temp_pod.fallingSound)) - temp_pod.fallingSound = initial(temp_pod.fallingSound) - temp_pod.fallingSoundLength = initial(temp_pod.fallingSoundLength) - . = TRUE - return - var/soundInput = input(holder, "Please pick a sound file to play when the pod lands.", "Pick a Sound File") as null|sound - if(isnull(soundInput)) - return - var/timeInput = input(holder, "What is the exact length of the sound file, in seconds?", "Pick a Sound File", 0.3) as null|num - if(isnull(timeInput)) - return - if(!isnum(timeInput)) - to_chat(holder, span_warning("That wasnt a number! Value set to default [initial(temp_pod.fallingSoundLength) * 0.1] instead.")) - temp_pod.fallingSound = soundInput - temp_pod.fallingSoundLength = 10 * timeInput - . = TRUE - - if("landingSound") - if(!isnull(temp_pod.landingSound)) - temp_pod.landingSound = null - . = TRUE - return - var/soundInput = input(holder, "Please pick a sound file to play when the pod lands! I reccomend a nice \"oh shit, i'm sorry\", incase you hit someone with the pod.", "Pick a Sound File") as null|sound - if(isnull(soundInput)) - return - temp_pod.landingSound = soundInput - . = TRUE - - if("openingSound") - if(!isnull(temp_pod.openingSound)) - temp_pod.openingSound = null - . = TRUE - return - var/soundInput = input(holder, "Please pick a sound file to play when the pod opens! I reccomend a stock sound effect of kids cheering at a party, incase your pod is full of fun exciting stuff!", "Pick a Sound File") as null|sound - if(isnull(soundInput)) - return - temp_pod.openingSound = soundInput - . = TRUE - - if("leavingSound") - if(!isnull(temp_pod.leavingSound)) - temp_pod.leavingSound = null - . = TRUE - return - var/soundInput = input(holder, "Please pick a sound file to play when the pod leaves! I reccomend a nice slide whistle sound, especially if you're using the reverse pod effect.", "Pick a Sound File") as null|sound - if(isnull(soundInput)) - return - temp_pod.leavingSound = soundInput - . = TRUE - - if("soundVolume") - if(temp_pod.soundVolume != initial(temp_pod.soundVolume)) - temp_pod.soundVolume = initial(temp_pod.soundVolume) - . = TRUE - return - var/soundInput = input(holder, "Please pick a volume level between 1 and 100.", "Pick Admin Sound Volume") as null|num - if(isnull(soundInput)) - return - temp_pod.soundVolume = soundInput - . = TRUE - - if("styleStandard") - temp_pod.setStyle(STYLE_STANDARD) - . = TRUE - - if("styleBluespace") - temp_pod.setStyle(STYLE_BLUESPACE) - . = TRUE - - if("styleSyndie") - temp_pod.setStyle(STYLE_SYNDICATE) - . = TRUE - - if("styleBlue") - temp_pod.setStyle(STYLE_BLUE) - . = TRUE - - if("styleCult") - temp_pod.setStyle(STYLE_CULT) - . = TRUE - - if("styleMissile") - temp_pod.setStyle(STYLE_MISSILE) - . = TRUE - - if("styleSMissile") - temp_pod.setStyle(STYLE_RED_MISSILE) - . = TRUE - - if("styleBox") - temp_pod.setStyle(STYLE_BOX) - . = TRUE - - if("styleHONK") - temp_pod.setStyle(STYLE_HONK) - . = TRUE - - - if("styleFruit") - temp_pod.setStyle(STYLE_FRUIT) - . = TRUE - - if("styleInvisible") - temp_pod.setStyle(STYLE_INVISIBLE) - . = TRUE - - if("styleGondola") - temp_pod.setStyle(STYLE_GONDOLA) - . = TRUE - - if("styleSeeThrough") - temp_pod.setStyle(STYLE_SEETHROUGH) - . = TRUE - - if("refresh") - refreshBay() - . = TRUE - - if("giveLauncher") - launcherActivated = !launcherActivated - updateCursor(launcherActivated) - . = TRUE - - if("clearBay") - if(alert(usr, "This will delete all objs and mobs in [bay]. Are you sure?", "Confirmation", "Yes", "No") != "Yes") - return - - clearBay() - refreshBay() - . = TRUE - -/datum/podlauncher/on_unset_interaction() - qdel(src) - - -/datum/podlauncher/proc/updateCursor(launching) - if(holder) - if(launching) - holder.mouse_up_icon = 'icons/effects/supplypod_target.dmi' - holder.mouse_down_icon = 'icons/effects/supplypod_down_target.dmi' - holder.mouse_pointer_icon = holder.mouse_up_icon - holder.click_intercept = src - else - holder.mouse_up_icon = null - holder.mouse_down_icon = null - holder.click_intercept = null - holder.mouse_pointer_icon = initial(holder.mouse_pointer_icon) - - -/datum/podlauncher/InterceptClickOn(user, params, atom/target) - if(!temp_pod) - updateCursor(FALSE) - return FALSE - - var/list/pa = params2list(params) - var/left_click = pa.Find("left") - if(launcherActivated) - if(istype(target,/atom/movable/screen)) - return FALSE - - . = TRUE - - if(left_click) - preLaunch() - if(!isnull(specificTarget)) - target = get_turf(specificTarget) - else if(target) - target = get_turf(target) - else - return - //if(effectAnnounce) - // deadchat_broadcast(span_deadsay("A special package is being launched at the station!"), turf_target = target) - var/list/targets = list() - for(var/mob/living/M in viewers(0, target)) - targets.Add(M) - supplypod_log(targets, target) - if(!effectBurst) - launch(target) - else - for(var/i in 1 to 5) - if(isnull(target)) - break - preLaunch() - var/LZ = locate(target.x + rand(-1, 1), target.y + rand(-1, 1), target.z) - if(LZ) - launch(LZ) - else - launch(target) - sleep(rand() * 2) - - -/datum/podlauncher/proc/refreshBay() - orderedArea = createOrderedArea(bay) - preLaunch() - - -/datum/podlauncher/proc/createPod(area/A) - if(isnull(A)) - to_chat(holder.mob, span_warning("No /area/centcom/supplypod/podStorage in the world! You can make one yourself if necessary.")) - return - - temp_pod = new(A) - - -/datum/podlauncher/proc/createOrderedArea(area/A) - if(isnull(A)) - to_chat(holder.mob, span_warning("No /area/centcom/supplypod/loading/ in the world! You can make one yourself if necessary.")) - return - - orderedArea = list() - if(!isemptylist(A.contents)) - var/startX = A.contents[1].x - var/endX = A.contents[1].x - var/startY = A.contents[1].y - var/endY = A.contents[1].y - for(var/turf/T in A) - if(T.x < startX) - startX = T.x - else if(T.x > endX) - endX = T.x - else if(T.y > startY) - startY = T.y - else if(T.y < endY) - endY = T.y - for(var/i in endY to startY) - for(var/j in startX to endX) - orderedArea.Add(locate(j, startY - (i - endY), 1)) - return orderedArea - - -/datum/podlauncher/proc/preLaunch() - numTurfs = 0 - acceptableTurfs = list() - for(var/turf/T in orderedArea) - if(length(typecache_filter_list_reverse(T.contents, ignored_atoms))) - acceptableTurfs.Add(T) - numTurfs ++ - - launchList = list() - if(!isemptylist(acceptableTurfs) && !temp_pod.reversing && !temp_pod.effectMissile) - switch(launchChoice) - if(0) - for(var/turf/T in acceptableTurfs) - launchList |= typecache_filter_list_reverse(T.contents, ignored_atoms) - if(1) - if(launchCounter > length(acceptableTurfs)) - launchCounter = 1 - for(var/atom/movable/O in acceptableTurfs[launchCounter].contents) - launchList |= typecache_filter_list_reverse(acceptableTurfs[launchCounter].contents, ignored_atoms) - if(2) - var/turf/acceptable_turf = pick_n_take(acceptableTurfs) - launchList |= typecache_filter_list_reverse(acceptable_turf.contents, ignored_atoms) - updateSelector() - - -/datum/podlauncher/proc/launch(turf/A) - if(isnull(A)) - return - var/obj/structure/closet/supplypod/centcompod/toLaunch = DuplicateObject(temp_pod, temp_pod.loc) - toLaunch.bay = bay - toLaunch.update_icon() - var/shippingLane = GLOB.areas_by_type[/area/centcom/supplypod/flyMeToTheMoon] - toLaunch.forceMove(shippingLane) - if(launchClone) - for(var/atom/movable/O in launchList) - DuplicateObject(O, toLaunch) - new /obj/effect/DPtarget(A, toLaunch) - else - for(var/atom/movable/O in launchList) - O.forceMove(toLaunch) - new /obj/effect/DPtarget(A, toLaunch) - if(launchClone) - launchCounter++ - - -/datum/podlauncher/proc/updateSelector() - if(launchChoice == 1 && !isemptylist(acceptableTurfs) && !temp_pod.reversing && !temp_pod.effectMissile) - var/index = launchCounter + 1 - if(index > length(acceptableTurfs)) - index = 1 - selector.forceMove(acceptableTurfs[index]) - else - selector.moveToNullspace() - - -/datum/podlauncher/proc/clearBay() - for(var/obj/O in bay.GetAllContents()) - qdel(O) - for(var/mob/M in bay.GetAllContents()) - qdel(M) - - -/datum/podlauncher/proc/supplypod_log(list/targets, atom/target) - var/podString = effectBurst ? "5 pods" : "a pod" - var/whomString = "" - for(var/i in targets) - var/mob/M = i - whomString += "[key_name(M)], " - - var/delayString = temp_pod.landingDelay == initial(temp_pod.landingDelay) ? "" : " Delay=[temp_pod.landingDelay*0.1]s" - var/damageString = temp_pod.damage == 0 ? "" : " Dmg=[temp_pod.damage]" - var/explosionString = "" - var/playerString = specificTarget ? "Target=[ADMIN_TPMONTY(specificTarget)]" : "" - var/explosion_sum = temp_pod.explosionSize[1] + temp_pod.explosionSize[2] + temp_pod.explosionSize[3] + temp_pod.explosionSize[4] - var/areaString = "[ADMIN_VERBOSEJMP(target)]" - if(explosion_sum != 0) - explosionString = " Boom=|" - for(var/X in temp_pod.explosionSize) - explosionString += "[X]|" - - var/msg = "launched [podString][whomString][delayString][damageString][explosionString][playerString][areaString]." - log_admin("[key_name(usr)] [msg]") - message_admins("[ADMIN_TPMONTY(usr)] [msg]") - for(var/i in targets) - var/mob/M = i - admin_ticket_log(M, "[key_name_admin(usr)] [msg]") diff --git a/code/modules/atmospherics/machinery/datum_pipeline.dm b/code/modules/atmospherics/machinery/datum_pipeline.dm index dd220080537..f780e97b243 100644 --- a/code/modules/atmospherics/machinery/datum_pipeline.dm +++ b/code/modules/atmospherics/machinery/datum_pipeline.dm @@ -35,12 +35,7 @@ if(!members.Find(item)) if(item.parent) - var/static/pipenetwarnings = 10 - if(pipenetwarnings > 0) - warning("build_pipeline(): [item.type] added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) around [AREACOORD(item)]") - pipenetwarnings-- - if(pipenetwarnings == 0) - warning("build_pipeline(): further messages about pipenets will be suppressed") + log_mapping("build_pipeline(): [item.type] added to pipenet multiple times. (pipes leading to the same spot stacking in one turf). Target:[AREACOORD(item)], Base:[AREACOORD(base)]") members += item RegisterSignal(item, COMSIG_QDELETING, PROC_REF(clean_members)) possible_expansions += item diff --git a/code/modules/logging/log_holder.dm b/code/modules/logging/log_holder.dm index 36c7ff8e99a..6c9e24c755e 100644 --- a/code/modules/logging/log_holder.dm +++ b/code/modules/logging/log_holder.dm @@ -309,7 +309,7 @@ GENERAL_PROTECT_DATUM(/datum/log_holder) var/datum/data = data_list[key] if(isnull(data)) - // do nothing - nulls are allowed + EMPTY_BLOCK_GUARD // todo this is probably a bad way to do it else if(islist(data)) data = recursive_jsonify(data, semvers) diff --git a/code/modules/mapping/merge_conflicts.dm b/code/modules/mapping/merge_conflicts.dm new file mode 100644 index 00000000000..786fed9a2e9 --- /dev/null +++ b/code/modules/mapping/merge_conflicts.dm @@ -0,0 +1,18 @@ +// Used by mapmerge2 to denote the existence of a merge conflict (or when it has to complete a "best intent" merge where it dumps the movable contents of an old key and a new key on the same tile). +// We define it explicitly here to ensure that it shows up on the highest possible plane (while giving off a verbose icon) to aide mappers in resolving these conflicts. +// DO NOT USE THIS IN NORMAL MAPPING!!! Linters WILL fail. + +/obj/merge_conflict_marker + name = "Merge Conflict Marker - DO NOT USE" + icon = 'icons/effects/mapping_helpers.dmi' + icon_state = "merge_conflict_marker" + desc = "If you are seeing this in-game: someone REALLY, REALLY, REALLY fucked up. They physically mapped in a fucking Merge Conflict Marker. What the shit." + plane = SPLASHSCREEN_PLANE + +///We REALLY do not want un-addressed merge conflicts in maps for an inexhaustible list of reasons. This should help ensure that this will not be missed in case linters fail to catch it for any reason what-so-ever. +/obj/merge_conflict_marker/Initialize(mapload) + . = ..() + var/msg = "HEY, LISTEN!!! Merge Conflict Marker detected at [AREACOORD(src)]! Please manually address all potential merge conflicts!!!" + log_mapping(msg) + to_chat(world, span_boldannounce("[msg]")) + warning(msg) diff --git a/code/modules/mapping/ruins.dm b/code/modules/mapping/ruins.dm deleted file mode 100644 index 8ef88f5b09e..00000000000 --- a/code/modules/mapping/ruins.dm +++ /dev/null @@ -1,135 +0,0 @@ -/datum/map_template/ruin/proc/try_to_place(z,allowed_areas) - var/sanity = PLACEMENT_TRIES - while(sanity > 0) - sanity-- - var/width_border = TRANSITIONEDGE + SPACERUIN_MAP_EDGE_PAD + round(width * 0.5) - var/height_border = TRANSITIONEDGE + SPACERUIN_MAP_EDGE_PAD + round(height * 0.5) - var/turf/central_turf = locate(rand(width_border, world.maxx - width_border), rand(height_border, world.maxy - height_border), z) - var/valid = TRUE - - for(var/turf/check in get_affected_turfs(central_turf,1)) - var/area/new_area = get_area(check) - if(!(istype(new_area, allowed_areas)) || check.flags_1 & NO_RUINS_1) - valid = FALSE - break - - if(!valid) - continue - - testing("Ruin \"[name]\" placed at ([central_turf.x], [central_turf.y], [central_turf.z])") - - for(var/i in get_affected_turfs(central_turf, 1)) - var/turf/T = i - for(var/mob/living/simple_animal/monster in T) - qdel(monster) - for(var/obj/structure/flora/ash/plant in T) - qdel(plant) - - load(central_turf,centered = TRUE) - loaded++ - - for(var/turf/T in get_affected_turfs(central_turf, 1)) - T.flags_1 |= NO_RUINS_1 - - new /obj/effect/landmark/ruin(central_turf, src) - return TRUE - return FALSE - - -/proc/seedRuins(list/z_levels = null, budget = 0, whitelist = /area/space, list/potentialRuins) - if(!z_levels || !length(z_levels)) - WARNING("No Z levels provided - Not generating ruins") - return - - for(var/zl in z_levels) - var/turf/T = locate(1, 1, zl) - if(!T) - WARNING("Z level [zl] does not exist - Not generating ruins") - return - - var/list/ruins = potentialRuins.Copy() - - var/list/forced_ruins = list() //These go first on the z level associated (same random one by default) - var/list/ruins_availible = list() //we can try these in the current pass - var/forced_z //If set we won't pick z level and use this one instead. - - //Set up the starting ruin list - for(var/key in ruins) - var/datum/map_template/ruin/R = ruins[key] - if(R.cost > budget) //Why would you do that - continue - if(R.always_place) - forced_ruins[R] = -1 - if(R.unpickable) - continue - ruins_availible[R] = R.placement_weight - - while(budget > 0 && (length(ruins_availible) || length(forced_ruins))) - var/datum/map_template/ruin/current_pick - var/forced = FALSE - if(length(forced_ruins)) //We have something we need to load right now, so just pick it - for(var/ruin in forced_ruins) - current_pick = ruin - if(forced_ruins[ruin] > 0) //Load into designated z - forced_z = forced_ruins[ruin] - forced = TRUE - break - else //Otherwise just pick random one - current_pick = pickweight(ruins_availible) - - var/placement_tries = PLACEMENT_TRIES - var/failed_to_place = TRUE - var/z_placed = 0 - while(placement_tries > 0) - placement_tries-- - z_placed = pick(z_levels) - if(!current_pick.try_to_place(forced_z ? forced_z : z_placed,whitelist)) - continue - else - failed_to_place = FALSE - break - - //That's done remove from priority even if it failed - if(forced) - //TODO : handle forced ruins with multiple variants - forced_ruins -= current_pick - forced = FALSE - - if(failed_to_place) - for(var/datum/map_template/ruin/R in ruins_availible) - if(R.id == current_pick.id) - ruins_availible -= R - log_world("Failed to place [current_pick.name] ruin.") - else - budget -= current_pick.cost - if(!current_pick.allow_duplicates) - for(var/datum/map_template/ruin/R in ruins_availible) - if(R.id == current_pick.id) - ruins_availible -= R - if(current_pick.never_spawn_with) - for(var/blacklisted_type in current_pick.never_spawn_with) - for(var/possible_exclusion in ruins_availible) - if(istype(possible_exclusion,blacklisted_type)) - ruins_availible -= possible_exclusion - if(current_pick.always_spawn_with) - for(var/v in current_pick.always_spawn_with) - for(var/ruin_name in SSmapping.ruins_templates) //Because we might want to add space templates as linked of lava templates. - var/datum/map_template/ruin/linked = SSmapping.ruins_templates[ruin_name] //why are these assoc, very annoying. - if(istype(linked,v)) - switch(current_pick.always_spawn_with[v]) - if(PLACE_SAME_Z) - forced_ruins[linked] = forced_z ? forced_z : z_placed //I guess you might want a chain somehow - if(PLACE_LAVA_RUIN) - forced_ruins[linked] = pick(SSmapping.levels_by_trait(ZTRAIT_LAVA_RUINS)) - if(PLACE_SPACE_RUIN) - forced_ruins[linked] = pick(SSmapping.levels_by_trait(ZTRAIT_SPACE_RUINS)) - if(PLACE_DEFAULT) - forced_ruins[linked] = -1 - forced_z = 0 - - //Update the availible list - for(var/datum/map_template/ruin/R in ruins_availible) - if(R.cost > budget) - ruins_availible -= R - - log_world("Ruin loader finished with [budget] left to spend.") diff --git a/code/modules/mapping/space_management/space_transition.dm b/code/modules/mapping/space_management/space_transition.dm deleted file mode 100644 index 18ea3f3704a..00000000000 --- a/code/modules/mapping/space_management/space_transition.dm +++ /dev/null @@ -1,143 +0,0 @@ -/datum/space_level/proc/set_linkage(new_linkage) - linkage = new_linkage - if(linkage == SELFLOOPING) - neigbours = list(TEXT_NORTH,TEXT_SOUTH,TEXT_EAST,TEXT_WEST) - for(var/A in neigbours) - neigbours[A] = src - -/datum/space_level/proc/set_neigbours(list/L) - for(var/datum/space_transition_point/P in L) - if(P.x == xi) - if(P.y == yi+1) - neigbours[TEXT_NORTH] = P.spl - P.spl.neigbours[TEXT_SOUTH] = src - else if(P.y == yi-1) - neigbours[TEXT_SOUTH] = P.spl - P.spl.neigbours[TEXT_NORTH] = src - else if(P.y == yi) - if(P.x == xi+1) - neigbours[TEXT_EAST] = P.spl - P.spl.neigbours[TEXT_WEST] = src - else if(P.x == xi-1) - neigbours[TEXT_WEST] = P.spl - P.spl.neigbours[TEXT_EAST] = src - -/datum/space_transition_point //this is explicitly utilitarian datum type made specially for the space map generation and are absolutely unusable for anything else - var/list/neigbours = list() - var/x - var/y - var/datum/space_level/spl - -/datum/space_transition_point/New(nx, ny, list/point_grid) - if(!point_grid) - qdel(src) - return - var/list/L = point_grid[1] - if(nx > length(point_grid) || ny > length(L)) - qdel(src) - return - x = nx - y = ny - if(point_grid[x][y]) - return - point_grid[x][y] = src - -/datum/space_transition_point/proc/set_neigbours(list/grid) - var/max_X = grid.len - var/list/max_Y = grid[1] - max_Y = max_Y.len - neigbours.Cut() - if(x+1 <= max_X) - neigbours |= grid[x+1][y] - if(x-1 >= 1) - neigbours |= grid[x-1][y] - if(y+1 <= max_Y) - neigbours |= grid[x][y+1] - if(y-1 >= 1) - neigbours |= grid[x][y-1] - -/datum/controller/subsystem/mapping/proc/setup_map_transitions() //listamania - var/list/SLS = list() - var/list/cached_z_list = z_list - var/conf_set_len = 0 - for(var/A in cached_z_list) - var/datum/space_level/D = A - if (D.linkage == CROSSLINKED) - SLS.Add(D) - conf_set_len++ - var/list/point_grid[conf_set_len*2+1][conf_set_len*2+1] - var/list/grid = list() - var/datum/space_transition_point/P - for(var/i = 1, i<=conf_set_len*2+1, i++) - for(var/j = 1, j<=conf_set_len*2+1, j++) - P = new/datum/space_transition_point(i,j, point_grid) - point_grid[i][j] = P - grid.Add(P) - for(var/datum/space_transition_point/pnt in grid) - pnt.set_neigbours(point_grid) - P = point_grid[conf_set_len+1][conf_set_len+1] - var/list/possible_points = list() - var/list/used_points = list() - grid.Cut() - while(length(SLS)) - var/datum/space_level/D = pick_n_take(SLS) - D.xi = P.x - D.yi = P.y - P.spl = D - possible_points |= P.neigbours - used_points |= P - possible_points.Remove(used_points) - D.set_neigbours(used_points) - P = pick(possible_points) - CHECK_TICK - - //Lists below are pre-calculated values arranged in the list in such a way to be easily accessable in the loop by the counter - //Its either this or madness with lotsa math - - var/list/x_pos_beginning = list(1, 1, world.maxx - TRANSITIONEDGE, 1) //x values of the lowest-leftest turfs of the respective 4 blocks on each side of zlevel - var/list/y_pos_beginning = list(world.maxy - TRANSITIONEDGE, 1, 1 + TRANSITIONEDGE, 1 + TRANSITIONEDGE) //y values respectively - var/list/x_pos_ending = list(world.maxx, world.maxx, world.maxx, 1 + TRANSITIONEDGE) //x values of the highest-rightest turfs of the respective 4 blocks on each side of zlevel - var/list/y_pos_ending = list(world.maxy, 1 + TRANSITIONEDGE, world.maxy - TRANSITIONEDGE, world.maxy - TRANSITIONEDGE) //y values respectively - var/list/x_pos_transition = list(1, 1, TRANSITIONEDGE + 2, world.maxx - TRANSITIONEDGE - 1) //values of x for the transition from respective blocks on the side of zlevel, 1 is being translated into turfs respective x value later in the code - var/list/y_pos_transition = list(TRANSITIONEDGE + 2, world.maxy - TRANSITIONEDGE - 1, 1, 1) //values of y for the transition from respective blocks on the side of zlevel, 1 is being translated into turfs respective y value later in the code - - for(var/I in cached_z_list) - var/datum/space_level/D = I - if(!length(D.neigbours)) - continue - var/zlevelnumber = D.z_value - for(var/side in 1 to 4) - var/turf/beginning = locate(x_pos_beginning[side], y_pos_beginning[side], zlevelnumber) - var/turf/ending = locate(x_pos_ending[side], y_pos_ending[side], zlevelnumber) - var/list/turfblock = block(beginning, ending) - var/dirside = 2**(side-1) - var/zdestination = zlevelnumber - if(D.neigbours["[dirside]"] && D.neigbours["[dirside]"] != D) - D = D.neigbours["[dirside]"] - zdestination = D.z_value - else - dirside = REVERSE_DIR(dirside) - while(D.neigbours["[dirside]"] && D.neigbours["[dirside]"] != D) - D = D.neigbours["[dirside]"] - zdestination = D.z_value - D = I - for(var/turf/open/space/S in turfblock) - S.destination_x = x_pos_transition[side] == 1 ? S.x : x_pos_transition[side] - S.destination_y = y_pos_transition[side] == 1 ? S.y : y_pos_transition[side] - S.destination_z = zdestination - - // Mirage border code - var/mirage_dir - if(S.x == 1 + TRANSITIONEDGE) - mirage_dir |= WEST - else if(S.x == world.maxx - TRANSITIONEDGE) - mirage_dir |= EAST - if(S.y == 1 + TRANSITIONEDGE) - mirage_dir |= SOUTH - else if(S.y == world.maxy - TRANSITIONEDGE) - mirage_dir |= NORTH - if(!mirage_dir) - continue - - var/turf/place = locate(S.destination_x, S.destination_y, S.destination_z) - S.AddComponent(/datum/component/mirage_border, place, mirage_dir) diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index 561c69ef12e..f17ca637602 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -87,10 +87,11 @@ GLOBAL_VAR_INIT(observer_default_invisibility, INVISIBILITY_OBSERVER) update_icon() - if(!T) + if(!T && length(GLOB.latejoin))// e.g no shipmap spawn during unit tests or admit shittery T = pick(GLOB.latejoin) - abstract_move(T) + if(T) + abstract_move(T) if(!name) name = random_unique_name(gender) diff --git a/code/modules/projectiles/guns/sentries.dm b/code/modules/projectiles/guns/sentries.dm index 35dfc009436..20e74124dbf 100644 --- a/code/modules/projectiles/guns/sentries.dm +++ b/code/modules/projectiles/guns/sentries.dm @@ -284,7 +284,7 @@ desc = "Развёртываемая автоматическая турель, имеет встроенный ИИ. Установлена модификация с уменьшением габаритов и калибра, крайне лёгок в установке." icon_state = "minisentry" - fire_sound = '\sound/items/turrets/turret_smg.ogg' + fire_sound = 'sound/items/turrets/turret_smg.ogg' max_shells = 300 knockdown_threshold = 80 @@ -348,7 +348,7 @@ desc = "Развёртываемая автоматическая турель, имеет встроенный ИИ. Установлена модификация для ведения огня большим калибром на дальние дистанции." icon_state = "sentry_sniper" - fire_sound = '\sound/items/turrets/turret_sniper.ogg' + fire_sound = 'sound/items/turrets/turret_sniper.ogg' turret_range = 14 deploy_time = 10 SECONDS @@ -379,7 +379,7 @@ desc = "Развёртываемая автоматическая турель, имеет встроенный ИИ. Установлена модификация для ведения массивного огня на ближние дистанции." icon_state = "sentry_shotgun" - fire_sound = '\sound/items/turrets/turret_shotgun.ogg' + fire_sound = 'sound/items/turrets/turret_shotgun.ogg' turret_range = 5 deploy_time = 5 SECONDS diff --git a/code/modules/reagents/reagents/drink.dm b/code/modules/reagents/reagents/drink.dm index 5534f1abc76..a103ced988d 100644 --- a/code/modules/reagents/reagents/drink.dm +++ b/code/modules/reagents/reagents/drink.dm @@ -62,13 +62,10 @@ /datum/reagent/consumable/drink/carrotjuice/on_mob_life(mob/living/L, metabolism) L.adjust_blurriness(-1) L.adjust_blindness(-1) - switch(current_cycle) - if(1 to 20) - //nothing - if(21 to INFINITY) - if(prob(current_cycle-10) && iscarbon(L)) - var/mob/living/carbon/C = L - C.disabilities &= ~NEARSIGHTED + if(current_cycle > 20) + if(prob(current_cycle-10) && iscarbon(L)) + var/mob/living/carbon/C = L + C.disabilities &= ~NEARSIGHTED return ..() /datum/reagent/consumable/drink/berryjuice diff --git a/code/modules/shuttle/marine_dropship.dm b/code/modules/shuttle/marine_dropship.dm index 36a8d550f2a..b1c25ff5e17 100644 --- a/code/modules/shuttle/marine_dropship.dm +++ b/code/modules/shuttle/marine_dropship.dm @@ -676,9 +676,9 @@ if(!allowed(usr)) return if(href_list["lockdown"]) - + EMPTY_BLOCK_GUARD else if(href_list["release"]) - + EMPTY_BLOCK_GUARD else if(href_list["lock"]) M.lockdown_airlocks(href_list["lock"]) else if(href_list["unlock"]) @@ -706,6 +706,7 @@ to_chat(X, span_xenowarning("The bird is still cooling down.")) return if(SHUTTLE_IDLE) //Continue. + EMPTY_BLOCK_GUARD else to_chat(X, span_xenowarning("We can't do that right now.")) return diff --git a/code/modules/unit_tests/README.md b/code/modules/unit_tests/README.md index 420c805fbf7..d4d45736ca4 100644 --- a/code/modules/unit_tests/README.md +++ b/code/modules/unit_tests/README.md @@ -39,7 +39,7 @@ Open `code/_compile_options.dm` and uncomment the following line. //#define UNIT_TESTS //If this is uncommented, we do a single run though of the game setup and tear down process with unit tests in between ``` -Then, run tgstation.dmb in Dream Daemon. Don't bother trying to connect, you won't need to. You'll be able to see the outputs of all the tests. You'll get to see which tests failed and for what reason. If they all pass, you're set! +Then, run tgmc.dmb in Dream Daemon. Don't bother trying to connect, you won't need to. You'll be able to see the outputs of all the tests. You'll get to see which tests failed and for what reason. If they all pass, you're set! ## How to think about tests diff --git a/code/modules/unit_tests/_unit_tests.dm b/code/modules/unit_tests/_unit_tests.dm index 73da6d98264..eaefc14e980 100644 --- a/code/modules/unit_tests/_unit_tests.dm +++ b/code/modules/unit_tests/_unit_tests.dm @@ -43,9 +43,11 @@ #define UNIT_TEST_FAILED 1 #define UNIT_TEST_SKIPPED 2 +#define TEST_PRE 0 #define TEST_DEFAULT 1 #define TEST_DEL_WORLD INFINITY +// BEGIN_INCLUDE #include "apc_area_sanity.dm" #include "bespoke_id.dm" #include "binary_insert.dm" @@ -55,8 +57,10 @@ #include "create_and_destroy.dm" #include "dcs_get_id_from_elements.dm" #include "implanting.dm" +#include "item_variant_test.dm" #include "keybinding_init.dm" #include "map_templates.dm" +#include "mapping.dm" #include "spawn_guns.dm" #include "spawn_humans.dm" #include "spawn_xenos.dm" @@ -67,7 +71,7 @@ #include "weed_ability.dm" #include "weed_spread.dm" #include "xeno_logical_scaling.dm" -#include "item_variant_test.dm" +// END_INCLUDE #ifdef REFERENCE_TRACKING //Don't try and parse this file if ref tracking isn't turned on. IE: don't parse ref tracking please mr linter #include "find_reference_sanity.dm" diff --git a/code/modules/unit_tests/create_and_destroy.dm b/code/modules/unit_tests/create_and_destroy.dm index b8b9bc011f2..a3dc08624f6 100644 --- a/code/modules/unit_tests/create_and_destroy.dm +++ b/code/modules/unit_tests/create_and_destroy.dm @@ -22,6 +22,8 @@ GLOBAL_VAR_INIT(running_create_and_destroy, FALSE) /mob/living/carbon/xenomorph, ///Base type doesn't have any variations in it's variation list /turf/closed/wall/variable, + //This is meant to fail extremely loud every single time it occurs in any environment in any context, and it falsely alarms when this unit test iterates it. Let's not spawn it in. + /obj/merge_conflict_marker, ///Base type with no disk type /obj/machinery/computer/nuke_disk_generator, ) diff --git a/code/modules/unit_tests/mapping.dm b/code/modules/unit_tests/mapping.dm new file mode 100644 index 00000000000..b1585a10b7f --- /dev/null +++ b/code/modules/unit_tests/mapping.dm @@ -0,0 +1,24 @@ +/// Conveys all log_mapping messages as unit test failures, as they all indicate mapping problems. +/datum/unit_test/log_mapping + // Happen before all other tests, to make sure we only capture normal mapping logs. + priority = TEST_PRE + +/datum/unit_test/log_mapping/Run() + // var/static/regex/test_areacoord_regex = regex(@"\(-?\d+,-?\d+,(-?\d+)\)") + + for(var/log_entry in GLOB.unit_test_mapping_logs) + // Only fail if AREACOORD was conveyed, and it's a ship or ground z-level. + // This is due to mapping errors don't have coords being impossible to diagnose as a unit test, + // and various other zlevels frequently intentionally do non-standard things. + + /* hey, this is disabled because we use log_mapping for errors only atm and + I cant be bothered to make the TG version of areacoord work with ours. + if you port it make sure to uncomment this + + if(!test_areacoord_regex.Find(log_entry)) + continue + var/z = text2num(test_areacoord_regex.group[1]) + if(!is_gameplay_level(z)) + continue + */ + Fail(log_entry) diff --git a/code/modules/unit_tests/unit_test.dm b/code/modules/unit_tests/unit_test.dm index 0446e3e372f..c199005f12a 100644 --- a/code/modules/unit_tests/unit_test.dm +++ b/code/modules/unit_tests/unit_test.dm @@ -102,6 +102,7 @@ GLOBAL_LIST_EMPTY(unit_test_mapping_logs) for(var/J in 1 to LAZYLEN(fail_reasons)) log_entry += "\tREASON #[J]: [fail_reasons[J]]" + //TODO missing tg's logging what map it failed on var/message = log_entry.Join("\n") log_test(message) diff --git a/dependencies.sh b/dependencies.sh index fad1797095d..3dbe20fdd89 100644 --- a/dependencies.sh +++ b/dependencies.sh @@ -11,8 +11,8 @@ export BYOND_MINOR=1636 export RUST_G_VERSION=3.0.0 #node version -export NODE_VERSION=14 -export NODE_VERSION_PRECISE=14.16.1 +export NODE_VERSION=20 +export NODE_VERSION_LTS=20.12.0 # SpacemanDMM git tag export SPACEMAN_DMM_VERSION=suite-1.8 diff --git a/tgmc.dme b/tgmc.dme index b6d334e714e..54ec52f58ba 100644 --- a/tgmc.dme +++ b/tgmc.dme @@ -10,6 +10,7 @@ #define DEBUG // END_PREFERENCES // BEGIN_INCLUDE +#include "__odlint.dm" #include "_maps\_basemap.dm" #include "code\__byond_version_compat.dm" #include "code\_compile_options.dm" @@ -260,6 +261,7 @@ #include "code\controllers\subsystem.dm" #include "code\controllers\configuration\config_entry.dm" #include "code\controllers\configuration\configuration.dm" +#include "code\controllers\configuration\entries\comms.dm" #include "code\controllers\configuration\entries\dbconfig.dm" #include "code\controllers\configuration\entries\game_options.dm" #include "code\controllers\configuration\entries\general.dm" @@ -1378,6 +1380,7 @@ #include "code\modules\codex\entries\atmospherics_codex.dm" #include "code\modules\codex\entries\clothing_codex.dm" #include "code\modules\codex\entries\engineering_codex.dm" +#include "code\modules\codex\entries\faction_codex.dm" #include "code\modules\codex\entries\guns_codex.dm" #include "code\modules\codex\entries\machinery_codex.dm" #include "code\modules\codex\entries\magazine_codex.dm" @@ -1413,6 +1416,7 @@ #include "code\modules\events\hive_threat.dm" #include "code\modules\events\intel_computer.dm" #include "code\modules\events\ion_storm.dm" +#include "code\modules\events\stock_uptick.dm" #include "code\modules\events\supply_drop.dm" #include "code\modules\flufftext\Dreaming.dm" #include "code\modules\flufftext\Hallucination.dm" @@ -1495,6 +1499,7 @@ #include "code\modules\logging\categories\log_category_misc.dm" #include "code\modules\mapping\map_template.dm" #include "code\modules\mapping\mapping_helpers.dm" +#include "code\modules\mapping\merge_conflicts.dm" #include "code\modules\mapping\modular_mapping.dm" #include "code\modules\mapping\preloader.dm" #include "code\modules\mapping\reader.dm" @@ -1970,15 +1975,18 @@ #include "code\modules\tgui\states\deep_inventory.dm" #include "code\modules\tgui\states\default.dm" #include "code\modules\tgui\states\dropship.dm" +#include "code\modules\tgui\states\fun.dm" #include "code\modules\tgui\states\hands.dm" #include "code\modules\tgui\states\human_adjacent.dm" #include "code\modules\tgui\states\inventory.dm" #include "code\modules\tgui\states\language_menu.dm" +#include "code\modules\tgui\states\never.dm" #include "code\modules\tgui\states\new_player.dm" #include "code\modules\tgui\states\not_incapacitated.dm" #include "code\modules\tgui\states\notcontained.dm" #include "code\modules\tgui\states\observer.dm" #include "code\modules\tgui\states\physical.dm" +#include "code\modules\tgui\states\reverse_contained.dm" #include "code\modules\tgui\states\self.dm" #include "code\modules\tgui\states\xeno.dm" #include "code\modules\tgui\states\zlevel.dm" diff --git a/tools/MapTileAggregator/MapTileAggregator.bat b/tools/MapTileAggregator/MapTileAggregator.bat new file mode 100644 index 00000000000..ca46e7ced9f --- /dev/null +++ b/tools/MapTileAggregator/MapTileAggregator.bat @@ -0,0 +1,4 @@ +@call "%~dp0\..\bootstrap\python.bat" -m MapTileAggregator --posthoc %* +@echo Running the map merger automatically... +@call "%~dp0\..\bootstrap\python.bat" -m mapmerge2.precommit --use-workdir %* +@pause diff --git a/tools/MapTileAggregator/__main__.py b/tools/MapTileAggregator/__main__.py new file mode 100644 index 00000000000..78fe9f36588 --- /dev/null +++ b/tools/MapTileAggregator/__main__.py @@ -0,0 +1,155 @@ +#!/usr/bin/env python3 +import os +import pathlib +import re +from mapmerge2 import dmm + +# Many thanks to itsmeow of BeeStation for the original code via https://github.com/BeeStation/BeeStation-Hornet/pull/7970 +# A lot of un-needed stuff as far as /tg/ is concerned has been removed, and has been adjusted to work with our file organization, as well + +top_left = 1 +top_right = 4 +bottom_right = 2 +bottom_left = 8 + +# Mapping of path{dir}s to corner dirs, so we can optimize them into the largest piece. Sorted by priority (size of set covered) +path_dir_sets = { + ("/full", 2): frozenset({top_left, top_right, bottom_left, bottom_right}), + ("/fourcorners", 2): frozenset({top_left, top_right, bottom_left, bottom_right}), + ("/anticorner", 1): frozenset({top_left, top_right, bottom_left}), + ("/anticorner", 2): frozenset({top_right, bottom_left, bottom_right}), + ("/anticorner", 4): frozenset({top_left, top_right, bottom_right}), + ("/anticorner", 8): frozenset({top_left, bottom_left, bottom_right}), + ("/anticorner/contrasted", 1): frozenset({top_left, top_right, bottom_left}), + ("/anticorner/contrasted", 2): frozenset({top_right, bottom_left, bottom_right}), + ("/anticorner/contrasted", 4): frozenset({top_left, top_right, bottom_right}), + ("/anticorner/contrasted", 8): frozenset({top_left, bottom_left, bottom_right}), + ("/half", 1): frozenset({top_left, top_right}), + ("/half", 2): frozenset({bottom_left, bottom_right}), + ("/half", 4): frozenset({top_right, bottom_right}), + ("/half", 8): frozenset({top_left, bottom_left}), + ("/half/contrasted", 1): frozenset({top_left, top_right}), + ("/half/contrasted", 2): frozenset({bottom_left, bottom_right}), + ("/half/contrasted", 4): frozenset({top_right, bottom_right}), + ("/half/contrasted", 8): frozenset({top_left, bottom_left}), + ("/opposingcorners", 1): frozenset({bottom_left, top_right}), + ("/opposingcorners", 2): frozenset({top_left, bottom_right}), + ("/opposingcorners", 4): frozenset({top_left, bottom_right}), + ("/opposingcorners", 8): frozenset({bottom_left, top_right}), + ("", 1): frozenset({top_left}), + ("", 2): frozenset({bottom_right}), + ("", 4): frozenset({top_right}), + ("", 8): frozenset({bottom_left}), +} + +path_dir_sets_reverse = {} +for k, v in path_dir_sets.items(): + path_dir_sets_reverse[v] = path_dir_sets_reverse.get(v, []) + [k] + +# We don't want to turn "contrasted" into fulltile decals +compatibility_sets = [ + {"", "/half/contrasted", "/opposingcorners", "/fourcorners", "/anticorner/contrasted"}, + {"/half", "/anticorner", "/full"} +] + +# Exclusionary set, for turf_decals that were not made to be flattened. +exclusionary_set = { + "/diagonal_centre", + "/diagonal_edge", +} + +compiled_regex = re.compile(r"\/obj\/effect\/turf_decal\/tile\/?([A-Za-z_]+)?([A-Za-z_\/]+)?(\{[\s\S]*(dir = (\d+))[\s\S]*\})?") + +def update_map(map_path): + the_map = dmm.DMM.from_file(map_path) + checked = 0 + for z, y, x in the_map.coords_zyx: + coord = x, y, z + tile, turfs, areas = dmm.split_atom_groups(the_map.get_tile(coord)) + turf_decals = list(filter(lambda atom: atom.startswith('/obj/effect/turf_decal/tile'), tile)) + if not turf_decals or len(turf_decals) <= 0: + continue + checked += 1 + typed = dict() + for decal in turf_decals: + matched = re.search(compiled_regex, decal) + + if matched == None: + print("Warning, what the fuck did we just parse? {}".format(decal)) + + color = matched.group(1) + if color == None: + # Commented out the warning because there's no reason for this to occur. If it exists, it should be addressed case-by-case outside of the scope of this script (with an UpdatePaths) + # This is because null-colored turf decals legitimately have no color and don't modify appearances, bit silly. If a null-colored turf decal means something somewhere else, add that color here. + # color = "white" + # print("Warning, tile with no color (this is bad): {}".format(decal)) + continue + + last = matched.group(2) + if last in exclusionary_set: + continue + if last == None: + last = "" + + dir = matched.group(5) + if dir == None: + dir = 2 + else: + dir = int(dir) + + dirs = frozenset(path_dir_sets[(last, dir)]) + + if dirs == None: + print("Warning - Could not parse tile decal to corners: {}".format(decal)) + continue + else: + tile.remove(decal) + typed[(color, last)] = typed[(color, last)] | dirs if (color, last) in typed else dirs + + for data, dirs in typed.items(): + color = data[0] + last = data[1] + result = None + results = path_dir_sets_reverse[dirs] + if len(results) > 1: + for rez in results: + for comp in compatibility_sets: + if last in comp and rez[0] in comp: + result = rez + break + if result != None: + break + if result == None: + print(results) + print(last) + + elif len(results) == 1: + result = results[0] + + if result == None: + print("Warning - no applicable type for dirs: {}".format(dirs)) + print(turf_decals) + + # Handle the case where color is empty, we need the path to not end in / + if color != "": + color = "/" + color + + new_path = "/obj/effect/turf_decal/tile" + color + result[0] + new_dir = result[1] + if new_dir != 2: + new_path += "{dir = " + str(new_dir) + "}" + + tile.append(new_path) + the_map.set_tile(coord, tile + turfs + areas) + return (the_map, checked) + +if __name__ == '__main__': + list_of_files = list() + for root, directories, filenames in os.walk("../../_maps/"): + for filename in [f for f in filenames if f.endswith(".dmm")]: + list_of_files.append(pathlib.Path(root, filename)) + for path in list_of_files: + print("Updating " + str(path) + "...") + data = update_map(path) + if data[1] > 0: + data[0].to_file(path) diff --git a/tools/MapTileAggregator/readme.md b/tools/MapTileAggregator/readme.md new file mode 100644 index 00000000000..fd6cb0fe9d9 --- /dev/null +++ b/tools/MapTileAggregator/readme.md @@ -0,0 +1,40 @@ +## What does this tool do? + +This tool aggregates or "flattens" out turf_decal tiles on a map. For example, let's assume you have this map key: + +```txt +"qp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron{ + initial_gas_mix = "TEMP=2.7" + }, +/area/shuttle/caravan/freighter1) +``` + +This tool will just turn those two separate `/obj/effect/turf_decal/tile/blue` into one `/obj/effect/turf_decal/tile/blue/half/contrasted` with the correct dir, like so: + +```txt +"qp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron{ + initial_gas_mix = "TEMP=2.7" + }, +/area/shuttle/caravan/freighter1) +``` + +Simple! This goes for any possible permuation of turf decals in a map key, respecting any possible color and combination thereof. + +##### [click me if you don't understand what you just saw](https://hackmd.io/@tgstation/ry4-gbKH5#Map-Keys-no-holds-barred) + +## How do I use this tool? + +Just double-click the `MapTileAggregator.bat` file in this directory and it'll automatically run the Python tool on all of the `.dmm` files in the `/_maps` directory. It'll also automatically run the `MapMerge` tool once it's done to keep everything nice and tidy. diff --git a/tools/Runtime Condenser/Main.cpp b/tools/Runtime Condenser/Main.cpp index 4d237150890..6985008366f 100644 --- a/tools/Runtime Condenser/Main.cpp +++ b/tools/Runtime Condenser/Main.cpp @@ -5,7 +5,7 @@ * also be caught and displayed (if any) above the list of runtimes. * * How to use: - * 1) Copy and paste your list of runtimes from Dream Daemon into input.exe + * 1) Copy and paste your list of runtimes from Dream Daemon into Input.txt * 2) Run RuntimeCondenser.exe * 3) Open output.txt for a condensed report of the runtimes * @@ -34,7 +34,7 @@ #define PROGRESS_FPS 10 #define PROGRESS_BAR_INNER_WIDTH 50 -#define LINEBUFFER (512*1024) //512KiB +#define LINEBUFFER (32*1024) //32KiB using namespace std; @@ -74,7 +74,7 @@ inline string safe_substr(string * S, size_t start = 0, size_t end = string::npo start = S->length(); return S->substr(start, end); } -//getline() is slow as fucking balls. this is quicker because we prefill a buffer rather then read 1 byte at a time searching for newlines, lowering on i/o calls and overhead. (110MB/s vs 40MB/s on a 1.8GB file pre-filled into the disk cache) +//get_line() is slow as fucking balls. this is quicker because we prefill a buffer rather then read 1 byte at a time searching for newlines, lowering on i/o calls and overhead. (110MB/s vs 40MB/s on a 1.8GB file pre-filled into the disk cache) //if i wanted to make it even faster, I'd use a reading thread, a new line searching thread, another thread or four for searching for runtimes in the list to see if they are unique, and finally the main thread for displaying the progress bar. but fuck that noise. inline string * readline(FILE * f) { static char buf[LINEBUFFER]; @@ -116,13 +116,27 @@ inline string * readline(FILE * f) { inline void forward_progress(FILE * inputFile) { delete(lastLine); lastLine = currentLine; - currentLine = nextLine; - nextLine = readline(inputFile); - //strip out any timestamps. - if (nextLine->length() >= 10) { - if ((*nextLine)[0] == '[' && (*nextLine)[3] == ':' && (*nextLine)[6] == ':' && (*nextLine)[9] == ']') - nextLine->erase(0, 10); - } + currentLine = nextLine; + do { + nextLine = readline(inputFile); + //strip out rustg continuing line markers + if (safe_substr(nextLine, 0, 3) == " - ") { + nextLine->erase(0, 3); + } + + //strip out any timestamps. + if (nextLine->length() >= 10) { + if ((*nextLine)[0] == '[' && (*nextLine)[3] == ':' && (*nextLine)[6] == ':' && (*nextLine)[9] == ']') + nextLine->erase(0, 10); + else if (nextLine->length() >= 26 && ((*nextLine)[0] == '[' && (*nextLine)[5] == '-' && (*nextLine)[14] == ':' && (*nextLine)[20] == '.' && (*nextLine)[24] == ']')) + nextLine->erase(0, 26); + } + //strip out log cats + if (nextLine->length() >= 9 && safe_substr(nextLine, 0, 9) == "RUNTIME: ") { + nextLine->erase(0, 9); + } + } while (!endofbuffer && nextLine->length() < 1); + } //deallocates to, copys from to to. inline void string_send(string * &from, string * &to) { @@ -132,28 +146,35 @@ inline void string_send(string * &from, string * &to) { inline void printprogressbar(unsigned short progress /*as percent*/) { double const modifer = 100.0L/(double)PROGRESS_BAR_INNER_WIDTH; size_t bars = (double)progress/modifer; - cout << "\r[" << string(bars, '=') << ((progress < 100) ? ">" : "") << string(PROGRESS_BAR_INNER_WIDTH-(bars+((progress < 100) ? 1 : 0)), ' ') << "] " << progress << "%"; - cout.flush(); + cerr << "\r[" << string(bars, '=') << ((progress < 100) ? ">" : "") << string(PROGRESS_BAR_INNER_WIDTH-(bars+((progress < 100) ? 1 : 0)), ' ') << "] " << progress << "%"; + cerr.flush(); } -bool readFromFile() { +bool readFromFile(bool isstdin) { //Open file to read - FILE * inputFile = fopen("Input.txt", "r"); + FILE * inputFile = stdin; + if (!isstdin) + inputFile = fopen("Input.txt", "r"); if (ferror(inputFile)) return false; + long long fileLength = 0; + clock_t nextupdate = 0; + if (!isstdin) { + fseek(inputFile, 0, SEEK_END); + fileLength = ftell(inputFile); + fseek(inputFile, 0, SEEK_SET); + nextupdate = clock(); + } - fseek(inputFile, 0, SEEK_END); - long long fileLength = ftell(inputFile); - fseek(inputFile, 0, SEEK_SET); - clock_t nextupdate = clock(); if (feof(inputFile)) return false; //empty file do { //Update our lines forward_progress(inputFile); //progress bar - if (clock() >= nextupdate) { + + if (!isstdin && clock() >= nextupdate) { int dProgress = (int)(((long double)ftell(inputFile) / (long double)fileLength) * 100.0L); printprogressbar(dProgress); nextupdate = clock() + (CLOCKS_PER_SEC/PROGRESS_FPS); @@ -251,10 +272,12 @@ bool readFromFile() { } } } while (!feof(inputFile) || !endofbuffer); //Until end of file - printprogressbar(100); - cout << endl; + if (!isstdin) + printprogressbar(100); + cerr << endl; return true; } + bool runtimeComp(const runtime &a, const runtime &b) { return a.count > b.count; } @@ -262,25 +285,30 @@ bool runtimeComp(const runtime &a, const runtime &b) { bool hardDelComp(const harddel &a, const harddel &b) { return a.count > b.count; } -bool writeToFile() { + +bool writeToFile(bool usestdio) { //Open and clear the file - ofstream outputFile("Output.txt", ios::trunc); + ostream * output = &cout; + ofstream * outputFile; + if (!usestdio) + output = outputFile = new ofstream("Output.txt", ios::trunc); + - if(outputFile.is_open()) { - outputFile << "Note: The source file, src and usr are all from the FIRST of the identical runtimes. Everything else is cropped.\n\n"; + if(usestdio || outputFile->is_open()) { + *output << "Note: The source file, src and usr are all from the FIRST of the identical runtimes. Everything else is cropped.\n\n"; if(storedInfiniteLoop.size() > 0) - outputFile << "Total unique infinite loops: " << storedInfiniteLoop.size() << endl; + *output << "Total unique infinite loops: " << storedInfiniteLoop.size() << endl; if(totalInfiniteLoops > 0) - outputFile << "Total infinite loops: " << totalInfiniteLoops << endl << endl; + *output << "Total infinite loops: " << totalInfiniteLoops << endl << endl; - outputFile << "Total unique runtimes: " << storedRuntime.size() << endl; - outputFile << "Total runtimes: " << totalRuntimes << endl << endl; + *output << "Total unique runtimes: " << storedRuntime.size() << endl; + *output << "Total runtimes: " << totalRuntimes << endl << endl; if(storedHardDel.size() > 0) - outputFile << "Total unique hard deletions: " << storedHardDel.size() << endl; + *output << "Total unique hard deletions: " << storedHardDel.size() << endl; if(totalHardDels > 0) - outputFile << "Total hard deletions: " << totalHardDels << endl << endl; + *output << "Total hard deletions: " << totalHardDels << endl << endl; //If we have infinite loops, display them first. @@ -291,28 +319,28 @@ bool writeToFile() { infiniteLoops.push_back(it->second); storedInfiniteLoop.clear(); sort(infiniteLoops.begin(), infiniteLoops.end(), runtimeComp); - outputFile << "** Infinite loops **"; + *output << "** Infinite loops **"; for (int i=0; i < infiniteLoops.size(); i++) { runtime* R = &infiniteLoops[i]; - outputFile << endl << endl << "The following infinite loop has occurred " << R->count << " time(s).\n"; - outputFile << R->text << endl; + *output << endl << endl << "The following infinite loop has occurred " << R->count << " time(s).\n"; + *output << R->text << endl; if(R->proc.length()) - outputFile << R->proc << endl; + *output << R->proc << endl; if(R->source.length()) - outputFile << R->source << endl; + *output << R->source << endl; if(R->usr.length()) - outputFile << R->usr << endl; + *output << R->usr << endl; if(R->src.length()) - outputFile << R->src << endl; + *output << R->src << endl; if(R->loc.length()) - outputFile << R->loc << endl; + *output << R->loc << endl; } - outputFile << endl << endl; //For spacing + *output << endl << endl; //For spacing } //Do runtimes next - outputFile << "** Runtimes **"; + *output << "** Runtimes **"; vector runtimes; runtimes.reserve(storedRuntime.size()); for (unordered_map::iterator it=storedRuntime.begin(); it != storedRuntime.end(); it++) @@ -321,24 +349,24 @@ bool writeToFile() { sort(runtimes.begin(), runtimes.end(), runtimeComp); for (int i=0; i < runtimes.size(); i++) { runtime* R = &runtimes[i]; - outputFile << endl << endl << "The following runtime has occurred " << R->count << " time(s).\n"; - outputFile << R->text << endl; + *output << endl << endl << "The following runtime has occurred " << R->count << " time(s).\n"; + *output << R->text << endl; if(R->proc.length()) - outputFile << R->proc << endl; + *output << R->proc << endl; if(R->source.length()) - outputFile << R->source << endl; + *output << R->source << endl; if(R->usr.length()) - outputFile << R->usr << endl; + *output << R->usr << endl; if(R->src.length()) - outputFile << R->src << endl; + *output << R->src << endl; if(R->loc.length()) - outputFile << R->loc << endl; + *output << R->loc << endl; } - outputFile << endl << endl; //For spacing + *output << endl << endl; //For spacing //and finally, hard deletes if(totalHardDels > 0) { - outputFile << endl << "** Hard deletions **"; + *output << endl << "** Hard deletions **"; vector hardDels; hardDels.reserve(storedHardDel.size()); for (unordered_map::iterator it=storedHardDel.begin(); it != storedHardDel.end(); it++) @@ -347,42 +375,55 @@ bool writeToFile() { sort(hardDels.begin(), hardDels.end(), hardDelComp); for(int i=0; i < hardDels.size(); i++) { harddel* D = &hardDels[i]; - outputFile << endl << D->type << " - " << D->count << " time(s).\n"; + *output << endl << D->type << " - " << D->count << " time(s).\n"; } } - outputFile.close(); + if (!usestdio) { + outputFile->close(); + delete outputFile; + } } else { return false; } return true; } -int main() { +int main(int argc, const char * argv[]) { ios_base::sync_with_stdio(false); ios::sync_with_stdio(false); + bool usestdio = false; + if (argc >= 2 && !strcmp(argv[1], "-s")) + usestdio = true; + char exit; //Used to stop the program from immediately exiting - cout << "Reading input.\n"; - if(readFromFile()) { - cout << "Input read successfully!\n"; + cerr << "Reading input.\n"; + if(readFromFile(usestdio)) { + cerr << "Input read successfully!\n"; } else { - cout << "Input failed to open, shutting down.\n"; - cout << "\nEnter any letter to quit.\n"; - exit = cin.get(); + cerr << "Input failed to open, shutting down.\n"; + if (!usestdio) { + cerr << "\nEnter any letter to quit.\n"; + exit = cin.get(); + } return 1; } - cout << "Writing output.\n"; - if(writeToFile()) { - cout << "Output was successful!\n"; - cout << "\nEnter any letter to quit.\n"; - exit = cin.get(); + cerr << "Writing output.\n"; + if(writeToFile(usestdio)) { + cerr << "Output was successful!\n"; + if (!usestdio) { + cerr << "\nEnter any letter to quit.\n"; + exit = cin.get(); + } return 0; } else { - cout << "The output file could not be opened, shutting down.\n"; - cout << "\nEnter any letter to quit.\n"; - exit = cin.get(); - return 0; + cerr << "The output file could not be opened, shutting down.\n"; + if (!usestdio) { + cerr << "\nEnter any letter to quit.\n"; + exit = cin.get(); + } + return 1; } return 0; diff --git a/tools/SS13SmoothingCutter/Cutter.dm b/tools/SS13SmoothingCutter/Cutter.dm new file mode 100644 index 00000000000..696f503c783 --- /dev/null +++ b/tools/SS13SmoothingCutter/Cutter.dm @@ -0,0 +1,226 @@ + +#define A_BIG_NUMBER 9999999 +#define STATE_COUNT_NORMAL 4 +#define STATE_COUNT_DIAGONAL 7 + + +/mob/verb/ChooseDMI(dmi as file) + var/dmifile = file(dmi) + if(isfile(dmifile) && (copytext("[dmifile]",-4) == ".dmi")) + SliceNDice(dmifile) + else + world << "\red Bad DMI file '[dmifile]'" + + +/proc/SliceNDice(dmifile as file) + var/icon/sourceIcon = icon(dmifile) + var/list/states = sourceIcon.IconStates() + world << "[dmifile] - states: [states.len]" + + switch(states.len) + if(0 to (STATE_COUNT_NORMAL - 1)) + var/cont = alert(usr, "Too few states: [states.len], expected [STATE_COUNT_NORMAL] (Non-Diagonal) or [STATE_COUNT_DIAGONAL] (Diagonal), Continue?", "Unexpected Amount of States", "Yes", "No") + if(cont == "No") + return + if(STATE_COUNT_NORMAL) + world << "4 States, running in Non-Diagonal mode" + if(STATE_COUNT_DIAGONAL) + world << "5 States, running in Diagonal mode" + if((STATE_COUNT_DIAGONAL + 1) to A_BIG_NUMBER) + var/cont = alert(usr, "Too many states: [states.len], expected [STATE_COUNT_NORMAL] (Non-Diagonal) or [STATE_COUNT_DIAGONAL] (Diagonal), Continue?", "Unexpected Amount of States", "Yes", "No") + if(cont == "No") + return + + + var/icon/outputIcon = new /icon() + + var/filename = "[copytext("[dmifile]", 1, -4)]-smooth.dmi" + fdel(filename) //force refresh + + for(var/state in states) + var/statename = lowertext(state) + outputIcon = icon(filename) //open the icon again each iteration, to work around byond memory limits + + switch(statename) + if("box") + var/icon/box = icon(sourceIcon, state) + + var/icon/corner1i = icon(box) + corner1i.DrawBox(null, 1, 1, 32, 16) + corner1i.DrawBox(null, 17, 1, 32, 32) + outputIcon.Insert(corner1i, "1-i") + + var/icon/corner2i = icon(box) + corner2i.DrawBox(null, 1, 1, 16, 32) + corner2i.DrawBox(null, 17, 1, 32, 16) + outputIcon.Insert(corner2i, "2-i") + + var/icon/corner3i = icon(box) + corner3i.DrawBox(null, 1, 32, 32, 17) + corner3i.DrawBox(null, 17, 32, 32, 1) + outputIcon.Insert(corner3i, "3-i") + + var/icon/corner4i = icon(box) + corner4i.DrawBox(null, 1, 1, 16, 32) + corner4i.DrawBox(null, 17, 17, 32, 32) + outputIcon.Insert(corner4i, "4-i") + + world << "Box: \icon[box] -> \icon[corner1i] \icon[corner2i] \icon[corner3i] \icon[corner4i]" + + if("line") + var/icon/line = icon(sourceIcon, state) + + //Vertical + var/icon/line1n = icon(line) + line1n.DrawBox(null, 1, 1, 32, 16) + line1n.DrawBox(null, 17, 1, 32, 32) + outputIcon.Insert(line1n, "1-n") + + var/icon/line2n = icon(line) + line2n.DrawBox(null, 1, 1, 16, 32) + line2n.DrawBox(null, 17, 1, 32, 16) + outputIcon.Insert(line2n, "2-n") + + var/icon/line3s = icon(line) + line3s.DrawBox(null, 1, 32, 32, 17) + line3s.DrawBox(null, 17, 32, 32, 1) + outputIcon.Insert(line3s, "3-s") + + var/icon/line4s = icon(line) + line4s.DrawBox(null, 1, 1, 16, 32) + line4s.DrawBox(null, 17, 17, 32, 32) + outputIcon.Insert(line4s, "4-s") + + //Horizontal + var/icon/line1w = icon(line3s) //Correct + line1w.Turn(90) + outputIcon.Insert(line1w, "1-w") + + var/icon/line2e = icon(line1n) + line2e.Turn(90) + outputIcon.Insert(line2e, "2-e") + + var/icon/line3w = icon(line4s) + line3w.Turn(90) + outputIcon.Insert(line3w, "3-w") + + var/icon/line4e = icon(line2n) + line4e.Turn(90) + outputIcon.Insert(line4e, "4-e") + + world << "Line: \icon[line] -> \icon[line1n] \icon[line2n] \icon[line3s] \icon[line4s] \icon[line1w] \icon[line2e] \icon[line3w] \icon[line4e]" + + if("center_4") + var/icon/center4 = icon(sourceIcon, state) + + var/icon/corner1nw = icon(center4) + corner1nw.DrawBox(null, 1, 1, 32, 16) + corner1nw.DrawBox(null, 17, 1, 32, 32) + outputIcon.Insert(corner1nw, "1-nw") + + var/icon/corner2ne = icon(center4) + corner2ne.DrawBox(null, 1, 1, 16, 32) + corner2ne.DrawBox(null, 17, 1, 32, 16) + outputIcon.Insert(corner2ne, "2-ne") + + var/icon/corner3sw = icon(center4) + corner3sw.DrawBox(null, 1, 32, 32, 17) + corner3sw.DrawBox(null, 17, 32, 32, 1) + outputIcon.Insert(corner3sw, "3-sw") + + var/icon/corner4se = icon(center4) + corner4se.DrawBox(null, 1, 1, 16, 32) + corner4se.DrawBox(null, 17, 17, 32, 32) + outputIcon.Insert(corner4se, "4-se") + + world << "Center4: \icon[center4] -> \icon[corner1nw] \icon[corner2ne] \icon[corner3sw] \icon[corner4se]" + + if("center_8") + var/icon/center8 = icon(sourceIcon, state) + + var/icon/corner1f = icon(center8) + corner1f.DrawBox(null, 1, 1, 32, 16) + corner1f.DrawBox(null, 17, 1, 32, 32) + outputIcon.Insert(corner1f, "1-f") + + var/icon/corner2f = icon(center8) + corner2f.DrawBox(null, 1, 1, 16, 32) + corner2f.DrawBox(null, 17, 1, 32, 16) + outputIcon.Insert(corner2f, "2-f") + + var/icon/corner3f = icon(center8) + corner3f.DrawBox(null, 1, 32, 32, 17) + corner3f.DrawBox(null, 17, 32, 32, 1) + outputIcon.Insert(corner3f, "3-f") + + var/icon/corner4f = icon(center8) + corner4f.DrawBox(null, 1, 1, 16, 32) + corner4f.DrawBox(null, 17, 17, 32, 32) + outputIcon.Insert(corner4f, "4-f") + + world << "Center8: \icon[center8] -> \icon[corner1f] \icon[corner2f] \icon[corner3f] \icon[corner4f]" + + if("diag") + var/icon/diag = icon(sourceIcon, state) + + var/icon/diagse = icon(diag) //No work + outputIcon.Insert(diagse, "d-se") + + var/icon/diagsw = icon(diag) + diagsw.Turn(90) + outputIcon.Insert(diagsw, "d-sw") + + var/icon/diagne = icon(diag) + diagne.Turn(-90) + outputIcon.Insert(diagne, "d-ne") + + var/icon/diagnw = icon(diag) + diagnw.Turn(180) + outputIcon.Insert(diagnw, "d-nw") + + world << "Diag: \icon[diag] -> \icon[diagse] \icon[diagsw] \icon[diagne] \icon[diagnw]" + + if("diag_corner_a") + var/icon/diag_corner_a = icon(sourceIcon, state) + + var/icon/diagse0 = icon(diag_corner_a) //No work + outputIcon.Insert(diagse0, "d-se-0") + + var/icon/diagsw0 = icon(diag_corner_a) + diagsw0.Turn(90) + outputIcon.Insert(diagsw0, "d-sw-0") + + var/icon/diagne0 = icon(diag_corner_a) + diagne0.Turn(-90) + outputIcon.Insert(diagne0, "d-ne-0") + + var/icon/diagnw0 = icon(diag_corner_a) + diagnw0.Turn(180) + outputIcon.Insert(diagnw0, "d-nw-0") + + world << "Diag_Corner_A: \icon[diag_corner_a] -> \icon[diagse0] \icon[diagsw0] \icon[diagne0] \icon[diagnw0]" + + if("diag_corner_b") + var/icon/diag_corner_b = icon(sourceIcon, state) + + var/icon/diagse1 = icon(diag_corner_b) //No work + outputIcon.Insert(diagse1, "d-se-0") + + var/icon/diagsw1 = icon(diag_corner_b) + diagsw1.Turn(90) + outputIcon.Insert(diagsw1, "d-sw-0") + + var/icon/diagne1 = icon(diag_corner_b) + diagne1.Turn(-90) + outputIcon.Insert(diagne1, "d-ne-0") + + var/icon/diagnw1 = icon(diag_corner_b) + diagnw1.Turn(180) + outputIcon.Insert(diagnw1, "d-nw-0") + + world << "Diag_Corner_B: \icon[diag_corner_b] -> \icon[diagse1] \icon[diagsw1] \icon[diagne1] \icon[diagnw1]" + + + + fcopy(outputIcon, filename) //Update output icon each iteration + world << "Finished [filename]!" diff --git a/tools/SS13SmoothingCutter/ExampleDiagInput.dmi b/tools/SS13SmoothingCutter/ExampleDiagInput.dmi new file mode 100644 index 00000000000..f147bd4b5a3 Binary files /dev/null and b/tools/SS13SmoothingCutter/ExampleDiagInput.dmi differ diff --git a/tools/SS13SmoothingCutter/ExampleInput.dmi b/tools/SS13SmoothingCutter/ExampleInput.dmi new file mode 100644 index 00000000000..b9e6f655e2b Binary files /dev/null and b/tools/SS13SmoothingCutter/ExampleInput.dmi differ diff --git a/tools/SS13SmoothingCutter/SS13SmoothingCutter.dme b/tools/SS13SmoothingCutter/SS13SmoothingCutter.dme new file mode 100644 index 00000000000..5e1384d89a0 --- /dev/null +++ b/tools/SS13SmoothingCutter/SS13SmoothingCutter.dme @@ -0,0 +1,19 @@ +// DM Environment file for SS13SmoothingCutter.dme. +// All manual changes should be made outside the BEGIN_ and END_ blocks. +// New source code should be placed in .dm files: choose File/New --> Code File. + +// BEGIN_INTERNALS +// END_INTERNALS + +// BEGIN_FILE_DIR +#define FILE_DIR . +// END_FILE_DIR + +// BEGIN_PREFERENCES +#define DEBUG +// END_PREFERENCES + +// BEGIN_INCLUDE +#include "Cutter.dm" +// END_INCLUDE + diff --git a/tools/SS13SmoothingCutter/WallInput.dmi b/tools/SS13SmoothingCutter/WallInput.dmi new file mode 100644 index 00000000000..96dbcfea63c Binary files /dev/null and b/tools/SS13SmoothingCutter/WallInput.dmi differ diff --git a/tools/ScrollAnimationAssembler/ScrollAnimationAssembler.dme b/tools/ScrollAnimationAssembler/ScrollAnimationAssembler.dme new file mode 100644 index 00000000000..b3d6f10f464 --- /dev/null +++ b/tools/ScrollAnimationAssembler/ScrollAnimationAssembler.dme @@ -0,0 +1,23 @@ +// DM Environment file for ScrollAnimationAssembler.dme. +// All manual changes should be made outside the BEGIN_ and END_ blocks. +// New source code should be placed in .dm files: choose File/New --> Code File. + +// BEGIN_INTERNALS +// END_INTERNALS + +// BEGIN_FILE_DIR +#define FILE_DIR . +#define FILE_DIR "backgrounds" +#define FILE_DIR "foregrounds" +#define FILE_DIR "masks" +// END_FILE_DIR + +// BEGIN_PREFERENCES +// END_PREFERENCES + +// BEGIN_INCLUDE +#include "apply.dm" +#include "assemble.dm" +#include "create_scroll.dm" +// END_INCLUDE + diff --git a/tools/ScrollAnimationAssembler/apply.dm b/tools/ScrollAnimationAssembler/apply.dm new file mode 100644 index 00000000000..f9773c609aa --- /dev/null +++ b/tools/ScrollAnimationAssembler/apply.dm @@ -0,0 +1,22 @@ +/// Cut out a piece of the background at a specified frame, and paste it on top of the foreground +/proc/Apply(var/icon/source, var/icon/mask, var/icon/target, frame) + + //Temporary copies of source, mask and target + var/icon/source_copy = new(source) + var/icon/mask_copy = new(mask) + var/icon/target_copy = new(target) + + //Automatically invert the mask + mask_copy.SwapColor(rgb(255, 0, 220, 255), rgb(10, 20, 30, 40)) + mask_copy.SwapColor(rgb(0, 0, 0, 0), rgb(255, 0, 220, 255)) + mask_copy.SwapColor(rgb(10, 20, 30, 40), rgb(0, 0, 0, 0)) + + //Overlay the mask onto the image then erase the covered area + source_copy.Crop(frame, 1, frame+31, 32) + source_copy.Blend(mask_copy, ICON_OVERLAY, 1, 1) + source_copy.SwapColor(rgb(255, 0, 220, 255), rgb(0, 0, 0, 0)) + + //Overlay the masked source onto the target + target_copy.Blend(source_copy, ICON_OVERLAY, 1, 1) + + return target_copy diff --git a/tools/ScrollAnimationAssembler/assemble.dm b/tools/ScrollAnimationAssembler/assemble.dm new file mode 100644 index 00000000000..c5f512c69e0 --- /dev/null +++ b/tools/ScrollAnimationAssembler/assemble.dm @@ -0,0 +1,23 @@ +/// Pull the icons from their files, iterate over frames, constructing each using Apply() and inserting into the output dmi +/proc/Assemble(background_dmi as file, foreground_dmi as file, mask_dmi as file, frames, duration) + + var/icon/source_icon = new(background_dmi, icon_state = "", frame = 1) + + var/icon/target_icon = new(foreground_dmi, icon_state = "", frame = 1) + + var/icon/mask_icon = new(mask_dmi, icon_state = "", frame = 1) + + var/icon/output_icon = new /icon() + + var/filename = "output.dmi" + fdel(filename) + + for(var/framenum in 1 to frames) + output_icon = icon(filename) + + var/icon/curr_frame = Apply(source_icon, mask_icon, target_icon, framenum) + output_icon.Insert(curr_frame, "", frame = framenum, delay = duration) + + fcopy(output_icon, filename) + + world << "Finished!" diff --git a/tools/ScrollAnimationAssembler/backgrounds/bg_galaxy_blue.dmi b/tools/ScrollAnimationAssembler/backgrounds/bg_galaxy_blue.dmi new file mode 100644 index 00000000000..fda5a2ea502 Binary files /dev/null and b/tools/ScrollAnimationAssembler/backgrounds/bg_galaxy_blue.dmi differ diff --git a/tools/ScrollAnimationAssembler/backgrounds/bg_galaxy_red.dmi b/tools/ScrollAnimationAssembler/backgrounds/bg_galaxy_red.dmi new file mode 100644 index 00000000000..99c005e2ca6 Binary files /dev/null and b/tools/ScrollAnimationAssembler/backgrounds/bg_galaxy_red.dmi differ diff --git a/tools/ScrollAnimationAssembler/create_scroll.dm b/tools/ScrollAnimationAssembler/create_scroll.dm new file mode 100644 index 00000000000..2f1cec56c16 --- /dev/null +++ b/tools/ScrollAnimationAssembler/create_scroll.dm @@ -0,0 +1,54 @@ +/// Collect user input for the scroll and feed it to Assemble() +/mob/verb/Create_Scroll() + + //Background to construct the scrolling image from + var/background_dmi = input("Pick background DMI:", "Icon") as null|icon + + //Is background a DMI? + if(!(isfile(background_dmi) && (copytext("[background_dmi]",-4) == ".dmi"))) + world << "\red Bad background DMI file '[background_dmi]'" + return + + + //Icon to apply the scrolling animation to + var/foreground_dmi = input("Pick foreground DMI:", "Icon") as null|icon + + //Is foreground a DMI? + if(!(isfile(foreground_dmi) && (copytext("[foreground_dmi]",-4) == ".dmi"))) + world << "\red Bad foreground DMI file '[foreground_dmi]'" + return + + + //Mask icon to define the area of the background to use + var/mask_dmi = input("Pick mask DMI:", "Icon") as null|icon + + //Is mask a DMI? + if(!(isfile(mask_dmi) && (copytext("[mask_dmi]",-4) == ".dmi"))) + world << "\red Bad mask DMI file '[mask_dmi]'" + return + + + //Number of frames + var/frames = input("Number of frames:", "Number") as null|num + + //Is frames an int? + if(!isnum(frames)) + world << "\red Bad frames number '[frames]'" + return + else + if(round(frames) != frames) + world << "\red Non-integer frames number '[frames]'" + return + + + //Duration of each frame + var/duration = input("Frame duration:", "Number") as null|num + + //Is duration a number? + if(!isnum(duration)) + world << "\red Bad frame duration '[duration]'" + return + + + //Inputs look good, proceed + Assemble(background_dmi, foreground_dmi, mask_dmi, frames, duration) diff --git a/tools/ScrollAnimationAssembler/foregrounds/fg_galaxy_suitskirt.dmi b/tools/ScrollAnimationAssembler/foregrounds/fg_galaxy_suitskirt.dmi new file mode 100644 index 00000000000..d06d28888a0 Binary files /dev/null and b/tools/ScrollAnimationAssembler/foregrounds/fg_galaxy_suitskirt.dmi differ diff --git a/tools/ScrollAnimationAssembler/foregrounds/fg_obj_galaxy_suitskirt.dmi b/tools/ScrollAnimationAssembler/foregrounds/fg_obj_galaxy_suitskirt.dmi new file mode 100644 index 00000000000..9f960b93a54 Binary files /dev/null and b/tools/ScrollAnimationAssembler/foregrounds/fg_obj_galaxy_suitskirt.dmi differ diff --git a/tools/ScrollAnimationAssembler/masks/mask_galaxy_suitskirt.dmi b/tools/ScrollAnimationAssembler/masks/mask_galaxy_suitskirt.dmi new file mode 100644 index 00000000000..9e3a814d4e4 Binary files /dev/null and b/tools/ScrollAnimationAssembler/masks/mask_galaxy_suitskirt.dmi differ diff --git a/tools/ScrollAnimationAssembler/masks/mask_obj_galaxy_suitskirt.dmi b/tools/ScrollAnimationAssembler/masks/mask_obj_galaxy_suitskirt.dmi new file mode 100644 index 00000000000..33838cf9987 Binary files /dev/null and b/tools/ScrollAnimationAssembler/masks/mask_obj_galaxy_suitskirt.dmi differ diff --git a/tools/UpdatePaths/Update Paths.bat b/tools/UpdatePaths/Update Paths.bat new file mode 100644 index 00000000000..c126388de7e --- /dev/null +++ b/tools/UpdatePaths/Update Paths.bat @@ -0,0 +1,3 @@ +@echo off +call "%~dp0\..\bootstrap\python" -m UpdatePaths %* +pause diff --git a/tools/UpdatePaths/__main__.py b/tools/UpdatePaths/__main__.py new file mode 100644 index 00000000000..477b1f125ae --- /dev/null +++ b/tools/UpdatePaths/__main__.py @@ -0,0 +1,202 @@ +# A script and syntax for applying path updates to maps. +import re +import os +import sys +import argparse +from mapmerge2 import frontend +from mapmerge2.dmm import * + +desc = """ +Update dmm files given update file/string. +Replacement syntax example: + /turf/open/floor/iron/warningline : /obj/effect/turf_decal {dir = @OLD ;tag = @SKIP;icon_state = @SKIP} + /turf/open/floor/iron/warningline : /obj/effect/turf_decal {@OLD} , /obj/thing {icon_state = @OLD:name; name = "meme"} + /turf/open/floor/iron/warningline{dir=2} : /obj/thing + /obj/effect/landmark/start/virologist : @DELETE + /mob/living{resize = @ANY} : /mob/living{@OLD; resize = @SKIP} +Syntax for subtypes also exist, to update a path's type but maintain subtypes: + /obj/structure/closet/crate/@SUBTYPES : /obj/structure/new_box/@SUBTYPES {@OLD} +New paths properties: + @DELETE - if used as new path name the old path will be deleted + @OLD - if used as property name copies all modified properties from original path to this one + property = @SKIP - will not copy this property through when global @OLD is used. + property = @OLD - will copy this modified property from original object even if global @OLD is not used + property = @OLD:name - will copy [name] property from original object even if global @OLD is not used + Anything else is copied as written. +Old paths properties: + Will be used as a filter. + property = @UNSET - will apply the rule only if the property is not mapedited + property = @ANY - will apply the rule when the property is mapedited, regardless of its value. +""" + +default_map_directory = "../../_maps" +replacement_re = re.compile(r'\s*(?P[^{]*)\s*(\{(?P.*)\})?') + +#urgent todo: replace with actual parser, this is slow as janitor in crit +split_re = re.compile(r'((?:[A-Za-z0-9_\-$]+)\s*=\s*(?:"(?:.+?)"|[^";][^;]*)|@OLD);?') + + +def props_to_string(props): + return "{{{}}}".format(";".join([f"{k} = {v}" for k, v in props.items()])) + + +def string_to_props(propstring, verbose = False): + props = dict() + for raw_prop in re.split(split_re, propstring): + if not raw_prop or raw_prop.strip() == ';': + continue + prop = raw_prop.split('=', maxsplit=1) + props[prop[0].strip()] = prop[1].strip() if len(prop) > 1 else None + if verbose: + print("{0} to {1}".format(propstring, props)) + return props + + +def parse_rep_string(replacement_string, verbose = False): + # translates /blah/blah {meme = "test",} into path,prop dictionary tuple + match = re.match(replacement_re, replacement_string) + path = match['path'] + props = match['props'] + if props: + prop_dict = string_to_props(props, verbose) + else: + prop_dict = dict() + return path.strip(), prop_dict + + +def update_path(dmm_data, replacement_string, verbose=False): + old_path_part, new_path_part = replacement_string.split(':', maxsplit=1) + old_path, old_path_props = parse_rep_string(old_path_part, verbose) + new_paths = list() + for replacement_def in new_path_part.split(','): + new_path, new_path_props = parse_rep_string(replacement_def, verbose) + new_paths.append((new_path, new_path_props)) + + subtypes = "" + if old_path.endswith("/@SUBTYPES"): + old_path = old_path[:-len("/@SUBTYPES")] + if verbose: + print("Looking for subtypes of", old_path) + subtypes = r"(?:/\w+)*" + + replacement_pattern = re.compile(rf"(?P{re.escape(old_path)}(?P{subtypes}))\s*(:?{{(?P.*)}})?$") + + def replace_def(match): + if match['props']: + old_props = string_to_props(match['props'], verbose) + else: + old_props = dict() + for filter_prop in old_path_props: + if filter_prop not in old_props: + if old_path_props[filter_prop] == "@UNSET": + continue + else: + return [match.group(0)] + else: + if old_path_props[filter_prop] == "@ANY": + continue + elif old_props[filter_prop] != old_path_props[filter_prop] or old_path_props[filter_prop] == "@UNSET": + return [match.group(0)] #does not match current filter, skip the change. + if verbose: + print("Found match : {0}".format(match.group(0))) + out_paths = [] + for new_path, new_props in new_paths: + if new_path == "@OLD": + out = match.group('path') + elif new_path == "@DELETE": + if verbose: + print("Deleting match : {0}".format(match.group(0))) + return [None] + elif new_path.endswith("/@SUBTYPES"): + path_start = new_path[:-len("/@SUBTYPES")] + out = path_start + match.group('subtype') + else: + out = new_path + + out_props = dict() + for prop_name, prop_text in new_props.items(): + prop_value = str(prop_text) + if prop_name == "@OLD": + out_props = dict(old_props) + continue + if prop_value == "@SKIP": + out_props.pop(prop_name, None) + continue + if prop_value.startswith("@OLD"): + params = prop_value.split(":") + out_props[prop_name] = old_props[params[1]] if len(params) > 1 else old_props[prop_name] + continue + out_props[prop_name] = prop_value + if out_props: + out += props_to_string(out_props) + out_paths.append(out) + if verbose: + print("Replacing with: {0}".format(out_paths)) + return out_paths + + def get_result(element): + match = replacement_pattern.match(element) + if match: + return replace_def(match) + else: + return [element] + + bad_keys = {} + modified_keys = [] + keys = list(dmm_data.dictionary.keys()) + for definition_key in keys: + def_value = dmm_data.dictionary[definition_key] + new_value = tuple(y for x in def_value for y in get_result(x) if y != None) + if new_value != def_value: + dmm_data.overwrite_key(definition_key, new_value, bad_keys) + modified_keys.append(definition_key) + dmm_data.reassign_bad_keys(bad_keys) + return modified_keys + + +def update_map(map_filepath, updates, verbose=False): + print("Updating: {0}".format(map_filepath)) + dmm_data = DMM.from_file(map_filepath) + modified_keys = [] + for update_string in updates: + modified_keys.extend(update_path(dmm_data, update_string, verbose)) + dmm_data.remove_unused_keys(modified_keys) + dmm_data.to_file(map_filepath) + + +def update_all_maps(map_directory, updates, verbose=False): + for root, _, files in os.walk(map_directory): + for filepath in files: + if filepath.endswith(".dmm"): + path = os.path.join(root, filepath) + update_map(path, updates, verbose) + + +def main(args): + if args.inline: + print("Using replacement:", args.update_source) + updates = [args.update_source] + else: + with open(args.update_source) as f: + updates = [line for line in f if line and not line.startswith("#") and not line.isspace()] + print(f"Using {len(updates)} replacements from file:", args.update_source) + + if args.map: + update_map(args.map, updates, verbose=args.verbose) + else: + map_directory = args.directory or frontend.read_settings().map_folder + update_all_maps(map_directory, updates, verbose=args.verbose) + + +if __name__ == "__main__": + prog = __spec__.name.replace('.__main__', '') + if os.name == 'nt' and len(sys.argv) <= 1: + print("usage: drag-and-drop a path script .txt onto `Update Paths.bat`\n or") + + parser = argparse.ArgumentParser(prog=prog, description=desc, formatter_class=argparse.RawTextHelpFormatter) + parser.add_argument("update_source", help="update file path / line of update notation") + parser.add_argument("--map", "-m", help="path to update, defaults to all maps in maps directory") + parser.add_argument("--directory", "-d", help="path to maps directory, defaults to _maps/") + parser.add_argument("--inline", "-i", help="treat update source as update string instead of path", action="store_true") + parser.add_argument("--verbose", "-v", help="toggle detailed update information", action="store_true") + main(parser.parse_args()) diff --git a/tools/UpdatePaths/readme.md b/tools/UpdatePaths/readme.md new file mode 100644 index 00000000000..3ee01df6248 --- /dev/null +++ b/tools/UpdatePaths/readme.md @@ -0,0 +1,405 @@ +# UpdatePaths + +## How To Use: + +Drag one of the scripts in the “Scripts” folder onto the .bat file “Update Paths” to open it with the `.bat` file (or use the Python script directly depending on your operating system). Let the script run to completion. + +Use this tool before using MapMerge2 or opening the map in an map editor. This is because the map editor may discard any unknown paths not found in the /tg/station environment (or what it builds after parsing `tgmc.dme`). + +## Scriptmaking: + +This tool updates paths in the game to new paths. For instance: + +If you have a path labeled `/obj/structure/door/airlock/science/closed/rd` and wanted it to be `/obj/structure/door/airlock/science/rd/closed`, this tool would update it for you! This is extremely helpful if you want to be nice to people who have to resolve merge conflicts from the PRs that you make updating these areas. + +--- + +### How do I do it? + +Simply create a `.TXT` file and type this on a line: + +#### Tried and True - Part One + +```txt +/obj/structure/door/airlock/science/closed/rd : /obj/structure/door/airlock/science/rd/closed{@OLD} +``` + +The path on the left is the old, the path on the right is the new. It is seperated by a ":" +If you want to make multiple path changes in one script, simply add more changes on new lines. + +Putting `{@OLD}` is important since otherwise, UpdatePaths will automatically discard the old variables attached to the old path. Adding `{@OLD}` to the right-hand side will ensure that every single variable from the old path will be applied to the new path. + +You'll want to save your `.TXT` file with a name that is descriptive of what it does, as well as the associated PR Number to your PR. So, it would look like `PRNUMBER_RD_AIRLOCK_REPATH.txt`. Both of these are for book-keeping purposes, so that intent is clear to anyone who looks at the file. They can also easily reference the PR number that the script was made in to determine _why_ it was made, and if it is still needed. + +--- + +### What does it look like? + +Alright, so we've already made the [script](#tried-and-true---part-one). So, let's say we have this example map key in the [TGM Format](https://hackmd.io/@tgstation/ry4-gbKH5#TGM-Format). + +#### Tried and True - Part Two + +```dm +"a" = ( +/obj/structure/door/airlock/science/closed/rd{ + dir = 4; + name = "RD Airlock" + }, +/turf/open/floor/iron, +/area/science/rd), +``` + +Now, after you drag and drop your script onto the `Update Paths.bat` file, it will look like this: + +```dm +"a" = ( +/obj/structure/door/airlock/science/rd/closed{ + dir = 4; + name = "RD Airlock" + }, +/turf/open/floor/iron, +/area/science/rd), +``` + +It worked! Great! + +--- + +### On Variable Editing + +If you do not want any variable edits to carry over, you can simply skip adding the `{@OLD}` tag. This will make the script change the path, and discard all variables associated to the old path. So, continuing with the same example mentioned above, lets run the following script: + +### Discarding Old Variables + +```txt +/obj/structure/door/airlock/science/closed/rd : /obj/structure/door/airlock/science/rd/closed +``` +On this example map key: + +```dm +"a" = ( +/obj/structure/door/airlock/science/rd/closed{ + dir = 4; + name = "RD Airlock" + }, +/turf/open/floor/iron, +/area/science/rd), +``` +You will then result the following: + + +```dm +"a" = ( +/obj/structure/door/airlock/science/closed/rd, +/turf/open/floor/iron, +/area/science/rd), +``` + +As expected, all variables were discarded. This is only really useful in certain edgecases, and you shouldn't do something like this trivially in case someone has lovably named a variable special since it'll just nuke it. + +There are also a bunch of neat features you can use with UpdatePaths variable filtering, with it all documented here: [https://github.com/tgstation/tgstation/blob/master/tools/UpdatePaths/\_\_main\_\_.py#L9](https://github.com/tgstation/tgstation/blob/master/tools/UpdatePaths/__main__.py#L9). However, let's spin it all out for you here as well: + +### Deleting Entire Paths + +Alright, you did a large refactor and you got rid of some shoddy paths. Great! So, let's make a script to delete that old path from all of our map files. Let's say we want to delete `/mob/living/deez_nuts`. We can do that by simply adding the following to our script: + +```txt +/mob/living/deez_nuts : @DELETE +``` + +So, now when you have the following example map keys: + +```dm +"a" = ( +/turf/open/floor/carpet, +/area/meme_zone), +"b" = ( +/mob/living/deez_nuts{ + goteem = 1; + desc = "these jokes are still funny" + }, +/turf/open/floor/carpet, +/area/meme_zone), +``` + +And you run the script, you will get the following: + +```dm +"a" = ( +/turf/open/floor/carpet, +/area/meme_zone), +``` + +Presto, like it never existed. Note how both the "a" and "b" files were able to combine into the same dictionary key, since the "b" key was deleted entirely, and since "a" and 'b" now matched, UpdatePaths was able to just clean that up for you. It'll also update the map itself to reflect this as well. Now that is something your Search & Replace tool can't do! + +### Multiple Path Output + +UpdatePaths has the powerful ability to output multiple paths from a single input path. Let's say that you have a snowflake turf (`/turf/open/floor/iron/i_like_spawning_mobs`) with some behavior that you atomize out into some spawner `/obj/mob_spawner` that can work on every single turf. So, let's script that out. + +```txt +/turf/open/floor/iron/i_like_spawning_mobs : /obj/mob_spawner, /turf/open/floor/iron +``` +So, now when you have the following example map keys: + +```dm +"a" = ( +/turf/open/floor/iron/i_like_spawning_mobs, +/area/station/kitchen), +``` + +Running the script will mutate this into: + +```dm +"a" = ( +/obj/mob_spawner, +/turf/open/floor/iron, +/area/station/kitchen), +``` +Remember that this is a kind of silly example, but this is one of the things that UpdatePaths was built to do- help coders fix shitty code without having to bug out over how maps don't compile. + +### Subtype Handling + +This is one of UpdatePaths' more recent features. It allows you to specify a generic base path that you've done a major refactor on, and then easily specify the gamut of subtypes you want to swap it to. Let's say you have a `/obj/item/weapon/big_chungus` base path that you want to refactor to `/obj/item/big_chungus`. However, you also have subtypes like `/obj/item/weapon/big_chungus/funny`, `/obj/item/weapon/big_chungus/really_large`, etc. You can do that by simply adding the following to your script: + +```txt +/obj/item/weapon/big_chungus/@SUBTYPES : /obj/item/big_chungus/@SUBTYPES{@OLD} +``` + +So, let's assume we have the following map file: + +```dm +"a" = ( +/obj/item/weapon/big_chungus, +/obj/item/weapon/big_chungus/funny{ + name = "funny big chungus" + }, +/obj/item/weapon/big_chungus/really_large{ + name = "really large big chungus" + }, +/turf/open/floor/iron, +/area/station/maintainence/fore/greater), +``` + +Running the script will update this into: + +```dm +"a" = ( +/obj/item/big_chungus, +/obj/item/big_chungus/funny{ + name = "funny big chungus" + }, +/obj/item/big_chungus/really_large{ + name = "really large big chungus" + }, +/turf/open/floor/iron, +/area/station/maintainence/fore/greater), +``` + +Note how since you kept in `{@OLD}`, it was able to retain the re-named variables of the subtypes. + + +### Old Path Variable Filtering + +Alright, there's a few subsections here. This is how you are able to filter out old paths to ensure you target something precise. Let's just go through them one by one. + +#### Property Filtration (feat. `@SKIP`) + +##### Method: Open Mind To All Possibilities + +Alright, you saw something cool in a map that you wanted to expand upon codeside. So, you make the new path `/mob/living/basic/mouse/tom` with all sorts of nice behavior. However, you don't want to just replace all of the old `/mob/living/basic/mouse` paths with the new one, you want to only replace the ones that have a `name` variable of "Tom". You can do that by simply adding the following to your script: + +```txt +/mob/living/basic/mouse{name="Tom"} : /mob/living/basic/mouse/tom{@OLD;name=@SKIP} +``` + +In this test example, you already set the name of the Mob to "Tom", so you don't need to worry about that, so first you'll insert `@OLD`, because you want to retain all the other variables, and then add `@SKIP` in order to skip adding that variable to the new path. Its important that '@OLD' goes before '@SKIP', otherwise the script won't see the variables to skip and will just keep all of them anyway. So, let's assume we have the following map file: + +```dm +"a" = ( +/mob/living/basic/mouse{ + name = "Tom"; + desc = "A mouse named Tom"; + pixel_x = 12 + }, +/mob/living/basic/mouse{ + name = "Tina"; + pixel_x = -12 + }, +/turf/open/floor/iron, +/area/station/prison), +``` + +Running the script will update this into: + +```dm +"a" = ( +/mob/living/basic/mouse/tom{ + desc = "A mouse named Tom"; + pixel_x = 12 + }, +/mob/living/basic/mouse{ + name = "Tina"; + pixel_x = -12 + }, +/turf/open/floor/iron, +/area/station/prison), +``` + +Notice how since you `@SKIP`'d the name, it doesn't need to re-apply itself, and since you added (the global) `@OLD`, it was able to keep the `desc` and `pixel_x` variable. Also, cute little mouse named Tina goes unfazed through this change. + +--- + +##### Method: I Don't Care About Soulful Var-Edits + +That's cool, but let's say you have this same example, but let's say that you don't want to carry over the `desc` variable either (because you did that code-side). In fact, you don't want to carry over any variables beyond the `pixel_x`. You can choose to only copy over one variable with the following script entry: + +```txt +/mob/living/basic/mouse{name="Tom"} : /mob/living/basic/mouse/tom{pixel_x = @OLD} +``` +The following is also supported, but it's not recommended since it's harder to read because it doesn't really mesh with the TGM format: + +```txt +/mob/living/basic/mouse{name="Tom"} : /mob/living/basic/mouse/tom{@OLD:pixel_x} +``` + +So, let's assume we have the following map file: + +```dm +"a" = ( +/mob/living/basic/mouse{ + name = "Tom"; + desc = "A mouse named Tom"; + pixel_x = -12 + }, +/mob/living/basic/mouse{ + name = "Tina"; + pixel_x = 12 + }, +/turf/open/floor/iron, +/area/station/prison), +``` + +You would then get the following output: + +```dm +"a" = ( +/mob/living/basic/mouse/tom{ + pixel_x = -12 + }, +/mob/living/basic/mouse{ + name = "Tina"; + pixel_x = 12 + }, +/turf/open/floor/iron, +/area/station/prison), +``` + +As you would have wished, only the `pixel_x` variable copied through. This is pretty constraining and might not match up to certain needs of the repository (or other repositories), so recommend using the [first example](#method-open-mind-to-all-possibilities) when possible. + +#### Method: Keep All The Soul! + +Okay, let's say that you want to change all instances of `/obj/structure/sink` that have `dir=2` to `dir=1` for a laugh. However, there's an issue. You see, 2 is SOUTH in DM directions, (1 is NORTH), and code-side, `/obj/structure/sink` has `dir = 2` by default and doesn't show up in the map editor. You would have to do something like this: + +```txt +/obj/structure/sink{@UNSET} : /obj/structure/sink{dir=1} +``` + +`@UNSET` will only apply to the change to paths that do not have any variable edits. So, let's assume we have the following map file: + +```dm +"a" = ( +/obj/structure/sink, +/turf/open/floor/iron, +/area/station/bathroom), +"b" = ( +/obj/structure/sink{ + dir = 8 + name = "Money Hole" + }, +/turf/open/floor/iron, +/area/station/bathroom), +``` + +You would then get the following output: + +```dm +"a" = ( +/obj/structure/sink{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/bathroom), +"b" = ( +/obj/structure/sink{ + dir = 8 + name = "Money Hole" + }, +/turf/open/floor/iron, +/area/station/bathroom), +``` + +Note how we keep the "Money Hole" intact, while still managing to extrapolate the `dir` variable to 1 on the sink that had absolutely no variables set on it. This is useful for when you want to change a variable that is not shown in the map editor, but you want to keep the rest of the variables intact. + +#### Methods: Any Value Fits All and Naming Conventions +But what if you just want to rename the variable `maxHealth` to `good_boy_points` for all instances of `/mob/living/github_user`? Using the `@ANY` parameter after a variable name, you can capture any instance that has it edited in a map. While, to set the value of the newly named `good_boy_points` to that of the old `maxHealth`, we can use `@OLD:maxHealth`, put after the name of the new variable to achieve that. The result'll be something like this: + +```txt +/mob/living/github_user{maxHealth=@ANY} : /mob/living/github_user{good_boy_points=@OLD:maxHealth} +``` + +Though, If you read about the previous methods, you'd know that without the `@OLD` parameter (the one without colon), every other variable edit will also be discarded, so it's important to add that BEFORE any other parament, as well as `maxHealth=@SKIP` following that since we're renaming that variable. So, take two: + +```txt +/mob/living/github_user{maxHealth=@ANY} : /mob/living/github_user{@OLD; maxHealth=@SKIP; good_boy_points=@OLD:maxHealth} +``` + +Perfect, so now let's assume the following map: + +```dm +"a" = ( +/mob/living/basic/mouse{ + maxHealth = 15 + }, +/turf/open/floor/iron, +/area/github), +"b" = ( +/mob/living/github_user{ + name = "ShizCalev"; + desc= "Has more good boy points than a megafauna has health."; + maxHealth = 2083 + }, +/turf/open/floor/iron, +/area/github), +``` + +You would then get the following output: + +```dm +"a" = ( +/mob/living/basic/mouse{ + maxHealth = 15 + }, +/turf/open/floor/iron, +/area/github), +"b" = ( +/mob/living/github_user{ + name = "ShizCalev"; + desc= "Has more good boy points than a megafauna has health."; + good_boy_points = 2083 + }, +/turf/open/floor/iron, +/area/github), +``` + +As an addendum, you don't have to use both `@ANY` and `@OLD:prop_name` together. I'm merely providing a single example for the both of them and their most practical usage. + +### Blend it all together + +All of the examples provided within are not mutually exclusive! They can be mixed-and-matched in several ways (old scripts might have a few good examples of these), and the only limit here is your imagination. You can do some very powerful things with UpdatePaths, with your scripts lasting for years to come. + +## Why should I care? + +UpdatePaths is an incredible valuable tool to the following populations: +- Mappers who have mapping PRs that take a long time to create, and that will need to be updated as progression goes on. Having an UpdatePaths file makes it much more simple to get them to compile their map properly, and not lose paths. +- Downstreams who have additional maps to the ones we have. You obviously can't Search & Replace fix for a whole downstream, but you can give them the ammunition (UpdatePaths script) for them to quickly and easily resolve that problem. +- You! As you've seen, you can do a lot of clever and powerful tools that respect the TGM format, from Old Path Filtering to Multiple Path Output- and you can do it all with a simple text file! Otherwise, you would be stuck in absolute RegEx hell, and still end up missing on several potential edge cases. UpdatePaths is built on the same framework that builds the TGM format, so it's incredibly reliable in finding and replacing paths. diff --git a/tools/WebhookProcessor/secret.php b/tools/WebhookProcessor/secret.php index 238239d589c..57773bffa16 100644 --- a/tools/WebhookProcessor/secret.php +++ b/tools/WebhookProcessor/secret.php @@ -1,36 +1,27 @@ { const folders = [ @@ -58,33 +69,42 @@ export const DmMapsIncludeTarget = new Juke.Target({ }); export const DmTarget = new Juke.Target({ - parameters: [DefineParameter, WarningParameter], + parameters: [DefineParameter, DmVersionParameter, WarningParameter, NoWarningParameter], dependsOn: ({ get }) => [ get(DefineParameter).includes('ALL_MAPS') && DmMapsIncludeTarget, ], inputs: [ '_maps/map_files/generic/**', + 'maps/**/*.dm', 'code/**', 'html/**', 'icons/**', 'interface/**', 'modular_RUtgmc/**', `${DME_NAME}.dme`, + NamedVersionFile, ], - outputs: [ - `${DME_NAME}.dmb`, - `${DME_NAME}.rsc`, - ], + outputs: ({ get }) => { + if (get(DmVersionParameter)) { + return []; // Always rebuild when dm version is provided + } + return [ + `${DME_NAME}.dmb`, + `${DME_NAME}.rsc`, + ] + }, executes: async ({ get }) => { await DreamMaker(`${DME_NAME}.dme`, { defines: ['CBT', ...get(DefineParameter)], warningsAsErrors: get(WarningParameter).includes('error'), + ignoreWarningCodes: get(NoWarningParameter), + namedDmVersion: get(DmVersionParameter), }); }, }); export const DmTestTarget = new Juke.Target({ - parameters: [DefineParameter, WarningParameter], + parameters: [DefineParameter, DmVersionParameter, WarningParameter, NoWarningParameter], dependsOn: ({ get }) => [ get(DefineParameter).includes('ALL_MAPS') && DmMapsIncludeTarget, ], @@ -93,10 +113,16 @@ export const DmTestTarget = new Juke.Target({ await DreamMaker(`${DME_NAME}.test.dme`, { defines: ['CBT', 'CIBUILDING', ...get(DefineParameter)], warningsAsErrors: get(WarningParameter).includes('error'), + ignoreWarningCodes: get(NoWarningParameter), + namedDmVersion: get(DmVersionParameter), }); Juke.rm('data/logs/ci', { recursive: true }); + const options = { + dmbFile : `${DME_NAME}.test.dmb`, + namedDmVersion: get(DmVersionParameter), + } await DreamDaemon( - `${DME_NAME}.test.dmb`, + options, '-close', '-trusted', '-verbose', '-params', 'log-directory=ci' ); @@ -112,6 +138,43 @@ export const DmTestTarget = new Juke.Target({ }, }); +export const AutowikiTarget = new Juke.Target({ + parameters: [DefineParameter, DmVersionParameter, WarningParameter, NoWarningParameter], + dependsOn: ({ get }) => [ + get(DefineParameter).includes('ALL_MAPS') && DmMapsIncludeTarget, + ], + outputs: [ + 'data/autowiki_edits.txt', + ], + executes: async ({ get }) => { + fs.copyFileSync(`${DME_NAME}.dme`, `${DME_NAME}.test.dme`); + await DreamMaker(`${DME_NAME}.test.dme`, { + defines: ['CBT', 'AUTOWIKI', ...get(DefineParameter)], + warningsAsErrors: get(WarningParameter).includes('error'), + ignoreWarningCodes: get(NoWarningParameter), + namedDmVersion: get(DmVersionParameter), + }); + Juke.rm('data/autowiki_edits.txt'); + Juke.rm('data/autowiki_files', { recursive: true }); + Juke.rm('data/logs/ci', { recursive: true }); + + const options = { + dmbFile: `${DME_NAME}.test.dmb`, + namedDmVersion: get(DmVersionParameter), + } + await DreamDaemon( + options, + '-close', '-trusted', '-verbose', + '-params', 'log-directory=ci', + ); + Juke.rm('*.test.*'); + if (!fs.existsSync('data/autowiki_edits.txt')) { + Juke.logger.error('Autowiki did not generate an output, exiting'); + throw new Juke.ExitCode(1); + } + }, +}) + export const YarnTarget = new Juke.Target({ parameters: [CiParameter], inputs: [ @@ -151,7 +214,7 @@ export const TguiTarget = new Juke.Target({ 'tgui/.yarn/install-target', 'tgui/webpack.config.js', 'tgui/**/package.json', - 'tgui/packages/**/*.+(js|cjs|ts|tsx|scss)', + 'tgui/packages/**/*.+(js|cjs|ts|tsx|jsx|scss)', ], outputs: [ 'tgui/public/tgui.bundle.css', @@ -223,10 +286,15 @@ export const BuildTarget = new Juke.Target({ }); export const ServerTarget = new Juke.Target({ + parameters: [DmVersionParameter, PortParameter], dependsOn: [BuildTarget], executes: async ({ get }) => { const port = get(PortParameter) || '1337'; - await DreamDaemon(`${DME_NAME}.dmb`, port, '-trusted'); + const options = { + dmbFile: `${DME_NAME}.dmb`, + namedDmVersion: get(DmVersionParameter), + } + await DreamDaemon(options, port, '-trusted'); }, }); @@ -252,8 +320,6 @@ export const CleanTarget = new Juke.Target({ dependsOn: [TguiCleanTarget], executes: async () => { Juke.rm('*.{dmb,rsc}'); - Juke.rm('*.mdme*'); - Juke.rm('*.m.*'); Juke.rm('_maps/templates.dm'); }, }); diff --git a/tools/build/lib/byond.js b/tools/build/lib/byond.js index e7bce2cf8ba..e4809e3e9a7 100644 --- a/tools/build/lib/byond.js +++ b/tools/build/lib/byond.js @@ -8,7 +8,11 @@ import { regQuery } from './winreg.js'; */ let dmPath; -const getDmPath = async () => { +const getDmPath = async (namedVersion) => { + // Use specific named version + if(namedVersion) { + return getNamedByondVersionPath(namedVersion); + } if (dmPath) { return dmPath; } @@ -16,6 +20,7 @@ const getDmPath = async () => { // Search in array of paths const paths = [ ...((process.env.DM_EXE && process.env.DM_EXE.split(',')) || []), + ...getDefaultNamedByondVersionPath(), 'C:\\Program Files\\BYOND\\bin\\dm.exe', 'C:\\Program Files (x86)\\BYOND\\bin\\dm.exe', ['reg', 'HKLM\\Software\\Dantom\\BYOND', 'installpath'], @@ -58,15 +63,69 @@ const getDmPath = async () => { return dmPath; }; + + +const getNamedByondVersionPath = (namedVersion) =>{ + const all_entries = getAllNamedDmVersions(true) + const map_entry = all_entries.find(x => x.name === namedVersion); + if(map_entry === undefined){ + Juke.logger.error(`No named byond version with name "${namedVersion}" found.`); + throw new Juke.ExitCode(1); + } + return map_entry.path; +} + +const getDefaultNamedByondVersionPath = () =>{ + const all_entries = getAllNamedDmVersions(false) + const map_entry = all_entries.find(x => x.default == true); + if(map_entry === undefined) + return [] + return [map_entry.path]; +} + + +/** @type {[{ name, path, default }]} */ +let namedDmVersionList; +export const NamedVersionFile = "tools/build/dm_versions.json" + +const getAllNamedDmVersions = (throw_on_fail) => { + if(!namedDmVersionList){ + if(!fs.existsSync(NamedVersionFile)){ + if(throw_on_fail){ + Juke.logger.error(`No byond version map file found.`); + throw new Juke.ExitCode(1); + } + namedDmVersionList = [] + return namedDmVersionList; + } + try{ + namedDmVersionList = JSON.parse(fs.readFileSync(NamedVersionFile)); + } + catch(err){ + if(throw_on_fail){ + Juke.logger.error(`Failed to parse byond version map file. ${err}`); + throw new Juke.ExitCode(1); + } + namedDmVersionList = [] + return namedDmVersionList; + } + } + return namedDmVersionList; +} + /** * @param {string} dmeFile * @param {{ * defines?: string[]; * warningsAsErrors?: boolean; + * namedDmVersion?: string; * }} options */ export const DreamMaker = async (dmeFile, options = {}) => { - const dmPath = await getDmPath(); + if(options.namedDmVersion !== null){ + Juke.logger.info('Using named byond version:', options.namedDmVersion); + } + const dmPath = await getDmPath(options.namedDmVersion); // Get project basename const dmeBaseName = dmeFile.replace(/\.dme$/, ''); // Make sure output files are writable @@ -86,11 +145,32 @@ export const DreamMaker = async (dmeFile, options = {}) => { throw err; } }; + + const testDmVersion = async (dmPath) => { + const execReturn = await Juke.exec(dmPath, [], { silent: true, throw: false }); + const version = execReturn.combined.match(`DM compiler version (\\d+)\\.(\\d+)`) + if(version == null){ + Juke.logger.error(`Unexpected DreamMaker return, ensure "${dmPath}" is correct DM path.`) + throw new Juke.ExitCode(1); + } + const requiredMajorVersion = 515; + const requiredMinorVersion = 1597 // First with -D switch functionality + const major = Number(version[1]); + const minor = Number(version[2]); + if(major < requiredMajorVersion || major == requiredMajorVersion && minor < requiredMinorVersion){ + Juke.logger.error(`${requiredMajorVersion}.${requiredMinorVersion} or later DM version required. Version ${major}.${minor} found at: ${dmPath}`) + throw new Juke.ExitCode(1); + } + } + + await testDmVersion(dmPath); testOutputFile(`${dmeBaseName}.dmb`); testOutputFile(`${dmeBaseName}.rsc`); - const runWithWarningChecks = async (dmeFile, args) => { - const execReturn = await Juke.exec(dmeFile, args); - if (options.warningsAsErrors && execReturn.combined.match(/\d+:warning: /)) { + const runWithWarningChecks = async (dmPath, args) => { + const execReturn = await Juke.exec(dmPath, args); + const ignoredWarningCodes = options.ignoreWarningCodes ?? []; + const reg = ignoredWarningCodes.length > 0 ? new RegExp(`\d+:warning: (?!(${ignoredWarningCodes.join('|')}))`) : /\d+:warning: /; + if (options.warningsAsErrors && execReturn.combined.match(reg)) { Juke.logger.error(`Compile warnings treated as errors`); throw new Juke.ExitCode(2); } @@ -100,30 +180,22 @@ export const DreamMaker = async (dmeFile, options = {}) => { const { defines } = options; if (defines && defines.length > 0) { Juke.logger.info('Using defines:', defines.join(', ')); - try { - const injectedContent = defines - .map(x => `#define ${x}\n`) - .join(''); - fs.writeFileSync(`${dmeBaseName}.m.dme`, injectedContent); - const dmeContent = fs.readFileSync(`${dmeBaseName}.dme`); - fs.appendFileSync(`${dmeBaseName}.m.dme`, dmeContent); - await runWithWarningChecks(dmPath, [`${dmeBaseName}.m.dme`]); - fs.writeFileSync(`${dmeBaseName}.dmb`, fs.readFileSync(`${dmeBaseName}.m.dmb`)); - fs.writeFileSync(`${dmeBaseName}.rsc`, fs.readFileSync(`${dmeBaseName}.m.rsc`)); - } - finally { - Juke.rm(`${dmeBaseName}.m.*`); - } - } - else { - await runWithWarningChecks(dmPath, [dmeFile]); + } + await runWithWarningChecks(dmPath, [...defines.map(def => `-D${def}`), dmeFile]); }; -export const DreamDaemon = async (dmbFile, ...args) => { - const dmPath = await getDmPath(); + +/** +* @param {{ +* dmbFile: string; +* namedDmVersion?: string; +* }} options +*/ +export const DreamDaemon = async (options, ...args) => { + const dmPath = await getDmPath(options.namedDmVersion); const baseDir = path.dirname(dmPath); const ddExeName = process.platform === 'win32' ? 'dreamdaemon.exe' : 'DreamDaemon'; const ddExePath = baseDir === '.' ? ddExeName : path.join(baseDir, ddExeName); - return Juke.exec(ddExePath, [dmbFile, ...args]); + return Juke.exec(ddExePath, [options.dmbFile, ...args]); }; diff --git a/tools/ci/annotate_dm.sh b/tools/ci/annotate_dm.sh new file mode 100644 index 00000000000..e43f930ba1a --- /dev/null +++ b/tools/ci/annotate_dm.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +set -euo pipefail +tools/bootstrap/python -m dm_annotator "$@" diff --git a/tools/ci/annotate_od.sh b/tools/ci/annotate_od.sh new file mode 100644 index 00000000000..12390908074 --- /dev/null +++ b/tools/ci/annotate_od.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +set -euo pipefail +tools/bootstrap/python -m od_annotator "$@" diff --git a/tools/ci/check_filedirs.sh b/tools/ci/check_filedirs.sh index 30df015763e..59f05d5f5be 100644 --- a/tools/ci/check_filedirs.sh +++ b/tools/ci/check_filedirs.sh @@ -3,13 +3,13 @@ if [ -n "$1" ] then dme=$1 else - echo "Specify a DME to check" + echo "ERROR: Specify a DME to check" exit 1 fi if [[ $(awk '/BEGIN_FILE_DIR/{flag=1;next}/END_FILE_DIR/{flag=0}flag' $dme | wc -l) -ne 1 ]] then - echo "File DIR was ticked, please untick it, see: https://tgstation13.org/phpBB/viewtopic.php?f=5&t=321 for more" + echo "ERROR: File DIR was ticked, please untick it, see: https://tgstation13.org/phpBB/viewtopic.php?f=5&t=321 for more" exit 1 fi diff --git a/tools/ci/check_grep.sh b/tools/ci/check_grep.sh index 256e70be81e..4dea23b488b 100644 --- a/tools/ci/check_grep.sh +++ b/tools/ci/check_grep.sh @@ -2,102 +2,139 @@ set -euo pipefail #nb: must be bash to support shopt globstar -shopt -s globstar +shopt -s globstar extglob + +#ANSI Escape Codes for colors to increase contrast of errors +RED="\033[0;31m" +GREEN="\033[0;32m" +BLUE="\033[0;34m" +NC="\033[0m" # No Color + + +# check for ripgrep +if command -v rg >/dev/null 2>&1; then + grep=rg + pcre2_support=1 + if [ ! rg -P '' >/dev/null 2>&1 ] ; then + pcre2_support=0 + fi + code_files="code/**/**.dm" + map_files="_maps/**/**.dmm" + code_x_515="code/**/!(__byond_version_compat).dm" +else + pcre2_support=0 + grep=grep + code_files="-r --include=code/**/**.dm" + map_files="-r --include=_maps/**/**.dmm" + code_x_515="-r --include=code/**/!(__byond_version_compat).dm" +fi + +echo -e "${BLUE}Using grep provider at $(which $grep)${NC}" + +part=0 +section() { + echo -e "${BLUE}Checking for $1${NC}..." + part=0 +} + +part() { + part=$((part+1)) + padded=$(printf "%02d" $part) + echo -e "${GREEN} $padded- $1${NC}" +} st=0 echo "Checking for TGM formatting" -if grep -El '^\".+\" = \(.+\)' _maps/**/*.dmm; then +if grep -El '^\".+\" = \(.+\)' $map_files; then echo "Non-TGM formatted map detected. Please convert it using Map Merger!" st=1 fi; echo "Checking for mapping tags" -if grep -nP '^\ttag = \"icon' _maps/**/*.dmm; then +if grep -nP '^\ttag = \"icon' $map_files; then echo "tag vars from icon state generation detected in maps, please remove them." st=1 fi; + + echo "Checking for unmanaged globals" -if grep -nP '^/*var/' code/**/*.dm; then +if grep -nP '^/*var/' $code_files; then echo "Unmanaged global var use detected in code, please use the helpers." st=1 fi; echo "Checking for src changing" -if grep -nP '^\t+src = ' code/**/*.dm; then +if grep -nP '^\t+src = ' $code_files; then echo "Illegal src change detected, please amend" st=1 fi; echo "Checking for 0 length timers" -if grep -nP 'addtimer\(.+?, ?0\)($| |/)' code/**/*.dm; then +if grep -nP 'addtimer\(.+?, ?0\)($| |/)' $code_files; then echo "Default timer type with no length detected. Please add the correct flags or use the async macro call" st=1 fi; echo "Checking for default return value returns" -if grep -nP '^\s*return \.\s*\n' code/**/*.dm; then +if grep -nP '^\s*return \.\s*\n' $code_files; then echo "Default return value return detected" st=1 fi; echo "Checking for space indentation" -if grep -nP '(^ {2})|(^ [^ * ])|(^ +)' code/**/*.dm; then +if grep -nP '(^ {2})|(^ [^ * ])|(^ +)' $code_files; then echo "space indentation detected" st=1 fi; echo "Checking for mixed indentation" -if grep -nP '^\t+ [^ *]' code/**/*.dm; then +if grep -nP '^\t+ [^ *]' $code_files; then echo "mixed indentation detected" st=1 fi; echo "Checking long list formatting" -if pcregrep -nM '^(\t)[\w_]+ = list\(\n\1\t{2,}' code/**/*.dm; then +if grep -nPzo '^(\t)[\w_]+ = list\(\n\1\t{2,}' $code_files; then echo "long list overidented, should be two tabs" st=1 fi; -if pcregrep -nM '^(\t)[\w_]+ = list\(\n\1\S' code/**/*.dm; then +if grep -nPzo '^(\t)[\w_]+ = list\(\n\1\S' $code_files; then echo "long list underindented, should be two tabs" st=1 fi; -if pcregrep -nM '^(\t)[\w_]+ = list\([^\s)]+( ?= ?[\w\d]+)?,\n' code/**/*.dm; then +if grep -nPzo '^(\t)[\w_]+ = list\([^\s)]+( ?= ?[\w\d]+)?,\n' $code_files; then echo "first item in a long list should be on the next line" st=1 fi; -if pcregrep -nM '^(\t)[\w_]+ = list\(\n(\1\t\S+( ?= ?[\w\d]+)?,\n)*\1\t[^\s,)]+( ?= ?[\w\d]+)?\n' code/**/*.dm; then +if grep -nPzo '^(\t)[\w_]+ = list\(\n(\1\t\S+( ?= ?[\w\d]+)?,\n)*\1\t[^\s,)]+( ?= ?[\w\d]+)?\n' $code_files; then echo "last item in a long list should still have a comma" st=1 fi; -if pcregrep -nM '^(\t)[\w_]+ = list\(\n(\1\t[^\s)]+( ?= ?[\w\d]+)?,\n)*\1\t[^\s)]+( ?= ?[\w\d]+)?\)' code/**/*.dm; then +if grep -nPzo '^(\t)[\w_]+ = list\(\n(\1\t[^\s)]+( ?= ?[\w\d]+)?,\n)*\1\t[^\s)]+( ?= ?[\w\d]+)?\)' $code_files; then echo ") in a long list should be on a new line" st=1 fi; -if pcregrep -nM '^(\t)[\w_]+ = list\(\n(\1\t[^\s)]+( ?= ?[\w\d]+)?,\n)+\1\t\)' code/**/*.dm; then +if grep -nPzo '^(\t)[\w_]+ = list\(\n(\1\t[^\s)]+( ?= ?[\w\d]+)?,\n)+\1\t\)' $code_files; then echo "the ) in a long list should match identation of the opening list line" st=1 fi; -nl=' -' -nl=$'\n' -while read f; do - t=$(tail -c2 $f; printf x); r1="${nl}$"; r2="${nl}${r1}" - if [[ ! ${t%x} =~ $r1 ]]; then - echo "file $f is missing a trailing newline" - st=1 - fi; -done < <(find . -type f -name '*.dm') -if grep -nP '^/[\w/]\S+\(.*(var/|, ?var/.*).*\)' code/**/*.dm; then + +if $grep -PU '[^\n]$(?!\n)' $code_files; then + echo + echo -e "${RED}ERROR: File(s) with no trailing newline detected, please add one.${NC}" + st=1 +fi +if grep -nP '^/[\w/]\S+\(.*(var/|, ?var/.*).*\)' $code_files; then echo "changed files contains proc argument starting with 'var'" st=1 fi; -if grep -ni 'centcomm' code/**/*.dm; then +if grep -ni 'centcomm' $code_files; then echo "Misspelling(s) of CENTCOM detected in code, please remove the extra M(s)." st=1 fi; -if grep -ni 'centcomm' _maps/**/*.dmm; then +if grep -ni 'centcomm' $map_files; then echo "Misspelling(s) of CENTCOM detected in maps, please remove the extra M(s)." st=1 fi; -if grep -ni 'nanotransen' code/**/*.dm; then +if grep -ni 'nanotransen' $code_files; then echo "Misspelling(s) of nanotrasen detected in code, please remove the extra N(s)." st=1 fi; -if grep -ni 'nanotransen' _maps/**/*.dmm; then +if grep -ni 'nanotransen' $map_files; then echo "Misspelling(s) of nanotrasen detected in maps, please remove the extra N(s)." st=1 fi; @@ -116,7 +153,7 @@ do done # Check for non-515 compatable .proc/ syntax -if grep -P --exclude='__byond_version_compat.dm' '\.proc/' code/**/*.dm; then +if grep -P --exclude='__byond_version_compat.dm' '\.proc/' $code_x_515; then echo "ERROR: Outdated proc reference use detected in code, please use proc reference helpers." st=1 fi; diff --git a/tools/ci/ci_dependencies.sh b/tools/ci/ci_dependencies.sh new file mode 100644 index 00000000000..fd1bee5ea88 --- /dev/null +++ b/tools/ci/ci_dependencies.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +#Project dependencies file +#Contains versions of programs that we might need to install for CI purposes - do not add anything here that is REQUIRED to run the project, this is just for CI. + +export RIPGREP_VERSION=14.0.3 diff --git a/tools/ci/install_byond.sh b/tools/ci/install_byond.sh index 4a688755d3d..9108bde5ebe 100644 --- a/tools/ci/install_byond.sh +++ b/tools/ci/install_byond.sh @@ -1,7 +1,10 @@ #!/bin/bash set -euo pipefail -source dependencies.sh +# BYOND_MAJOR and BYOND_MINOR can be explicitly set, such as in alt_byond_versions.txt +if [ -z "${BYOND_MAJOR+x}" ]; then + source dependencies.sh +fi if [ -d "$HOME/BYOND/byond/bin" ] && grep -Fxq "${BYOND_MAJOR}.${BYOND_MINOR}" $HOME/BYOND/version.txt; then diff --git a/tools/ci/install_pcregrep.sh b/tools/ci/install_pcregrep.sh deleted file mode 100644 index ab774d38056..00000000000 --- a/tools/ci/install_pcregrep.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash -set -euo pipefail - -source dependencies.sh - -curl --output ./pcregrep.deb http://archive.ubuntu.com/ubuntu/pool/universe/p/pcre3/pcregrep_8.39-12build1_amd64.deb -sudo apt -qq install -y ./pcregrep.deb diff --git a/tools/ci/install_ripgrep.sh b/tools/ci/install_ripgrep.sh new file mode 100644 index 00000000000..455027d93a6 --- /dev/null +++ b/tools/ci/install_ripgrep.sh @@ -0,0 +1,6 @@ +#!/bin/bash +set -euo pipefail + +source tools/ci/ci_dependencies.sh + +cargo install ripgrep --features pcre2 --version $RIPGREP_VERSION diff --git a/tools/ci/od_lints.dm b/tools/ci/od_lints.dm new file mode 100644 index 00000000000..e339f5acb2d --- /dev/null +++ b/tools/ci/od_lints.dm @@ -0,0 +1,33 @@ +//1000-1999 +#pragma FileAlreadyIncluded error +#pragma MissingIncludedFile error +#pragma MisplacedDirective error +#pragma UndefineMissingDirective error +#pragma DefinedMissingParen error +#pragma ErrorDirective error +#pragma WarningDirective warning +#pragma MiscapitalizedDirective error + +//2000-2999 +#pragma SoftReservedKeyword error +#pragma DuplicateVariable error +#pragma DuplicateProcDefinition error +#pragma TooManyArguments error +#pragma PointlessParentCall error +#pragma PointlessBuiltinCall error +#pragma SuspiciousMatrixCall error +#pragma FallbackBuiltinArgument error +#pragma MalformedRange error +#pragma InvalidRange error +#pragma InvalidSetStatement error +#pragma InvalidOverride error +#pragma DanglingVarType error +#pragma MissingInterpolatedExpression error +#pragma AmbiguousResourcePath error + +//3000-3999 +#pragma EmptyBlock error +#pragma EmptyProc disabled +#pragma UnsafeClientAccess disabled +#pragma SuspiciousSwitchCase error +#pragma AssignmentInConditional error diff --git a/tools/ci/run_server.sh b/tools/ci/run_server.sh index 4f5d1e2d05e..511f5e066c4 100644 --- a/tools/ci/run_server.sh +++ b/tools/ci/run_server.sh @@ -1,15 +1,22 @@ #!/bin/bash set -euo pipefail +MAP=$1 + +echo Testing $MAP + tools/deploy.sh ci_test mkdir ci_test/config +mkdir ci_test/data #test config cp tools/ci/ci_config.txt ci_test/config/config.txt +#set the map +cp _maps/$MAP.json ci_test/data/next_map.json + cd ci_test DreamDaemon tgmc.dmb -close -trusted -verbose -params "log-directory=ci" + cd .. cat ci_test/data/logs/ci/clean_run.lk -cp config/maps.txt ci_test/config/maps.txt -cp config/shipmaps.txt ci_test/config/shipmaps.txt diff --git a/tools/define_sanity/check.py b/tools/define_sanity/check.py new file mode 100644 index 00000000000..fbbbb170fff --- /dev/null +++ b/tools/define_sanity/check.py @@ -0,0 +1,104 @@ +import fnmatch +import glob +import os +import re +import sys + +parent_directory = "code/**/*.dm" + +output_file_name = "define_sanity_output.txt" +how_to_fix_message = "Please #undef the above defines or remake them as global defines in the code/__DEFINES directory." + +def green(text): + return "\033[32m" + str(text) + "\033[0m" + +def red(text): + return "\033[31m" + str(text) + "\033[0m" + +def blue(text): + return "\033[34m" + str(text) + "\033[0m" + +def post_error(define_name, file, github_error_style): + if github_error_style: + print(f"::error file={file},title=Define Sanity::{define_name} is defined locally in {file} but not undefined locally!") + else: + print(red(f"- Failure: {define_name} is defined locally in {file} but not undefined locally!")) + +# simple way to check if we're running on github actions, or on a local machine +on_github = os.getenv("GITHUB_ACTIONS") == "true" + +# This files/directories are expected to have "global" defines, so they must be exempt from this check. +# Add directories as string here to automatically be exempt in case you have a non-complaint file name. +excluded_files = [ + # Wildcard directories, all files are expected to be exempt. + "code/__DEFINES/*.dm", + "code/__HELPERS/*.dm", + "code/_globalvars/*.dm", + # TGS files come from another repository so lets not worry about them. + "code/modules/tgs/**/*.dm", +] + +define_regex = re.compile(r"(\s+)?#define\s?([A-Z0-9_]+)\(?(.+)\)?") + +files_to_scan = [] + +number_of_defines = 0 + +if not on_github: + print(blue(f"Running define sanity check outside of Github Actions.\nFor assistance, a '{output_file_name}' file will be generated at the root of your directory if any errors are detected.")) + +for code_file in glob.glob(parent_directory, recursive=True): + exempt_file = False + for exempt_directory in excluded_files: + if fnmatch.fnmatch(code_file, exempt_directory): + exempt_file = True + break + + if exempt_file: + continue + + # If the "base path" of the file starts with an underscore, it's assumed to be an encapsulated file holding references to the other files in its folder and is exempt from the checks. + if os.path.basename(code_file)[0] == "_": + continue + + files_to_scan.append(code_file) + +located_error_tuples = [] + +for applicable_file in files_to_scan: + with open(applicable_file, encoding="utf8") as file: + file_contents = file.read() + for define in define_regex.finditer(file_contents): + number_of_defines += 1 + define_name = define.group(2) + if not re.search("#undef\s" + define_name, file_contents): + located_error_tuples.append((define_name, applicable_file)) + +if number_of_defines == 0: + print(red("No defines found! This is likely an error.")) + sys.exit(1) + +if number_of_defines <= 1000: + print(red(f"Only found {number_of_defines} defines! Something has likely gone wrong as the number of local defines should not be this low.")) + sys.exit(1) + +if len(located_error_tuples): + + string_list = [] + for error in located_error_tuples: + if not on_github: + post_error(error[0], error[1], False) + string_list.append(f"{error[0]} is defined locally in {error[1]} but not undefined locally!") + else: + post_error(error[0], error[1], True) + + if len(string_list): + with open(output_file_name, "w") as output_file: + output_file.write("\n".join(string_list)) + output_file.write("\n\n" + how_to_fix_message) + + print(red(how_to_fix_message)) + sys.exit(1) + +else: + print(green(f"No unhandled local defines found (found {number_of_defines} defines).")) diff --git a/tools/dm_annotator/__main__.py b/tools/dm_annotator/__main__.py new file mode 100644 index 00000000000..4948fd08656 --- /dev/null +++ b/tools/dm_annotator/__main__.py @@ -0,0 +1,51 @@ +import sys +import re +import os.path as path + +# Usage: tools/bootstrap/python -m dm_annotator [filename] +# If filename is not provided, stdin is checked instead + +def red(text): + return "\033[31m" + str(text) + "\033[0m" + +def green(text): + return "\033[32m" + str(text) + "\033[0m" + +def yellow(text): + return "\033[33m" + str(text) + "\033[0m" + +def annotate(raw_output): + # Remove ANSI escape codes + raw_output = re.sub(r'(\x9B|\x1B\[)[0-?]*[ -\/]*[@-~]', '', raw_output) + + print("::group::DreamChecker Output") + print(raw_output) + print("::endgroup::") + + annotation_regex = r'(?P.*?), line (?P\d+), column (?P\d+):\s{1,2}(?Perror|warning): (?P.*)' + has_issues = False + + print("DM Code Annotations:") + for annotation in re.finditer(annotation_regex, raw_output): + print(f"::{annotation['type']} file={annotation['filename']},line={annotation['line']},col={annotation['column']}::{annotation['message']}") + has_issues = True + + if not has_issues: + print(green("No DM issues found")) + +def main(): + if len(sys.argv) > 1: + if not path.exists(sys.argv[1]): + print(red(f"Error: Annotations file '{sys.argv[1]}' does not exist")) + sys.exit(1) + with open(sys.argv[1], 'r') as f: + annotate(f.read()) + elif not sys.stdin.isatty(): + annotate(sys.stdin.read()) + else: + print(red("Error: No input provided")) + print("Usage: tools/bootstrap/python -m dm_annotator [filename]") + sys.exit(1) + +if __name__ == '__main__': + main() diff --git a/tools/dmi/__init__.py b/tools/dmi/__init__.py index cdf28463bcd..4c3ef221370 100644 --- a/tools/dmi/__init__.py +++ b/tools/dmi/__init__.py @@ -124,7 +124,6 @@ def get_state(self, name): if state.name == name: return state raise KeyError(name) - return self.default_state def _assemble_comment(self): comment = "# BEGIN DMI\n" diff --git a/tools/dmifonts/DmiFonts.exe b/tools/dmifonts/DmiFonts.exe new file mode 100644 index 00000000000..ce1d694147a Binary files /dev/null and b/tools/dmifonts/DmiFonts.exe differ diff --git a/tools/maplint/lints/merge_conflict_marker.yml b/tools/maplint/lints/merge_conflict_marker.yml new file mode 100644 index 00000000000..bdece05597e --- /dev/null +++ b/tools/maplint/lints/merge_conflict_marker.yml @@ -0,0 +1,5 @@ +help: + This means you didn't clean up any potential merge conflicts, + make sure everything in that area is correct. +/obj/merge_conflict_marker: + banned: true diff --git a/tools/maplint/source/lint.py b/tools/maplint/source/lint.py index 4af9ad5c1cf..ee86d29be52 100644 --- a/tools/maplint/source/lint.py +++ b/tools/maplint/source/lint.py @@ -66,7 +66,13 @@ def __init__(self, typepath, data = {}): def matches(self, identified: Content, neighbor: Content): if self.identical: - return neighbor == identified + if identified.path != neighbor.path: + return False + + if identified.var_edits != neighbor.var_edits: + return False + + return True if self.typepath is not None: if self.typepath.matches_path(neighbor.path): diff --git a/tools/mapmerge2/__init__.py b/tools/mapmerge2/__init__.py new file mode 100644 index 00000000000..283eef7d356 --- /dev/null +++ b/tools/mapmerge2/__init__.py @@ -0,0 +1 @@ +# Needed for python imports diff --git a/tools/mapmerge2/convert.py b/tools/mapmerge2/convert.py index 35fa606834c..63fe8cbb9a0 100644 --- a/tools/mapmerge2/convert.py +++ b/tools/mapmerge2/convert.py @@ -4,4 +4,4 @@ if __name__ == '__main__': settings = frontend.read_settings() for fname in frontend.process(settings, "convert"): - dmm.DMM.from_file(fname).to_file(fname, settings.tgm) + dmm.DMM.from_file(fname).to_file(fname, tgm = settings.tgm) diff --git a/tools/mapmerge2/dmm.py b/tools/mapmerge2/dmm.py index 2d87cfc1724..bc12a39b355 100644 --- a/tools/mapmerge2/dmm.py +++ b/tools/mapmerge2/dmm.py @@ -58,7 +58,7 @@ def set_tile(self, coord, tile): self.grid[coord] = self.get_or_generate_key(tile) def generate_new_key(self): - free_keys = self._ensure_free_keys(1) + self._ensure_free_keys(1) max_key = max_key_for(self.key_length) # choose one of the free keys at random key = random.randint(0, max_key - 1) @@ -83,11 +83,19 @@ def reassign_bad_keys(self, bad_keys): # reassign the grid entries which used the old key self.grid[k] = bad_keys.get(v, v) + def remove_unused_keys(self, modified_keys = None): + unused_keys = list(set(modified_keys)) if modified_keys is not None else self.dictionary.keys() + for key in self.grid.values(): + if key in unused_keys: + unused_keys.remove(key) + for key in unused_keys: + del self.dictionary[key] + def _presave_checks(self): # last-second handling of bogus keys to help prevent and fix broken maps self._ensure_free_keys(0) max_key = max_key_for(self.key_length) - bad_keys = {key: 0 for key in self.dictionary.keys() if key > max_key} + bad_keys = {key: 0 for key in self.dictionary.keys() if key >= max_key} if bad_keys: print(f"Warning: fixing {len(bad_keys)} overflowing keys") for k in bad_keys: diff --git a/tools/mapmerge2/fixup.py b/tools/mapmerge2/fixup.py index f3133d1d730..6953e7ab778 100644 --- a/tools/mapmerge2/fixup.py +++ b/tools/mapmerge2/fixup.py @@ -96,7 +96,7 @@ def main(repo): converted[path] = merge_map(head_files[path], dmm.DMM.from_bytes(data)) if len(working_commit.parents) != 1: print("A merge commit was encountered before good versions of these maps were found:") - print("\n".join(f" {x}" for x in head_files.keys() - base_files.keys())) + print("\n".join(f" {x}" for x in head_files.keys() - converted.keys())) return 1 working_commit = working_commit.parents[0] diff --git a/tools/mapmerge2/merge_driver.py b/tools/mapmerge2/merge_driver.py index 39bc1f723e3..8daead9c165 100644 --- a/tools/mapmerge2/merge_driver.py +++ b/tools/mapmerge2/merge_driver.py @@ -75,9 +75,13 @@ def three_way_merge(base, left, right): print(f" C: Both sides touch the tile at {coord}") if merged_movables is None: - obj_name = "---Merge conflict marker---" - merged_movables = left_movables + [f'/obj{{name = "{obj_name}"}}'] + right_movables - print(f" Left and right movable groups are split by an `/obj` named \"{obj_name}\"") + # Note that if you do not have an object that matches this path in your DME, the invalid path may be discarded when the map is loaded into a map editor. + # To rectify this, either add an object with this same path, or create a new object/denote an existing object in the obj_path define. + obj_path = "/obj/merge_conflict_marker" + obj_name = "---Merge Conflict Marker---" + obj_desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + merged_movables = left_movables + [f'{obj_path}{{name = "{obj_name}";\n\tdesc = "{obj_desc}"}}'] + right_movables + print(f" Left and right movable groups are split by an `{obj_path}` named \"{obj_name}\"") if merged_turfs is None: merged_turfs = left_turfs print(f" Saving turf: {', '.join(left_turfs)}") diff --git a/tools/midi2piano/MidiDependencies/__init__.py b/tools/midi2piano/MidiDependencies/__init__.py new file mode 100644 index 00000000000..a585f127f18 --- /dev/null +++ b/tools/midi2piano/MidiDependencies/__init__.py @@ -0,0 +1 @@ +from MidiDependencies.midi import * diff --git a/tools/midi2piano/MidiDependencies/midi.py b/tools/midi2piano/MidiDependencies/midi.py new file mode 100644 index 00000000000..c1c6df64078 --- /dev/null +++ b/tools/midi2piano/MidiDependencies/midi.py @@ -0,0 +1,1648 @@ +#! /usr/bin/python3 +# unsupported 20091104 ... +# ['set_sequence_number', dtime, sequence] +# ['raw_data', dtime, raw] +r''' +This module offers functions: concatenate_scores(), grep(), +merge_scores(), mix_scores(), midi2opus(), midi2score(), opus2midi(), +opus2score(), play_score(), score2midi(), score2opus(), score2stats(), +score_type(), segment(), timeshift() and to_millisecs(), +where "midi" means the MIDI-file bytes (as can be put in a .mid file, +or piped into aplaymidi), and "opus" and "score" are list-structures +as inspired by Sean Burke's MIDI-Perl CPAN module. + +Download MIDI.py from http://www.pjb.com.au/midi/free/MIDI.py +and put it in your PYTHONPATH. MIDI.py depends on Python3. + +There is also a call-compatible translation into Lua of this +module: see http://www.pjb.com.au/comp/lua/MIDI.html + +The "opus" is a direct translation of the midi-file-events, where +the times are delta-times, in ticks, since the previous event. + +The "score" is more human-centric; it uses absolute times, and +combines the separate note_on and note_off events into one "note" +event, with a duration: + ['note', start_time, duration, channel, note, velocity] # in a "score" + + EVENTS (in an "opus" structure) + ['note_off', dtime, channel, note, velocity] # in an "opus" + ['note_on', dtime, channel, note, velocity] # in an "opus" + ['key_after_touch', dtime, channel, note, velocity] + ['control_change', dtime, channel, controller(0-127), value(0-127)] + ['patch_change', dtime, channel, patch] + ['channel_after_touch', dtime, channel, velocity] + ['pitch_wheel_change', dtime, channel, pitch_wheel] + ['text_event', dtime, text] + ['copyright_text_event', dtime, text] + ['track_name', dtime, text] + ['instrument_name', dtime, text] + ['lyric', dtime, text] + ['marker', dtime, text] + ['cue_point', dtime, text] + ['text_event_08', dtime, text] + ['text_event_09', dtime, text] + ['text_event_0a', dtime, text] + ['text_event_0b', dtime, text] + ['text_event_0c', dtime, text] + ['text_event_0d', dtime, text] + ['text_event_0e', dtime, text] + ['text_event_0f', dtime, text] + ['end_track', dtime] + ['set_tempo', dtime, tempo] + ['smpte_offset', dtime, hr, mn, se, fr, ff] + ['time_signature', dtime, nn, dd, cc, bb] + ['key_signature', dtime, sf, mi] + ['sequencer_specific', dtime, raw] + ['raw_meta_event', dtime, command(0-255), raw] + ['sysex_f0', dtime, raw] + ['sysex_f7', dtime, raw] + ['song_position', dtime, song_pos] + ['song_select', dtime, song_number] + ['tune_request', dtime] + + DATA TYPES + channel = a value 0 to 15 + controller = 0 to 127 (see http://www.pjb.com.au/muscript/gm.html#cc ) + dtime = time measured in "ticks", 0 to 268435455 + velocity = a value 0 (soft) to 127 (loud) + note = a value 0 to 127 (middle-C is 60) + patch = 0 to 127 (see http://www.pjb.com.au/muscript/gm.html ) + pitch_wheel = a value -8192 to 8191 (0x1FFF) + raw = 0 or more bytes of binary data + sequence_number = a value 0 to 65,535 (0xFFFF) + song_pos = a value 0 to 16,383 (0x3FFF) + song_number = a value 0 to 127 + tempo = microseconds per crochet (quarter-note), 0 to 16777215 + text = a string of 0 or more bytes of of ASCII text + ticks = the number of ticks per crochet (quarter-note) + + GOING THROUGH A SCORE WITHIN A PYTHON PROGRAM + channels = {2,3,5,8,13} + itrack = 1 # skip 1st element which is ticks + while itrack < len(score): + for event in score[itrack]: + if event[0] == 'note': # for example, + pass # do something to all notes + # or, to work on events in only particular channels... + channel_index = MIDI.Event2channelindex.get(event[0], False) + if channel_index and (event[channel_index] in channels): + pass # do something to channels 2,3,5,8 and 13 + itrack += 1 + +''' + +import sys, struct, os, copy +# sys.stdout = os.fdopen(sys.stdout.fileno(), 'wb') +Version = '6.2' +VersionDate = '20150101' +# 20150101 6.2 all text events can be 8-bit; let user get the right encoding +# 20141231 6.1 fix _some_text_event; sequencer_specific data can be 8-bit +# 20141230 6.0 synth_specific data can be 8-bit +# 20120504 5.9 add the contents of mid_opus_tracks() +# 20120208 5.8 fix num_notes_by_channel() ; should be a dict +# 20120129 5.7 _encode handles empty tracks; score2stats num_notes_by_channel +# 20111111 5.6 fix patch 45 and 46 in Number2patch, should be Harp +# 20110129 5.5 add mix_opus_tracks() and event2alsaseq() +# 20110126 5.4 "previous message repeated N times" to save space on stderr +# 20110125 5.2 opus2score terminates unended notes at the end of the track +# 20110124 5.1 the warnings in midi2opus display track_num +# 21110122 5.0 if garbage, midi2opus returns the opus so far +# 21110119 4.9 non-ascii chars stripped out of the text_events +# 21110110 4.8 note_on with velocity=0 treated as a note-off +# 21110108 4.6 unknown F-series event correctly eats just one byte +# 21011010 4.2 segment() uses start_time, end_time named params +# 21011005 4.1 timeshift() must not pad the set_tempo command +# 21011003 4.0 pitch2note_event must be chapitch2note_event +# 21010918 3.9 set_sequence_number supported, FWIW +# 20100913 3.7 many small bugfixes; passes all tests +# 20100910 3.6 concatenate_scores enforce ticks=1000, just like merge_scores +# 20100908 3.5 minor bugs fixed in score2stats +# 20091104 3.4 tune_request now supported +# 20091104 3.3 fixed bug in decoding song_position and song_select +# 20091104 3.2 unsupported: set_sequence_number tune_request raw_data +# 20091101 3.1 document how to traverse a score within Python +# 20091021 3.0 fixed bug in score2stats detecting GM-mode = 0 +# 20091020 2.9 score2stats reports GM-mode and bank msb,lsb events +# 20091019 2.8 in merge_scores, channel 9 must remain channel 9 (in GM) +# 20091018 2.7 handles empty tracks gracefully +# 20091015 2.6 grep() selects channels +# 20091010 2.5 merge_scores reassigns channels to avoid conflicts +# 20091010 2.4 fixed bug in to_millisecs which now only does opusses +# 20091010 2.3 score2stats returns channels & patch_changes, by_track & total +# 20091010 2.2 score2stats() returns also pitches and percussion dicts +# 20091010 2.1 bugs: >= not > in segment, to notice patch_change at time 0 +# 20091010 2.0 bugs: spurious pop(0) ( in _decode sysex +# 20091008 1.9 bugs: ISO decoding in sysex; str( not int( in note-off warning +# 20091008 1.8 add concatenate_scores() +# 20091006 1.7 score2stats() measures nticks and ticks_per_quarter +# 20091004 1.6 first mix_scores() and merge_scores() +# 20090424 1.5 timeshift() bugfix: earliest only sees events after from_time +# 20090330 1.4 timeshift() has also a from_time argument +# 20090322 1.3 timeshift() has also a start_time argument +# 20090319 1.2 add segment() and timeshift() +# 20090301 1.1 add to_millisecs() + +_previous_warning = '' # 5.4 +_previous_times = 0 # 5.4 +#------------------------------- Encoding stuff -------------------------- + +def opus2midi(opus=[]): + r'''The argument is a list: the first item in the list is the "ticks" +parameter, the others are the tracks. Each track is a list +of midi-events, and each event is itself a list; see above. +opus2midi() returns a bytestring of the MIDI, which can then be +written either to a file opened in binary mode (mode='wb'), +or to stdout by means of: sys.stdout.buffer.write() + +my_opus = [ + 96, + [ # track 0: + ['patch_change', 0, 1, 8], # and these are the events... + ['note_on', 5, 1, 25, 96], + ['note_off', 96, 1, 25, 0], + ['note_on', 0, 1, 29, 96], + ['note_off', 96, 1, 29, 0], + ], # end of track 0 +] +my_midi = opus2midi(my_opus) +sys.stdout.buffer.write(my_midi) +''' + if len(opus) < 2: + opus=[1000, [],] + tracks = copy.deepcopy(opus) + ticks = int(tracks.pop(0)) + ntracks = len(tracks) + if ntracks == 1: + format = 0 + else: + format = 1 + + my_midi = b"MThd\x00\x00\x00\x06"+struct.pack('>HHH',format,ntracks,ticks) + for track in tracks: + events = _encode(track) + my_midi += b'MTrk' + struct.pack('>I',len(events)) + events + _clean_up_warnings() + return my_midi + + +def score2opus(score=None): + r''' +The argument is a list: the first item in the list is the "ticks" +parameter, the others are the tracks. Each track is a list +of score-events, and each event is itself a list. A score-event +is similar to an opus-event (see above), except that in a score: + 1) the times are expressed as an absolute number of ticks + from the track's start time + 2) the pairs of 'note_on' and 'note_off' events in an "opus" + are abstracted into a single 'note' event in a "score": + ['note', start_time, duration, channel, pitch, velocity] +score2opus() returns a list specifying the equivalent "opus". + +my_score = [ + 96, + [ # track 0: + ['patch_change', 0, 1, 8], + ['note', 5, 96, 1, 25, 96], + ['note', 101, 96, 1, 29, 96] + ], # end of track 0 +] +my_opus = score2opus(my_score) +''' + if len(score) < 2: + score=[1000, [],] + tracks = copy.deepcopy(score) + ticks = int(tracks.pop(0)) + opus_tracks = [] + for scoretrack in tracks: + time2events = dict([]) + for scoreevent in scoretrack: + if scoreevent[0] == 'note': + note_on_event = ['note_on',scoreevent[1], + scoreevent[3],scoreevent[4],scoreevent[5]] + note_off_event = ['note_off',scoreevent[1]+scoreevent[2], + scoreevent[3],scoreevent[4],scoreevent[5]] + if time2events.get(note_on_event[1]): + time2events[note_on_event[1]].append(note_on_event) + else: + time2events[note_on_event[1]] = [note_on_event,] + if time2events.get(note_off_event[1]): + time2events[note_off_event[1]].append(note_off_event) + else: + time2events[note_off_event[1]] = [note_off_event,] + continue + if time2events.get(scoreevent[1]): + time2events[scoreevent[1]].append(scoreevent) + else: + time2events[scoreevent[1]] = [scoreevent,] + + sorted_times = [] # list of keys + for k in time2events.keys(): + sorted_times.append(k) + sorted_times.sort() + + sorted_events = [] # once-flattened list of values sorted by key + for time in sorted_times: + sorted_events.extend(time2events[time]) + + abs_time = 0 + for event in sorted_events: # convert abs times => delta times + delta_time = event[1] - abs_time + abs_time = event[1] + event[1] = delta_time + opus_tracks.append(sorted_events) + opus_tracks.insert(0,ticks) + _clean_up_warnings() + return opus_tracks + +def score2midi(score=None): + r''' +Translates a "score" into MIDI, using score2opus() then opus2midi() +''' + return opus2midi(score2opus(score)) + +#--------------------------- Decoding stuff ------------------------ + +def midi2opus(midi=b''): + r'''Translates MIDI into a "opus". For a description of the +"opus" format, see opus2midi() +''' + my_midi=bytearray(midi) + if len(my_midi) < 4: + _clean_up_warnings() + return [1000,[],] + id = bytes(my_midi[0:4]) + if id != b'MThd': + _warn("midi2opus: midi starts with "+str(id)+" instead of 'MThd'") + _clean_up_warnings() + return [1000,[],] + [length, format, tracks_expected, ticks] = struct.unpack( + '>IHHH', bytes(my_midi[4:14])) + if length != 6: + _warn("midi2opus: midi header length was "+str(length)+" instead of 6") + _clean_up_warnings() + return [1000,[],] + my_opus = [ticks,] + my_midi = my_midi[14:] + track_num = 1 # 5.1 + while len(my_midi) >= 8: + track_type = bytes(my_midi[0:4]) + if track_type != b'MTrk': + _warn('midi2opus: Warning: track #'+str(track_num)+' type is '+str(track_type)+" instead of b'MTrk'") + [track_length] = struct.unpack('>I', my_midi[4:8]) + my_midi = my_midi[8:] + if track_length > len(my_midi): + _warn('midi2opus: track #'+str(track_num)+' length '+str(track_length)+' is too large') + _clean_up_warnings() + return my_opus # 5.0 + my_midi_track = my_midi[0:track_length] + my_track = _decode(my_midi_track) + my_opus.append(my_track) + my_midi = my_midi[track_length:] + track_num += 1 # 5.1 + _clean_up_warnings() + return my_opus + +def opus2score(opus=[]): + r'''For a description of the "opus" and "score" formats, +see opus2midi() and score2opus(). +''' + if len(opus) < 2: + _clean_up_warnings() + return [1000,[],] + tracks = copy.deepcopy(opus) # couple of slices probably quicker... + ticks = int(tracks.pop(0)) + score = [ticks,] + for opus_track in tracks: + ticks_so_far = 0 + score_track = [] + chapitch2note_on_events = dict([]) # 4.0 + for opus_event in opus_track: + ticks_so_far += opus_event[1] + if opus_event[0] == 'note_off' or (opus_event[0] == 'note_on' and opus_event[4] == 0): # 4.8 + cha = opus_event[2] + pitch = opus_event[3] + key = cha*128 + pitch + if chapitch2note_on_events.get(key): + new_event = chapitch2note_on_events[key].pop(0) + new_event[2] = ticks_so_far - new_event[1] + score_track.append(new_event) + elif pitch > 127: + _warn('opus2score: note_off with no note_on, bad pitch='+str(pitch)) + else: + _warn('opus2score: note_off with no note_on cha='+str(cha)+' pitch='+str(pitch)) + elif opus_event[0] == 'note_on': + cha = opus_event[2] + pitch = opus_event[3] + key = cha*128 + pitch + new_event = ['note',ticks_so_far,0,cha,pitch, opus_event[4]] + if chapitch2note_on_events.get(key): + chapitch2note_on_events[key].append(new_event) + else: + chapitch2note_on_events[key] = [new_event,] + else: + opus_event[1] = ticks_so_far + score_track.append(opus_event) + # check for unterminated notes (Oisín) -- 5.2 + for chapitch in chapitch2note_on_events: + note_on_events = chapitch2note_on_events[chapitch] + for new_e in note_on_events: + new_e[2] = ticks_so_far - new_e[1] + score_track.append(new_e) + _warn("opus2score: note_on with no note_off cha="+str(new_e[3])+' pitch='+str(new_e[4])+'; adding note_off at end') + score.append(score_track) + _clean_up_warnings() + return score + +def midi2score(midi=b''): + r''' +Translates MIDI into a "score", using midi2opus() then opus2score() +''' + return opus2score(midi2opus(midi)) + +def midi2ms_score(midi=b''): + r''' +Translates MIDI into a "score" with one beat per second and one +tick per millisecond, using midi2opus() then to_millisecs() +then opus2score() +''' + return opus2score(to_millisecs(midi2opus(midi))) + +#------------------------ Other Transformations --------------------- + +def to_millisecs(old_opus=None): + r'''Recallibrates all the times in an "opus" to use one beat +per second and one tick per millisecond. This makes it +hard to retrieve any information about beats or barlines, +but it does make it easy to mix different scores together. +''' + if old_opus == None: + return [1000,[],] + try: + old_tpq = int(old_opus[0]) + except IndexError: # 5.0 + _warn('to_millisecs: the opus '+str(type(old_opus))+' has no elements') + return [1000,[],] + new_opus = [1000,] + millisec_per_old_tick = 1000.0 / old_tpq # float: will be rounded later + itrack = 1 + while itrack < len(old_opus): + millisec_so_far = 0.0 + previous_millisec_so_far = 0.0 + new_track = [['set_tempo',0,1000000],] # new "crochet" is 1 sec + for old_event in old_opus[itrack]: + if old_event[0] == 'note': + raise TypeError('to_millisecs needs an opus, not a score') + new_event = copy.deepcopy(old_event) + millisec_so_far += (millisec_per_old_tick * old_event[1]) + new_event[1] = round(millisec_so_far - previous_millisec_so_far) + if old_event[0] == 'set_tempo': + millisec_per_old_tick = old_event[2] / (1000.0 * old_tpq) + else: + previous_millisec_so_far = millisec_so_far + new_track.append(new_event) + new_opus.append(new_track) + itrack += 1 + _clean_up_warnings() + return new_opus + +def event2alsaseq(event=None): # 5.5 + r'''Converts an event into the format needed by the alsaseq module, +http://pp.com.mx/python/alsaseq +The type of track (opus or score) is autodetected. +''' + pass + +def grep(score=None, channels=None): + r'''Returns a "score" containing only the channels specified +''' + if score == None: + return [1000,[],] + ticks = score[0] + new_score = [ticks,] + if channels == None: + return new_score + channels = set(channels) + global Event2channelindex + itrack = 1 + while itrack < len(score): + new_score.append([]) + for event in score[itrack]: + channel_index = Event2channelindex.get(event[0], False) + if channel_index: + if event[channel_index] in channels: + new_score[itrack].append(event) + else: + new_score[itrack].append(event) + itrack += 1 + return new_score + +def play_score(score=None): + r'''Converts the "score" to midi, and feeds it into 'aplaymidi -' +''' + if score == None: + return + import subprocess + pipe = subprocess.Popen(['aplaymidi','-'], stdin=subprocess.PIPE) + if score_type(score) == 'opus': + pipe.stdin.write(opus2midi(score)) + else: + pipe.stdin.write(score2midi(score)) + pipe.stdin.close() + +def timeshift(score=None, shift=None, start_time=None, from_time=0, tracks={0,1,2,3,4,5,6,7,8,10,12,13,14,15}): + r'''Returns a "score" shifted in time by "shift" ticks, or shifted +so that the first event starts at "start_time" ticks. + +If "from_time" is specified, only those events in the score +that begin after it are shifted. If "start_time" is less than +"from_time" (or "shift" is negative), then the intermediate +notes are deleted, though patch-change events are preserved. + +If "tracks" are specified, then only those tracks get shifted. +"tracks" can be a list, tuple or set; it gets converted to set +internally. + +It is deprecated to specify both "shift" and "start_time". +If this does happen, timeshift() will print a warning to +stderr and ignore the "shift" argument. + +If "shift" is negative and sufficiently large that it would +leave some event with a negative tick-value, then the score +is shifted so that the first event occurs at time 0. This +also occurs if "start_time" is negative, and is also the +default if neither "shift" nor "start_time" are specified. +''' + #_warn('tracks='+str(tracks)) + if score == None or len(score) < 2: + return [1000, [],] + new_score = [score[0],] + my_type = score_type(score) + if my_type == '': + return new_score + if my_type == 'opus': + _warn("timeshift: opus format is not supported\n") + # _clean_up_scores() 6.2; doesn't exist! what was it supposed to do? + return new_score + if not (shift == None) and not (start_time == None): + _warn("timeshift: shift and start_time specified: ignoring shift\n") + shift = None + if shift == None: + if (start_time == None) or (start_time < 0): + start_time = 0 + # shift = start_time - from_time + + i = 1 # ignore first element (ticks) + tracks = set(tracks) # defend against tuples and lists + earliest = 1000000000 + if not (start_time == None) or shift < 0: # first find the earliest event + while i < len(score): + if len(tracks) and not ((i-1) in tracks): + i += 1 + continue + for event in score[i]: + if event[1] < from_time: + continue # just inspect the to_be_shifted events + if event[1] < earliest: + earliest = event[1] + i += 1 + if earliest > 999999999: + earliest = 0 + if shift == None: + shift = start_time - earliest + elif (earliest + shift) < 0: + start_time = 0 + shift = 0 - earliest + + i = 1 # ignore first element (ticks) + while i < len(score): + if len(tracks) == 0 or not ((i-1) in tracks): # 3.8 + new_score.append(score[i]) + i += 1 + continue + new_track = [] + for event in score[i]: + new_event = list(event) + #if new_event[1] == 0 and shift > 0 and new_event[0] != 'note': + # pass + #elif new_event[1] >= from_time: + if new_event[1] >= from_time: + # 4.1 must not rightshift set_tempo + if new_event[0] != 'set_tempo' or shift<0: + new_event[1] += shift + elif (shift < 0) and (new_event[1] >= (from_time+shift)): + continue + new_track.append(new_event) + if len(new_track) > 0: + new_score.append(new_track) + i += 1 + _clean_up_warnings() + return new_score + +def segment(score=None, start_time=None, end_time=None, start=0, end=100000000, + tracks={0,1,2,3,4,5,6,7,8,10,11,12,13,14,15}): + r'''Returns a "score" which is a segment of the one supplied +as the argument, beginning at "start_time" ticks and ending +at "end_time" ticks (or at the end if "end_time" is not supplied). +If the set "tracks" is specified, only those tracks will +be returned. +''' + if score == None or len(score) < 2: + return [1000, [],] + if start_time == None: # as of 4.2 start_time is recommended + start_time = start # start is legacy usage + if end_time == None: # likewise + end_time = end + new_score = [score[0],] + my_type = score_type(score) + if my_type == '': + return new_score + if my_type == 'opus': + # more difficult (disconnecting note_on's from their note_off's)... + _warn("segment: opus format is not supported\n") + _clean_up_warnings() + return new_score + i = 1 # ignore first element (ticks); we count in ticks anyway + tracks = set(tracks) # defend against tuples and lists + while i < len(score): + if len(tracks) and not ((i-1) in tracks): + i += 1 + continue + new_track = [] + channel2patch_num = {} # keep most recent patch change before start + channel2patch_time = {} + set_tempo_num = 1000000 # keep most recent tempo change before start + set_tempo_time = 0 + earliest_note_time = end_time + for event in score[i]: + if event[0] == 'patch_change': + patch_time = channel2patch_time.get(event[2]) or 0 + if (event[1] < start_time) and (event[1] >= patch_time): # 2.0 + channel2patch_num[event[2]] = event[3] + channel2patch_time[event[2]] = event[1] + if event[0] == 'set_tempo': + if (event[1] < start_time) and (event[1] >= set_tempo_time): + set_tempo_num = event[2] + set_tempo_time = event[1] + if (event[1] >= start_time) and (event[1] <= end_time): + new_track.append(event) + if (event[0] == 'note') and (event[1] < earliest_note_time): + earliest_note_time = event[1] + if len(new_track) > 0: + for c in channel2patch_num: + new_track.append(['patch_change',start_time,c,channel2patch_num[c]]) + new_track.append(['set_tempo', start_time, set_tempo_num]) + new_score.append(new_track) + i += 1 + _clean_up_warnings() + return new_score + +def score_type(opus_or_score=None): + r'''Returns a string, either 'opus' or 'score' or '' +''' + if opus_or_score == None or str(type(opus_or_score)).find('list')<0 or len(opus_or_score) < 2: + return '' + i = 1 # ignore first element + while i < len(opus_or_score): + for event in opus_or_score[i]: + if event[0] == 'note': + return 'score' + elif event[0] == 'note_on': + return 'opus' + i += 1 + return '' + +def concatenate_scores(scores): + r'''Concatenates a list of scores into one score. +If the scores differ in their "ticks" parameter, +they will all get converted to millisecond-tick format. +''' + # the deepcopys are needed if the input_score's are refs to the same obj + # e.g. if invoked by midisox's repeat() + input_scores = _consistentise_ticks(scores) # 3.7 + output_score = copy.deepcopy(input_scores[0]) + for input_score in input_scores[1:]: + output_stats = score2stats(output_score) + delta_ticks = output_stats['nticks'] + itrack = 1 + while itrack < len(input_score): + if itrack >= len(output_score): # new output track if doesn't exist + output_score.append([]) + for event in input_score[itrack]: + output_score[itrack].append(copy.deepcopy(event)) + output_score[itrack][-1][1] += delta_ticks + itrack += 1 + return output_score + +def merge_scores(scores): + r'''Merges a list of scores into one score. A merged score comprises +all of the tracks from all of the input scores; un-merging is possible +by selecting just some of the tracks. If the scores differ in their +"ticks" parameter, they will all get converted to millisecond-tick +format. merge_scores attempts to resolve channel-conflicts, +but there are of course only 15 available channels... +''' + input_scores = _consistentise_ticks(scores) # 3.6 + output_score = [1000] + channels_so_far = set() + all_channels = {0,1,2,3,4,5,6,7,8,10,11,12,13,14,15} + global Event2channelindex + for input_score in input_scores: + new_channels = set(score2stats(input_score).get('channels_total', [])) + new_channels.discard(9) # 2.8 cha9 must remain cha9 (in GM) + for channel in channels_so_far & new_channels: + # consistently choose lowest avaiable, to ease testing + free_channels = list(all_channels - (channels_so_far|new_channels)) + if len(free_channels) > 0: + free_channels.sort() + free_channel = free_channels[0] + else: + free_channel = None + break + itrack = 1 + while itrack < len(input_score): + for input_event in input_score[itrack]: + channel_index=Event2channelindex.get(input_event[0],False) + if channel_index and input_event[channel_index]==channel: + input_event[channel_index] = free_channel + itrack += 1 + channels_so_far.add(free_channel) + + channels_so_far |= new_channels + output_score.extend(input_score[1:]) + return output_score + +def _ticks(event): + return event[1] +def mix_opus_tracks(input_tracks): # 5.5 + r'''Mixes an array of tracks into one track. A mixed track +cannot be un-mixed. It is assumed that the tracks share the same +ticks parameter and the same tempo. +Mixing score-tracks is trivial (just insert all events into one array). +Mixing opus-tracks is only slightly harder, but it's common enough +that a dedicated function is useful. +''' + output_score = [1000, []] + for input_track in input_tracks: # 5.8 + input_score = opus2score([1000, input_track]) + for event in input_score[1]: + output_score[1].append(event) + output_score[1].sort(key=_ticks) + output_opus = score2opus(output_score) + return output_opus[1] + +def mix_scores(scores): + r'''Mixes a list of scores into one one-track score. +A mixed score cannot be un-mixed. Hopefully the scores +have no undesirable channel-conflicts between them. +If the scores differ in their "ticks" parameter, +they will all get converted to millisecond-tick format. +''' + input_scores = _consistentise_ticks(scores) # 3.6 + output_score = [1000, []] + for input_score in input_scores: + for input_track in input_score[1:]: + output_score[1].extend(input_track) + return output_score + +def score2stats(opus_or_score=None): + r'''Returns a dict of some basic stats about the score, like +bank_select (list of tuples (msb,lsb)), +channels_by_track (list of lists), channels_total (set), +general_midi_mode (list), +ntracks, nticks, patch_changes_by_track (list of dicts), +num_notes_by_channel (list of numbers), +patch_changes_total (set), +percussion (dict histogram of channel 9 events), +pitches (dict histogram of pitches on channels other than 9), +pitch_range_by_track (list, by track, of two-member-tuples), +pitch_range_sum (sum over tracks of the pitch_ranges), +''' + bank_select_msb = -1 + bank_select_lsb = -1 + bank_select = [] + channels_by_track = [] + channels_total = set([]) + general_midi_mode = [] + num_notes_by_channel = dict([]) + patches_used_by_track = [] + patches_used_total = set([]) + patch_changes_by_track = [] + patch_changes_total = set([]) + percussion = dict([]) # histogram of channel 9 "pitches" + pitches = dict([]) # histogram of pitch-occurrences channels 0-8,10-15 + pitch_range_sum = 0 # u pitch-ranges of each track + pitch_range_by_track = [] + is_a_score = True + if opus_or_score == None: + return {'bank_select':[], 'channels_by_track':[], 'channels_total':[], + 'general_midi_mode':[], 'ntracks':0, 'nticks':0, + 'num_notes_by_channel':dict([]), + 'patch_changes_by_track':[], 'patch_changes_total':[], + 'percussion':{}, 'pitches':{}, 'pitch_range_by_track':[], + 'ticks_per_quarter':0, 'pitch_range_sum':0} + ticks_per_quarter = opus_or_score[0] + i = 1 # ignore first element, which is ticks + nticks = 0 + while i < len(opus_or_score): + highest_pitch = 0 + lowest_pitch = 128 + channels_this_track = set([]) + patch_changes_this_track = dict({}) + for event in opus_or_score[i]: + if event[0] == 'note': + num_notes_by_channel[event[3]] = num_notes_by_channel.get(event[3],0) + 1 + if event[3] == 9: + percussion[event[4]] = percussion.get(event[4],0) + 1 + else: + pitches[event[4]] = pitches.get(event[4],0) + 1 + if event[4] > highest_pitch: + highest_pitch = event[4] + if event[4] < lowest_pitch: + lowest_pitch = event[4] + channels_this_track.add(event[3]) + channels_total.add(event[3]) + finish_time = event[1] + event[2] + if finish_time > nticks: + nticks = finish_time + elif event[0] == 'note_off' or (event[0] == 'note_on' and event[4] == 0): # 4.8 + finish_time = event[1] + if finish_time > nticks: + nticks = finish_time + elif event[0] == 'note_on': + is_a_score = False + num_notes_by_channel[event[2]] = num_notes_by_channel.get(event[2],0) + 1 + if event[2] == 9: + percussion[event[3]] = percussion.get(event[3],0) + 1 + else: + pitches[event[3]] = pitches.get(event[3],0) + 1 + if event[3] > highest_pitch: + highest_pitch = event[3] + if event[3] < lowest_pitch: + lowest_pitch = event[3] + channels_this_track.add(event[2]) + channels_total.add(event[2]) + elif event[0] == 'patch_change': + patch_changes_this_track[event[2]] = event[3] + patch_changes_total.add(event[3]) + elif event[0] == 'control_change': + if event[3] == 0: # bank select MSB + bank_select_msb = event[4] + elif event[3] == 32: # bank select LSB + bank_select_lsb = event[4] + if bank_select_msb >= 0 and bank_select_lsb >= 0: + bank_select.append((bank_select_msb,bank_select_lsb)) + bank_select_msb = -1 + bank_select_lsb = -1 + elif event[0] == 'sysex_f0': + if _sysex2midimode.get(event[2], -1) >= 0: + general_midi_mode.append(_sysex2midimode.get(event[2])) + if is_a_score: + if event[1] > nticks: + nticks = event[1] + else: + nticks += event[1] + if lowest_pitch == 128: + lowest_pitch = 0 + channels_by_track.append(channels_this_track) + patch_changes_by_track.append(patch_changes_this_track) + pitch_range_by_track.append((lowest_pitch,highest_pitch)) + pitch_range_sum += (highest_pitch-lowest_pitch) + i += 1 + + return {'bank_select':bank_select, + 'channels_by_track':channels_by_track, + 'channels_total':channels_total, + 'general_midi_mode':general_midi_mode, + 'ntracks':len(opus_or_score)-1, + 'nticks':nticks, + 'num_notes_by_channel':num_notes_by_channel, + 'patch_changes_by_track':patch_changes_by_track, + 'patch_changes_total':patch_changes_total, + 'percussion':percussion, + 'pitches':pitches, + 'pitch_range_by_track':pitch_range_by_track, + 'pitch_range_sum':pitch_range_sum, + 'ticks_per_quarter':ticks_per_quarter} + +#----------------------------- Event stuff -------------------------- + +_sysex2midimode = { + "\x7E\x7F\x09\x01\xF7": 1, + "\x7E\x7F\x09\x02\xF7": 0, + "\x7E\x7F\x09\x03\xF7": 2, +} + +# Some public-access tuples: +MIDI_events = tuple('''note_off note_on key_after_touch +control_change patch_change channel_after_touch +pitch_wheel_change'''.split()) + +Text_events = tuple('''text_event copyright_text_event +track_name instrument_name lyric marker cue_point text_event_08 +text_event_09 text_event_0a text_event_0b text_event_0c +text_event_0d text_event_0e text_event_0f'''.split()) + +Nontext_meta_events = tuple('''end_track set_tempo +smpte_offset time_signature key_signature sequencer_specific +raw_meta_event sysex_f0 sysex_f7 song_position song_select +tune_request'''.split()) +# unsupported: raw_data + +# Actually, 'tune_request' is is F-series event, not strictly a meta-event... +Meta_events = Text_events + Nontext_meta_events +All_events = MIDI_events + Meta_events + +# And three dictionaries: +Number2patch = { # General MIDI patch numbers: +0:'Acoustic Grand', +1:'Bright Acoustic', +2:'Electric Grand', +3:'Honky-Tonk', +4:'Electric Piano 1', +5:'Electric Piano 2', +6:'Harpsichord', +7:'Clav', +8:'Celesta', +9:'Glockenspiel', +10:'Music Box', +11:'Vibraphone', +12:'Marimba', +13:'Xylophone', +14:'Tubular Bells', +15:'Dulcimer', +16:'Drawbar Organ', +17:'Percussive Organ', +18:'Rock Organ', +19:'Church Organ', +20:'Reed Organ', +21:'Accordion', +22:'Harmonica', +23:'Tango Accordion', +24:'Acoustic Guitar(nylon)', +25:'Acoustic Guitar(steel)', +26:'Electric Guitar(jazz)', +27:'Electric Guitar(clean)', +28:'Electric Guitar(muted)', +29:'Overdriven Guitar', +30:'Distortion Guitar', +31:'Guitar Harmonics', +32:'Acoustic Bass', +33:'Electric Bass(finger)', +34:'Electric Bass(pick)', +35:'Fretless Bass', +36:'Slap Bass 1', +37:'Slap Bass 2', +38:'Synth Bass 1', +39:'Synth Bass 2', +40:'Violin', +41:'Viola', +42:'Cello', +43:'Contrabass', +44:'Tremolo Strings', +45:'Pizzicato Strings', +46:'Orchestral Harp', +47:'Timpani', +48:'String Ensemble 1', +49:'String Ensemble 2', +50:'SynthStrings 1', +51:'SynthStrings 2', +52:'Choir Aahs', +53:'Voice Oohs', +54:'Synth Voice', +55:'Orchestra Hit', +56:'Trumpet', +57:'Trombone', +58:'Tuba', +59:'Muted Trumpet', +60:'French Horn', +61:'Brass Section', +62:'SynthBrass 1', +63:'SynthBrass 2', +64:'Soprano Sax', +65:'Alto Sax', +66:'Tenor Sax', +67:'Baritone Sax', +68:'Oboe', +69:'English Horn', +70:'Bassoon', +71:'Clarinet', +72:'Piccolo', +73:'Flute', +74:'Recorder', +75:'Pan Flute', +76:'Blown Bottle', +77:'Skakuhachi', +78:'Whistle', +79:'Ocarina', +80:'Lead 1 (square)', +81:'Lead 2 (sawtooth)', +82:'Lead 3 (calliope)', +83:'Lead 4 (chiff)', +84:'Lead 5 (charang)', +85:'Lead 6 (voice)', +86:'Lead 7 (fifths)', +87:'Lead 8 (bass+lead)', +88:'Pad 1 (new age)', +89:'Pad 2 (warm)', +90:'Pad 3 (polysynth)', +91:'Pad 4 (choir)', +92:'Pad 5 (bowed)', +93:'Pad 6 (metallic)', +94:'Pad 7 (halo)', +95:'Pad 8 (sweep)', +96:'FX 1 (rain)', +97:'FX 2 (soundtrack)', +98:'FX 3 (crystal)', +99:'FX 4 (atmosphere)', +100:'FX 5 (brightness)', +101:'FX 6 (goblins)', +102:'FX 7 (echoes)', +103:'FX 8 (sci-fi)', +104:'Sitar', +105:'Banjo', +106:'Shamisen', +107:'Koto', +108:'Kalimba', +109:'Bagpipe', +110:'Fiddle', +111:'Shanai', +112:'Tinkle Bell', +113:'Agogo', +114:'Steel Drums', +115:'Woodblock', +116:'Taiko Drum', +117:'Melodic Tom', +118:'Synth Drum', +119:'Reverse Cymbal', +120:'Guitar Fret Noise', +121:'Breath Noise', +122:'Seashore', +123:'Bird Tweet', +124:'Telephone Ring', +125:'Helicopter', +126:'Applause', +127:'Gunshot', +} +Notenum2percussion = { # General MIDI Percussion (on Channel 9): +35:'Acoustic Bass Drum', +36:'Bass Drum 1', +37:'Side Stick', +38:'Acoustic Snare', +39:'Hand Clap', +40:'Electric Snare', +41:'Low Floor Tom', +42:'Closed Hi-Hat', +43:'High Floor Tom', +44:'Pedal Hi-Hat', +45:'Low Tom', +46:'Open Hi-Hat', +47:'Low-Mid Tom', +48:'Hi-Mid Tom', +49:'Crash Cymbal 1', +50:'High Tom', +51:'Ride Cymbal 1', +52:'Chinese Cymbal', +53:'Ride Bell', +54:'Tambourine', +55:'Splash Cymbal', +56:'Cowbell', +57:'Crash Cymbal 2', +58:'Vibraslap', +59:'Ride Cymbal 2', +60:'Hi Bongo', +61:'Low Bongo', +62:'Mute Hi Conga', +63:'Open Hi Conga', +64:'Low Conga', +65:'High Timbale', +66:'Low Timbale', +67:'High Agogo', +68:'Low Agogo', +69:'Cabasa', +70:'Maracas', +71:'Short Whistle', +72:'Long Whistle', +73:'Short Guiro', +74:'Long Guiro', +75:'Claves', +76:'Hi Wood Block', +77:'Low Wood Block', +78:'Mute Cuica', +79:'Open Cuica', +80:'Mute Triangle', +81:'Open Triangle', +} + +Event2channelindex = { 'note':3, 'note_off':2, 'note_on':2, + 'key_after_touch':2, 'control_change':2, 'patch_change':2, + 'channel_after_touch':2, 'pitch_wheel_change':2 +} + +################################################################ +# The code below this line is full of frightening things, all to +# do with the actual encoding and decoding of binary MIDI data. + +def _twobytes2int(byte_a): + r'''decode a 16 bit quantity from two bytes,''' + return (byte_a[1] | (byte_a[0] << 8)) + +def _int2twobytes(int_16bit): + r'''encode a 16 bit quantity into two bytes,''' + return bytes([(int_16bit>>8) & 0xFF, int_16bit & 0xFF]) + +def _read_14_bit(byte_a): + r'''decode a 14 bit quantity from two bytes,''' + return (byte_a[0] | (byte_a[1] << 7)) + +def _write_14_bit(int_14bit): + r'''encode a 14 bit quantity into two bytes,''' + return bytes([int_14bit & 0x7F, (int_14bit>>7) & 0x7F]) + +def _ber_compressed_int(integer): + r'''BER compressed integer (not an ASN.1 BER, see perlpacktut for +details). Its bytes represent an unsigned integer in base 128, +most significant digit first, with as few digits as possible. +Bit eight (the high bit) is set on each byte except the last. +''' + ber = bytearray(b'') + seven_bits = 0x7F & integer + ber.insert(0, seven_bits) # XXX surely should convert to a char ? + integer >>= 7 + while integer > 0: + seven_bits = 0x7F & integer + ber.insert(0, 0x80|seven_bits) # XXX surely should convert to a char ? + integer >>= 7 + return ber + +def _unshift_ber_int(ba): + r'''Given a bytearray, returns a tuple of (the ber-integer at the +start, and the remainder of the bytearray). +''' + byte = ba.pop(0) + integer = 0 + while True: + integer += (byte & 0x7F) + if not (byte & 0x80): + return ((integer, ba)) + if not len(ba): + _warn('_unshift_ber_int: no end-of-integer found') + return ((0, ba)) + byte = ba.pop(0) + integer <<= 7 + +def _clean_up_warnings(): # 5.4 + # Call this before returning from any publicly callable function + # whenever there's a possibility that a warning might have been printed + # by the function, or by any private functions it might have called. + global _previous_times + global _previous_warning + if _previous_times > 1: + print(' previous message repeated '+str(_previous_times)+' times', file=sys.stderr) + elif _previous_times > 0: + print(' previous message repeated', file=sys.stderr) + _previous_times = 0 + _previous_warning = '' + +def _warn(s=''): + global _previous_times + global _previous_warning + if s == _previous_warning: # 5.4 + _previous_times = _previous_times + 1 + else: + _clean_up_warnings() + print(str(s), file=sys.stderr) + _previous_warning = s + +def _some_text_event(which_kind=0x01, text='some_text'): + # if which_kind == 0x7F: # 6.1 sequencer_specific data can be 8-bit + data = bytes(text, encoding='ISO-8859-1') # 6.2 and also text data! + # else: data = bytes(text, encoding='ascii') + return b'\xFF'+bytes((which_kind,))+_ber_compressed_int(len(data))+data + +def _consistentise_ticks(scores): # 3.6 + # used by mix_scores, merge_scores, concatenate_scores + if len(scores) == 1: + return copy.deepcopy(scores) + are_consistent = True + ticks = scores[0][0] + iscore = 1 + while iscore < len(scores): + if scores[iscore][0] != ticks: + are_consistent = False + break + iscore += 1 + if are_consistent: + return copy.deepcopy(scores) + new_scores = [] + iscore = 0 + while iscore < len(scores): + score = scores[iscore] + new_scores.append(opus2score(to_millisecs(score2opus(score)))) + iscore += 1 + return new_scores + + +########################################################################### + +def _decode(trackdata=b'', exclude=None, include=None, + event_callback=None, exclusive_event_callback=None, no_eot_magic=False): + r'''Decodes MIDI track data into an opus-style list of events. +The options: + 'exclude' is a list of event types which will be ignored SHOULD BE A SET + 'include' (and no exclude), makes exclude a list + of all possible events, /minus/ what include specifies + 'event_callback' is a coderef + 'exclusive_event_callback' is a coderef +''' + trackdata = bytearray(trackdata) + if exclude == None: + exclude = [] + if include == None: + include = [] + if include and not exclude: + exclude = All_events + include = set(include) + exclude = set(exclude) + + # Pointer = 0; not used here; we eat through the bytearray instead. + event_code = -1; # used for running status + event_count = 0; + events = [] + + while(len(trackdata)): + # loop while there's anything to analyze ... + eot = False # When True, the event registrar aborts this loop + event_count += 1 + + E = [] + # E for events - we'll feed it to the event registrar at the end. + + # Slice off the delta time code, and analyze it + [time, remainder] = _unshift_ber_int(trackdata) + + # Now let's see what we can make of the command + first_byte = trackdata.pop(0) & 0xFF + + if (first_byte < 0xF0): # It's a MIDI event + if (first_byte & 0x80): + event_code = first_byte + else: + # It wants running status; use last event_code value + trackdata.insert(0, first_byte) + if (event_code == -1): + _warn("Running status not set; Aborting track.") + return [] + + command = event_code & 0xF0 + channel = event_code & 0x0F + + if (command == 0xF6): # 0-byte argument + pass + elif (command == 0xC0 or command == 0xD0): # 1-byte argument + parameter = trackdata.pop(0) # could be B + else: # 2-byte argument could be BB or 14-bit + parameter = (trackdata.pop(0), trackdata.pop(0)) + + ################################################################# + # MIDI events + + if (command == 0x80): + if 'note_off' in exclude: + continue + E = ['note_off', time, channel, parameter[0], parameter[1]] + elif (command == 0x90): + if 'note_on' in exclude: + continue + E = ['note_on', time, channel, parameter[0], parameter[1]] + elif (command == 0xA0): + if 'key_after_touch' in exclude: + continue + E = ['key_after_touch',time,channel,parameter[0],parameter[1]] + elif (command == 0xB0): + if 'control_change' in exclude: + continue + E = ['control_change',time,channel,parameter[0],parameter[1]] + elif (command == 0xC0): + if 'patch_change' in exclude: + continue + E = ['patch_change', time, channel, parameter] + elif (command == 0xD0): + if 'channel_after_touch' in exclude: + continue + E = ['channel_after_touch', time, channel, parameter] + elif (command == 0xE0): + if 'pitch_wheel_change' in exclude: + continue + E = ['pitch_wheel_change', time, channel, + _read_14_bit(parameter)-0x2000] + else: + _warn("Shouldn't get here; command="+hex(command)) + + elif (first_byte == 0xFF): # It's a Meta-Event! ################## + #[command, length, remainder] = + # unpack("xCwa*", substr(trackdata, $Pointer, 6)); + #Pointer += 6 - len(remainder); + # # Move past JUST the length-encoded. + command = trackdata.pop(0) & 0xFF + [length, trackdata] = _unshift_ber_int(trackdata) + if (command == 0x00): + if (length == 2): + E = ['set_sequence_number',time,_twobytes2int(trackdata)] + else: + _warn('set_sequence_number: length must be 2, not '+str(length)) + E = ['set_sequence_number', time, 0] + + elif command >= 0x01 and command <= 0x0f: # Text events + # 6.2 take it in bytes; let the user get the right encoding. + # text_str = trackdata[0:length].decode('ascii','ignore') + text_str = trackdata[0:length].decode('ISO-8859-1') + # Defined text events + if (command == 0x01): + E = ['text_event', time, text_str] + elif (command == 0x02): + E = ['copyright_text_event', time, text_str] + elif (command == 0x03): + E = ['track_name', time, text_str] + elif (command == 0x04): + E = ['instrument_name', time, text_str] + elif (command == 0x05): + E = ['lyric', time, text_str] + elif (command == 0x06): + E = ['marker', time, text_str] + elif (command == 0x07): + E = ['cue_point', time, text_str] + # Reserved but apparently unassigned text events + elif (command == 0x08): + E = ['text_event_08', time, text_str] + elif (command == 0x09): + E = ['text_event_09', time, text_str] + elif (command == 0x0a): + E = ['text_event_0a', time, text_str] + elif (command == 0x0b): + E = ['text_event_0b', time, text_str] + elif (command == 0x0c): + E = ['text_event_0c', time, text_str] + elif (command == 0x0d): + E = ['text_event_0d', time, text_str] + elif (command == 0x0e): + E = ['text_event_0e', time, text_str] + elif (command == 0x0f): + E = ['text_event_0f', time, text_str] + + # Now the sticky events ------------------------------------- + elif (command == 0x2F): + E = ['end_track', time] + # The code for handling this, oddly, comes LATER, + # in the event registrar. + elif (command == 0x51): # DTime, Microseconds/Crochet + if length != 3: + _warn('set_tempo event, but length='+str(length)) + E = ['set_tempo', time, + struct.unpack(">I", b'\x00'+trackdata[0:3])[0]] + elif (command == 0x54): + if length != 5: # DTime, HR, MN, SE, FR, FF + _warn('smpte_offset event, but length='+str(length)) + E = ['smpte_offset',time] + list(struct.unpack(">BBBBB",trackdata[0:5])) + elif (command == 0x58): + if length != 4: # DTime, NN, DD, CC, BB + _warn('time_signature event, but length='+str(length)) + E = ['time_signature', time]+list(trackdata[0:4]) + elif (command == 0x59): + if length != 2: # DTime, SF(signed), MI + _warn('key_signature event, but length='+str(length)) + E = ['key_signature',time] + list(struct.unpack(">bB",trackdata[0:2])) + elif (command == 0x7F): + E = ['sequencer_specific',time, + trackdata[0:length].decode('ISO-8859-1')] # 6.0 + else: + E = ['raw_meta_event', time, command, + trackdata[0:length].decode('ISO-8859-1')] # 6.0 + #"[uninterpretable meta-event command of length length]" + # DTime, Command, Binary Data + # It's uninterpretable; record it as raw_data. + + # Pointer += length; # Now move Pointer + trackdata = trackdata[length:] + + ###################################################################### + elif (first_byte == 0xF0 or first_byte == 0xF7): + # Note that sysexes in MIDI /files/ are different than sysexes + # in MIDI transmissions!! The vast majority of system exclusive + # messages will just use the F0 format. For instance, the + # transmitted message F0 43 12 00 07 F7 would be stored in a + # MIDI file as F0 05 43 12 00 07 F7. As mentioned above, it is + # required to include the F7 at the end so that the reader of the + # MIDI file knows that it has read the entire message. (But the F7 + # is omitted if this is a non-final block in a multiblock sysex; + # but the F7 (if there) is counted in the message's declared + # length, so we don't have to think about it anyway.) + #command = trackdata.pop(0) + [length, trackdata] = _unshift_ber_int(trackdata) + if first_byte == 0xF0: + # 20091008 added ISO-8859-1 to get an 8-bit str + E = ['sysex_f0', time, trackdata[0:length].decode('ISO-8859-1')] + else: + E = ['sysex_f7', time, trackdata[0:length].decode('ISO-8859-1')] + trackdata = trackdata[length:] + + ###################################################################### + # Now, the MIDI file spec says: + # = + + # = + # = | | + # I know that, on the wire, can include note_on, + # note_off, and all the other 8x to Ex events, AND Fx events + # other than F0, F7, and FF -- namely, , + # , and . + # + # Whether these can occur in MIDI files is not clear specified + # from the MIDI file spec. So, I'm going to assume that + # they CAN, in practice, occur. I don't know whether it's + # proper for you to actually emit these into a MIDI file. + + elif (first_byte == 0xF2): # DTime, Beats + # ::= F2 + E = ['song_position', time, _read_14_bit(trackdata[:2])] + trackdata = trackdata[2:] + + elif (first_byte == 0xF3): # ::= F3 + # E = ['song_select', time, struct.unpack('>B',trackdata.pop(0))[0]] + E = ['song_select', time, trackdata[0]] + trackdata = trackdata[1:] + # DTime, Thing (what?! song number? whatever ...) + + elif (first_byte == 0xF6): # DTime + E = ['tune_request', time] + # What would a tune request be doing in a MIDI /file/? + + ######################################################### + # ADD MORE META-EVENTS HERE. TODO: + # f1 -- MTC Quarter Frame Message. One data byte follows + # the Status; it's the time code value, from 0 to 127. + # f8 -- MIDI clock. no data. + # fa -- MIDI start. no data. + # fb -- MIDI continue. no data. + # fc -- MIDI stop. no data. + # fe -- Active sense. no data. + # f4 f5 f9 fd -- unallocated + + r''' + elif (first_byte > 0xF0) { # Some unknown kinda F-series event #### + # Here we only produce a one-byte piece of raw data. + # But the encoder for 'raw_data' accepts any length of it. + E = [ 'raw_data', + time, substr(trackdata,Pointer,1) ] + # DTime and the Data (in this case, the one Event-byte) + ++Pointer; # itself + +''' + elif first_byte > 0xF0: # Some unknown F-series event + # Here we only produce a one-byte piece of raw data. + E = ['raw_data', time, trackdata[0].decode('ISO-8859-1')] + trackdata = trackdata[1:] + else: # Fallthru. + _warn("Aborting track. Command-byte first_byte="+hex(first_byte)) + break + # End of the big if-group + + + ###################################################################### + # THE EVENT REGISTRAR... + if E and (E[0] == 'end_track'): + # This is the code for exceptional handling of the EOT event. + eot = True + if not no_eot_magic: + if E[1] > 0: # a null text-event to carry the delta-time + E = ['text_event', E[1], ''] + else: + E = [] # EOT with a delta-time of 0; ignore it. + + if E and not (E[0] in exclude): + #if ( $exclusive_event_callback ): + # &{ $exclusive_event_callback }( @E ); + #else: + # &{ $event_callback }( @E ) if $event_callback; + events.append(E) + if eot: + break + + # End of the big "Event" while-block + + return events + + +########################################################################### +def _encode(events_lol, unknown_callback=None, never_add_eot=False, + no_eot_magic=False, no_running_status=False): + # encode an event structure, presumably for writing to a file + # Calling format: + # $data_r = MIDI::Event::encode( \@event_lol, { options } ); + # Takes a REFERENCE to an event structure (a LoL) + # Returns an (unblessed) REFERENCE to track data. + + # If you want to use this to encode a /single/ event, + # you still have to do it as a reference to an event structure (a LoL) + # that just happens to have just one event. I.e., + # encode( [ $event ] ) or encode( [ [ 'note_on', 100, 5, 42, 64] ] ) + # If you're doing this, consider the never_add_eot track option, as in + # print MIDI ${ encode( [ $event], { 'never_add_eot' => 1} ) }; + + data = [] # what I'll store the chunks of byte-data in + + # This is so my end_track magic won't corrupt the original + events = copy.deepcopy(events_lol) + + if not never_add_eot: + # One way or another, tack on an 'end_track' + if events: + last = events[-1] + if not (last[0] == 'end_track'): # no end_track already + if (last[0] == 'text_event' and len(last[2]) == 0): + # 0-length text event at track-end. + if no_eot_magic: + # Exceptional case: don't mess with track-final + # 0-length text_events; just peg on an end_track + events.append(['end_track', 0]) + else: + # NORMAL CASE: replace with an end_track, leaving DTime + last[0] = 'end_track' + else: + # last event was neither 0-length text_event nor end_track + events.append(['end_track', 0]) + else: # an eventless track! + events = [['end_track', 0],] + + # maybe_running_status = not no_running_status # unused? 4.7 + last_status = -1 + + for event_r in (events): + E = copy.deepcopy(event_r) + # otherwise the shifting'd corrupt the original + if not E: + continue + + event = E.pop(0) + if not len(event): + continue + + dtime = int(E.pop(0)) + # print('event='+str(event)+' dtime='+str(dtime)) + + event_data = '' + + if ( # MIDI events -- eligible for running status + event == 'note_on' + or event == 'note_off' + or event == 'control_change' + or event == 'key_after_touch' + or event == 'patch_change' + or event == 'channel_after_touch' + or event == 'pitch_wheel_change' ): + + # This block is where we spend most of the time. Gotta be tight. + if (event == 'note_off'): + status = 0x80 | (int(E[0]) & 0x0F) + parameters = struct.pack('>BB', int(E[1])&0x7F, int(E[2])&0x7F) + elif (event == 'note_on'): + status = 0x90 | (int(E[0]) & 0x0F) + parameters = struct.pack('>BB', int(E[1])&0x7F, int(E[2])&0x7F) + elif (event == 'key_after_touch'): + status = 0xA0 | (int(E[0]) & 0x0F) + parameters = struct.pack('>BB', int(E[1])&0x7F, int(E[2])&0x7F) + elif (event == 'control_change'): + status = 0xB0 | (int(E[0]) & 0x0F) + parameters = struct.pack('>BB', int(E[1])&0xFF, int(E[2])&0xFF) + elif (event == 'patch_change'): + status = 0xC0 | (int(E[0]) & 0x0F) + parameters = struct.pack('>B', int(E[1]) & 0xFF) + elif (event == 'channel_after_touch'): + status = 0xD0 | (int(E[0]) & 0x0F) + parameters = struct.pack('>B', int(E[1]) & 0xFF) + elif (event == 'pitch_wheel_change'): + status = 0xE0 | (int(E[0]) & 0x0F) + parameters = _write_14_bit(int(E[1]) + 0x2000) + else: + _warn("BADASS FREAKOUT ERROR 31415!") + + # And now the encoding + # w = BER compressed integer (not ASN.1 BER, see perlpacktut for + # details). Its bytes represent an unsigned integer in base 128, + # most significant digit first, with as few digits as possible. + # Bit eight (the high bit) is set on each byte except the last. + + data.append(_ber_compressed_int(dtime)) + if (status != last_status) or no_running_status: + data.append(struct.pack('>B', status)) + data.append(parameters) + + last_status = status + continue + else: + # Not a MIDI event. + # All the code in this block could be more efficient, + # but this is not where the code needs to be tight. + # print "zaz $event\n"; + last_status = -1 + + if event == 'raw_meta_event': + event_data = _some_text_event(int(E[0]), E[1]) + elif (event == 'set_sequence_number'): # 3.9 + event_data = b'\xFF\x00\x02'+_int2twobytes(E[0]) + + # Text meta-events... + # a case for a dict, I think (pjb) ... + elif (event == 'text_event'): + event_data = _some_text_event(0x01, E[0]) + elif (event == 'copyright_text_event'): + event_data = _some_text_event(0x02, E[0]) + elif (event == 'track_name'): + event_data = _some_text_event(0x03, E[0]) + elif (event == 'instrument_name'): + event_data = _some_text_event(0x04, E[0]) + elif (event == 'lyric'): + event_data = _some_text_event(0x05, E[0]) + elif (event == 'marker'): + event_data = _some_text_event(0x06, E[0]) + elif (event == 'cue_point'): + event_data = _some_text_event(0x07, E[0]) + elif (event == 'text_event_08'): + event_data = _some_text_event(0x08, E[0]) + elif (event == 'text_event_09'): + event_data = _some_text_event(0x09, E[0]) + elif (event == 'text_event_0a'): + event_data = _some_text_event(0x0A, E[0]) + elif (event == 'text_event_0b'): + event_data = _some_text_event(0x0B, E[0]) + elif (event == 'text_event_0c'): + event_data = _some_text_event(0x0C, E[0]) + elif (event == 'text_event_0d'): + event_data = _some_text_event(0x0D, E[0]) + elif (event == 'text_event_0e'): + event_data = _some_text_event(0x0E, E[0]) + elif (event == 'text_event_0f'): + event_data = _some_text_event(0x0F, E[0]) + # End of text meta-events + + elif (event == 'end_track'): + event_data = b"\xFF\x2F\x00" + + elif (event == 'set_tempo'): + #event_data = struct.pack(">BBwa*", 0xFF, 0x51, 3, + # substr( struct.pack('>I', E[0]), 1, 3)) + event_data = b'\xFF\x51\x03'+struct.pack('>I',E[0])[1:] + elif (event == 'smpte_offset'): + # event_data = struct.pack(">BBwBBBBB", 0xFF, 0x54, 5, E[0:5] ) + event_data = struct.pack(">BBBbBBBB", 0xFF,0x54,0x05,E[0],E[1],E[2],E[3],E[4]) + elif (event == 'time_signature'): + # event_data = struct.pack(">BBwBBBB", 0xFF, 0x58, 4, E[0:4] ) + event_data = struct.pack(">BBBbBBB", 0xFF, 0x58, 0x04, E[0],E[1],E[2],E[3]) + elif (event == 'key_signature'): + event_data = struct.pack(">BBBbB", 0xFF, 0x59, 0x02, E[0],E[1]) + elif (event == 'sequencer_specific'): + # event_data = struct.pack(">BBwa*", 0xFF,0x7F, len(E[0]), E[0]) + event_data = _some_text_event(0x7F, E[0]) + # End of Meta-events + + # Other Things... + elif (event == 'sysex_f0'): + #event_data = struct.pack(">Bwa*", 0xF0, len(E[0]), E[0]) + #B=bitstring w=BER-compressed-integer a=null-padded-ascii-str + event_data = bytearray(b'\xF0')+_ber_compressed_int(len(E[0]))+bytearray(bytes(E[0],encoding='ISO-8859-1')) + elif (event == 'sysex_f7'): + #event_data = struct.pack(">Bwa*", 0xF7, len(E[0]), E[0]) + event_data = bytearray(b'\xF7')+_ber_compressed_int(len(E[0]))+bytearray(bytes(E[0],encoding='ISO-8859-1')) + + elif (event == 'song_position'): + event_data = b"\xF2" + _write_14_bit( E[0] ) + elif (event == 'song_select'): + event_data = struct.pack('>BB', 0xF3, E[0] ) + elif (event == 'tune_request'): + event_data = b"\xF6" + elif (event == 'raw_data'): + _warn("_encode: raw_data event not supported") + # event_data = E[0] + continue + # End of Other Stuff + + else: + # The Big Fallthru + if unknown_callback: + # push(@data, &{ $unknown_callback }( @$event_r )) + pass + else: + _warn("Unknown event: "+str(event)) + # To surpress complaint here, just set + # 'unknown_callback' => sub { return () } + continue + + #print "Event $event encoded part 2\n" + if str(type(event_data)).find('str') >= 0: + event_data = bytearray(event_data.encode('Latin1', 'ignore')) + if len(event_data): # how could $event_data be empty + # data.append(struct.pack('>wa*', dtime, event_data)) + # print(' event_data='+str(event_data)) + data.append(_ber_compressed_int(dtime)+event_data) + + return b''.join(data) + diff --git a/tools/midi2piano/midi2piano.py b/tools/midi2piano/midi2piano.py index f4494801d3e..ab57bcc3f18 100644 --- a/tools/midi2piano/midi2piano.py +++ b/tools/midi2piano/midi2piano.py @@ -3,9 +3,12 @@ for copy-and-paste """ from functools import reduce -import midi as mi -import easygui as egui -import pyperclip as pclip +import MidiDependencies as mi +import tkinter as tk +from tkinter import filedialog +from tkinter import messagebox +root = tk.Tk() +root.withdraw() LINE_LENGTH_LIM = 50 LINES_LIMIT = 200 @@ -54,6 +57,7 @@ def notenum2string(num, accidentals, octaves): names = ['C', 'C#', 'D', 'D#', 'E', 'F', 'F#', 'G', 'G#', 'A', 'A#', 'B'] convert_table = {1:0, 3:1, 6:2, 8:3, 10:4} inclusion_table = {0:0, 2:1, 5:2, 7:3, 9:4} + correspondence_table = {0:1, 1:0, 2:3, 3:2, 5:6, 6:5, 7:8, 8:7, 9:10, 10:9} num += OCTAVE_KEYS * OCTAVE_TRANSPOSE octave = int(num / OCTAVE_KEYS) @@ -68,6 +72,8 @@ def notenum2string(num, accidentals, octaves): accidental = (len(names[name_indx]) == 2) output_octaves[name_indx] = octave + if name_indx in correspondence_table: + output_octaves[correspondence_table[name_indx]] = octave add_n = False if accidental: @@ -102,9 +108,8 @@ def obtain_midi_file(): """ Asks user to select MIDI and returns this file opened in binary mode for reading """ - file = egui.fileopenbox(msg='Choose MIDI file to convert', - title='MIDI file selection', - filetypes=[['*.mid', 'MID files']]) + messagebox.showinfo("Midi2Piano Information", "Choose a MIDI file to convert") + file = filedialog.askopenfilename(title='MIDI file selection',filetypes=[['*.mid', 'MID files']]) if not file: return None file = open(file, mode='rb').read() @@ -303,6 +308,6 @@ def main_cycle(): split_music = explode_sheet_music(sheet_music) sheet_music = finalize_sheet_music(split_music, most_frequent_dur) - pclip.copy(sheet_music) + root.clipboard_append(sheet_music) main_cycle() diff --git a/tools/od_annotator/__main__.py b/tools/od_annotator/__main__.py new file mode 100644 index 00000000000..357adccfe91 --- /dev/null +++ b/tools/od_annotator/__main__.py @@ -0,0 +1,50 @@ +import sys +import re + +def green(text): + return "\033[32m" + str(text) + "\033[0m" + +def red(text): + return "\033[31m" + str(text) + "\033[0m" + +def annotate(raw_output): + # Remove ANSI escape codes + raw_output = re.sub(r'(\x9B|\x1B\[)[0-?]*[ -\/]*[@-~]', '', raw_output) + + print("::group::OpenDream Output") + print(raw_output) + print("::endgroup::") + + annotation_regex = r'((?PError|Warning) (?POD(?P\d{4})) at (?P(?P.+):(?P\d+):(?P\d+)|): (?P.+))' + failures_detected = False + expected_failure_case_detected = False # this is just here so this script breaks if we forget to set it to True when we expect a failure. remove this when we have handled the expected failure + + print("OpenDream Code Annotations:") + for annotation in re.finditer(annotation_regex, raw_output): + message = annotation['message'] + if message == "Unimplemented proc & var warnings are currently suppressed": # this happens every single run, it's important to know about it but we don't need to throw an error + message += " (This is expected and can be ignored)" # also there's no location for it to annotate to since it's an failure. + expected_failure_case_detected = True + + if annotation['type'] == "Error": + failures_detected = True + + error_string = f"{annotation['errorcode']}: {message}" + + if annotation['location'] == "": + print(f"::{annotation['type']} file=,line=,col=::{error_string}") + else: + print(f"::{annotation['type']} file={annotation['filename']},line={annotation['line']},col={annotation['column']}::{error_string}") + + if failures_detected: + sys.exit(1) + return + + if not expected_failure_case_detected: + print(red("Failed to detect the expected failure case! If you have recently changed how we work with OpenDream Pragmas, please fix the od_annotator script!")) + sys.exit(1) + return + + print(green("No OpenDream issues found!")) + +annotate(sys.stdin.read()) diff --git a/tools/pull_request_hooks/rerunFlakyTests.js b/tools/pull_request_hooks/rerunFlakyTests.js new file mode 100644 index 00000000000..6625d9caa8c --- /dev/null +++ b/tools/pull_request_hooks/rerunFlakyTests.js @@ -0,0 +1,293 @@ +const LABEL = "🤖 Flaky Test Report"; +const TITLE_BOT_HEADER = "title: "; + +// Only check jobs that start with these. +// Helps make sure we don't restart something like screenshot tests or linters, which are not known to be flaky. +const CONSIDERED_JOBS = [ + "Integration Tests", +]; + +async function getFailedJobsForRun(github, context, workflowRunId, runAttempt) { + const { + data: { jobs }, + } = await github.rest.actions.listJobsForWorkflowRunAttempt({ + owner: context.repo.owner, + repo: context.repo.repo, + run_id: workflowRunId, + attempt_number: runAttempt, + }); + + return jobs + .filter((job) => job.conclusion === "failure") + .filter((job) => + CONSIDERED_JOBS.some((title) => job.name.startsWith(title)) + ); +} + +export async function rerunFlakyTests({ github, context }) { + const failingJobs = await getFailedJobsForRun( + github, + context, + context.payload.workflow_run.id, + context.payload.workflow_run.run_attempt + ); + + if (failingJobs.length > 1) { + console.log("Multiple jobs failing. PROBABLY not flaky, not rerunning."); + return; + } + + if (failingJobs.length === 0) { + throw new Error( + "rerunFlakyTests should not have run on a run with no failing jobs" + ); + } + + github.rest.actions.reRunWorkflowFailedJobs({ + owner: context.repo.owner, + repo: context.repo.repo, + run_id: context.payload.workflow_run.id, + }); +} + +// Tries its best to extract a useful error title and message for the given log +export function extractDetails(log) { + // Strip off timestamp + const lines = log.split(/^[0-9.:T\-]*?Z /gm); + + const failureRegex = /^\t?FAILURE #(?[0-9]+): (?.+)/; + const groupRegex = /^##\[group\](?.+)/; + + const failures = []; + let lastGroup = "root"; + let loggingFailure; + + const newFailure = (failureMatch) => { + const { headline } = failureMatch.groups; + + loggingFailure = { + headline, + group: lastGroup.replace("/datum/unit_test/", ""), + details: [], + }; + }; + + for (const line of lines) { + const groupMatch = line.match(groupRegex); + if (groupMatch) { + lastGroup = groupMatch.groups.group.trim(); + continue; + } + + const failureMatch = line.match(failureRegex); + + if (loggingFailure === undefined) { + if (!failureMatch) { + continue; + } + + newFailure(failureMatch); + } else if (failureMatch || line.startsWith("##")) { + failures.push(loggingFailure); + loggingFailure = undefined; + + if (failureMatch) { + newFailure(failureMatch); + } + } else { + loggingFailure.details.push(line.trim()); + } + } + + // We had no logged failures, there's not really anything we can do here + if (failures.length === 0) { + return { + title: "Flaky test failure with no obvious source", + failures, + }; + } + + // We *could* create multiple failures for multiple groups. + // This would be important if we had multiple flaky tests at the same time. + // I'm choosing not to because it complicates this logic a bit, has the ability to go terribly wrong, + // and also because there's something funny to me about that increasing the urgency of fixing + // flaky tests. If it becomes a serious issue though, I would not mind this being fixed. + const uniqueGroups = new Set(failures.map((failure) => failure.group)); + + if (uniqueGroups.size > 1) { + return { + title: `Multiple flaky test failures in ${Array.from(uniqueGroups) + .sort() + .join(", ")}`, + failures, + }; + } + + const failGroup = failures[0].group; + + if (failures.length > 1) { + return { + title: `Multiple errors in flaky test ${failGroup}`, + failures, + }; + } + + const failure = failures[0]; + + // Common patterns where we can always get a detailed title + const runtimeMatch = failure.headline.match(/Runtime in .+?: (?.+)/); + if (runtimeMatch) { + const runtime = runtimeMatch.groups.error.trim(); + + const invalidTimerMatch = runtime.match(/^Invalid timer:.+object:(?[^[]+).*delegate:(?.+?), source:/); + if (invalidTimerMatch) { + return { + title: `Flaky test ${failGroup}: Invalid timer: ${invalidTimerMatch.groups.proc.trim()} on ${invalidTimerMatch.groups.object.trim()}`, + failures, + }; + } + + return { + title: `Flaky test ${failGroup}: ${runtime}`, + failures, + }; + } + + const hardDelMatch = failure.headline.match(/^(?\/[\w/]+) hard deleted .* times out of a total del count of/); + if (hardDelMatch) { + return { + title: `Flaky hard delete: ${hardDelMatch.groups.object}`, + failures, + }; + } + + // Try to normalize the title and remove anything that might be variable + const normalizedError = failure.headline.replace(/\s*at .+?:[0-9]+.*/g, ""); // " at code.dm:123" + + return { + title: `Flaky test ${failGroup}: ${normalizedError}`, + failures, + }; +} + +async function getExistingIssueId(graphql, context, title) { + // Hope you never have more than 100 of these open! + const { + repository: { + issues: { nodes: openFlakyTestIssues }, + }, + } = await graphql( + ` + query ($owner: String!, $repo: String!, $label: String!) { + repository(owner: $owner, name: $repo) { + issues( + labels: [$label] + first: 100 + orderBy: { field: CREATED_AT, direction: DESC } + states: [OPEN] + ) { + nodes { + number + title + body + } + } + } + } + `, + { + owner: context.repo.owner, + repo: context.repo.repo, + label: LABEL, + } + ); + + const exactTitle = openFlakyTestIssues.find((issue) => issue.title === title); + if (exactTitle !== undefined) { + return exactTitle.number; + } + + const foundInBody = openFlakyTestIssues.find((issue) => + issue.body.includes(``) + ); + if (foundInBody !== undefined) { + return foundInBody.number; + } + + return undefined; +} + +function createBody({ title, failures }, runUrl) { + return ` + + + + Flaky tests were detected in [this test run](${runUrl}). This means that there was a failure that was cleared when the tests were simply restarted. + + Failures: + \`\`\` + ${failures + .map( + (failure) => + `${failure.group}: ${failure.headline}\n\t${failure.details.join("\n")}` + ) + .join("\n")} + \`\`\` + `.replace(/^\s*/gm, ""); +} + +export async function reportFlakyTests({ github, context }) { + const failedJobsFromLastRun = await getFailedJobsForRun( + github, + context, + context.payload.workflow_run.id, + context.payload.workflow_run.run_attempt - 1 + ); + + // This could one day be relaxed if we face serious enough flaky test problems, so we're going to loop anyway + if (failedJobsFromLastRun.length !== 1) { + console.log( + "Multiple jobs failing after retry, assuming maintainer rerun." + ); + + return; + } + + for (const job of failedJobsFromLastRun) { + const { data: log } = + await github.rest.actions.downloadJobLogsForWorkflowRun({ + owner: context.repo.owner, + repo: context.repo.repo, + job_id: job.id, + }); + + const details = extractDetails(log); + + const existingIssueId = await getExistingIssueId( + github.graphql, + context, + details.title + ); + + if (existingIssueId !== undefined) { + // Maybe in the future, if it's helpful, update the existing issue with new links + console.log(`Existing issue found: #${existingIssueId}`); + return; + } + + await github.rest.issues.create({ + owner: context.repo.owner, + repo: context.repo.repo, + title: details.title, + labels: [LABEL], + body: createBody( + details, + `https://github.com/${context.repo.owner}/${ + context.repo.repo + }/actions/runs/${context.payload.workflow_run.id}/attempts/${ + context.payload.workflow_run.run_attempt - 1 + }` + ), + }); + } +} diff --git a/tools/pull_request_hooks/rerunFlakyTests.test.js b/tools/pull_request_hooks/rerunFlakyTests.test.js new file mode 100644 index 00000000000..6a3300ff59b --- /dev/null +++ b/tools/pull_request_hooks/rerunFlakyTests.test.js @@ -0,0 +1,45 @@ +import { strict as assert } from "node:assert"; +import fs from "node:fs"; +import { extractDetails } from "./rerunFlakyTests.js"; + +function extractDetailsFromPayload(filename) { + return extractDetails( + fs.readFileSync(`tests/flakyTestPayloads/${filename}.txt`, { + encoding: "utf8", + }) + ); +} + +const chatClient = extractDetailsFromPayload("chat_client"); +assert.equal( + chatClient.title, + "Flaky hard delete: /datum/computer_file/program/chatclient" +); +assert.equal(chatClient.failures.length, 1); + +const monkeyBusiness = extractDetailsFromPayload("monkey_business"); +assert.equal( + monkeyBusiness.title, + "Flaky test monkey_business: Cannot execute null.resolve()." +); +assert.equal(monkeyBusiness.failures.length, 1); + +const shapeshift = extractDetailsFromPayload("shapeshift"); +assert.equal( + shapeshift.title, + "Multiple errors in flaky test shapeshift_spell" +); +assert.equal(shapeshift.failures.length, 16); + +const multipleFailures = extractDetailsFromPayload("multiple_failures"); +assert.equal( + multipleFailures.title, + "Multiple flaky test failures in more_shapeshift_spell, shapeshift_spell" +); +assert.equal(multipleFailures.failures.length, 2); + +const invalidTimer = extractDetailsFromPayload("invalid_timer"); +assert.equal( + invalidTimer.title, + "Flaky test monkey_business: Invalid timer: /datum/looping_sound/proc/start_sound_loop() on /datum/looping_sound/showering" +); diff --git a/tools/ticked_file_enforcement/schemas/tgmc_dme.json b/tools/ticked_file_enforcement/schemas/tgmc_dme.json new file mode 100644 index 00000000000..e1d4259b7d8 --- /dev/null +++ b/tools/ticked_file_enforcement/schemas/tgmc_dme.json @@ -0,0 +1,10 @@ +{ + "file": "tgmc.dme", + "scannable_directory": "code/", + "subdirectories": true, + "excluded_files": [], + "forbidden_includes": [ + "code/modules/tgs/**/*.dm", + "code/modules/unit_tests/[!_]*.dm" + ] +} diff --git a/tools/ticked_file_enforcement/schemas/unit_tests.json b/tools/ticked_file_enforcement/schemas/unit_tests.json new file mode 100644 index 00000000000..f5b7582096b --- /dev/null +++ b/tools/ticked_file_enforcement/schemas/unit_tests.json @@ -0,0 +1,9 @@ +{ + "file": "code/modules/unit_tests/_unit_tests.dm", + "scannable_directory": "code/modules/unit_tests/", + "subdirectories": false, + "excluded_files": [ + "find_reference_sanity.dm" + ], + "forbidden_includes": [] +} diff --git a/tools/ticked_file_enforcement/ticked_file_enforcement.py b/tools/ticked_file_enforcement/ticked_file_enforcement.py new file mode 100644 index 00000000000..86c399c7355 --- /dev/null +++ b/tools/ticked_file_enforcement/ticked_file_enforcement.py @@ -0,0 +1,156 @@ +import codecs +import fnmatch +import functools +import glob +import json +import os +import sys + +# simple way to check if we're running on github actions, or on a local machine +on_github = os.getenv("GITHUB_ACTIONS") == "true" + +def green(text): + return "\033[32m" + str(text) + "\033[0m" + +def red(text): + return "\033[31m" + str(text) + "\033[0m" + +def blue(text): + return "\033[34m" + str(text) + "\033[0m" + +schema = json.load(sys.stdin) +file_reference = schema["file"] +file_reference_basename = os.path.basename(file_reference) +scannable_directory = schema["scannable_directory"] +subdirectories = schema["subdirectories"] +FORBIDDEN_INCLUDES = schema["forbidden_includes"] +excluded_files = schema["excluded_files"] + +def post_error(string): + print(red(f"Ticked File Enforcement [{file_reference}]: " + string)) + if on_github: + print(f"::error file={file_reference},line=1,title=Ticked File Enforcement::{string}") + +for excluded_file in excluded_files: + full_file_path = scannable_directory + excluded_file + if not os.path.isfile(full_file_path): + post_error(f"Excluded file {full_file_path} does not exist, please remove it!") + sys.exit(1) + +file_extensions = ("dm", "dmf") + +reading = False +lines = [] +total = 0 + +with open(file_reference, 'r') as file: + for line in file: + total += 1 + line = line.strip() + + if line == "// BEGIN_INCLUDE": + reading = True + continue + elif line == "// END_INCLUDE": + break + elif not reading: + continue + + lines.append(line) + +offset = total - len(lines) +print(blue(f"Ticked File Enforcement: {offset} lines were ignored in output for [{file_reference}].")) +fail_no_include = False + +scannable_files = [] +for file_extension in file_extensions: + compiled_directory = f"{scannable_directory}/**/*.{file_extension}" + scannable_files += glob.glob(compiled_directory, recursive=True) + +if len(scannable_files) == 0: + post_error(f"No files were found in {scannable_directory}. Ticked File Enforcement has failed!") + sys.exit(1) + +for code_file in scannable_files: + dm_path = "" + + if subdirectories is True: + dm_path = code_file.replace('/', '\\') + else: + dm_path = os.path.basename(code_file) + + included = f"#include \"{dm_path}\"" in lines + + forbid_include = False + for forbidable in FORBIDDEN_INCLUDES: + if not fnmatch.fnmatch(code_file, forbidable): + continue + + forbid_include = True + + if included: + post_error(f"{dm_path} should NOT be included.") + fail_no_include = True + + if forbid_include: + continue + + if not included: + if(dm_path == file_reference_basename): + continue + + if(dm_path in excluded_files): + continue + + post_error(f"Missing include for {dm_path}.") + fail_no_include = True + +if fail_no_include: + sys.exit(1) + +def compare_lines(a, b): + # Remove initial include as well as the final quotation mark + a = a[len("#include \""):-1].lower() + b = b[len("#include \""):-1].lower() + + split_by_period = a.split('.') + a_suffix = "" + if len(split_by_period) >= 2: + a_suffix = split_by_period[len(split_by_period) - 1] + split_by_period = b.split('.') + b_suffix = "" + if len(split_by_period) >= 2: + b_suffix = split_by_period[len(split_by_period) - 1] + + a_segments = a.split('\\') + b_segments = b.split('\\') + + for (a_segment, b_segment) in zip(a_segments, b_segments): + a_is_file = a_segment.endswith(file_extensions) + b_is_file = b_segment.endswith(file_extensions) + + # code\something.dm will ALWAYS come before code\directory\something.dm + if a_is_file and not b_is_file: + return -1 + + if b_is_file and not a_is_file: + return 1 + + # interface\something.dm will ALWAYS come after code\something.dm + if a_segment != b_segment: + # if we're at the end of a compare, then this is about the file name + # files with longer suffixes come after ones with shorter ones + if a_suffix != b_suffix: + return (a_suffix > b_suffix) - (a_suffix < b_suffix) + return (a_segment > b_segment) - (a_segment < b_segment) + + print(f"Two lines were exactly the same ({a} vs. {b})") + sys.exit(1) + +sorted_lines = sorted(lines, key = functools.cmp_to_key(compare_lines)) +for (index, line) in enumerate(lines): + if sorted_lines[index] != line: + post_error(f"The include at line {index + offset} is out of order ({line}, expected {sorted_lines[index]})") + sys.exit(1) + +print(green(f"Ticked File Enforcement: [{file_reference}] All includes (for {len(scannable_files)} scanned files) are in order!")) diff --git a/tools/tts/tts-api/Dockerfile b/tools/tts/tts-api/Dockerfile index 482cda7bae3..a317b4ac0d9 100644 --- a/tools/tts/tts-api/Dockerfile +++ b/tools/tts/tts-api/Dockerfile @@ -24,6 +24,8 @@ SHELL ["conda", "run", "-n", "intel", "/bin/bash", "-c"] # Setup python requirements and install the TTS python module into the new intel anaconda environment. RUN pip install Flask &&\ pip install waitress &&\ + pip install pysbd &&\ + pip install pydub &&\ pip cache purge COPY . /root diff --git a/tools/tts/tts-api/tts-api.py b/tools/tts/tts-api/tts-api.py index e1a5880da5b..aae02012871 100644 --- a/tools/tts/tts-api/tts-api.py +++ b/tools/tts/tts-api/tts-api.py @@ -15,7 +15,7 @@ segmenter = pysbd.Segmenter(language="en", clean=True) radio_starts = ["./on1.wav", "./on2.wav"] radio_ends = ["./off1.wav", "./off2.wav", "./off3.wav", "./off4.wav"] -authorization_token = os.getenv("TTS_AUTHORIZATION_TOKEN", "vote_goof_2024") +authorization_token = os.getenv("TTS_AUTHORIZATION_TOKEN", "coolio") def hhmmss_to_seconds(string): new_time = 0 separated_times = string.split(":") diff --git a/tools/tts/tts/Dockerfile b/tools/tts/tts/Dockerfile index 5dac1237d85..c35809832ae 100644 --- a/tools/tts/tts/Dockerfile +++ b/tools/tts/tts/Dockerfile @@ -26,8 +26,8 @@ RUN pip install Flask &&\ pip install waitress &&\ pip install llvmlite --ignore-installed &&\ pip install torch torchaudio --extra-index-url https://download.pytorch.org/whl/cu118 &&\ - pip install TTS &&\ pip install pydub &&\ + pip install TTS &&\ pip cache purge COPY . /root