diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm index 0b9be19711..d7c76cc2dd 100644 --- a/code/__DEFINES/__game.dm +++ b/code/__DEFINES/__game.dm @@ -40,6 +40,7 @@ #define MAP_NEW_VARADERO_REPAIRED "New Varadero Repaired" #define MAP_CHINOOK "Chinook 91 GSO" //admin level #define MAP_DERELICT_ALMAYER "Derelict Almayer" +#define MAP_BOSENMORI_BASHO "LV-624 Bosenmori Basho" #define GAMEMODE_WHISKEY_OUTPOST "Whiskey Outpost" #define GAMEMODE_HIVE_WARS "Hive Wars" diff --git a/code/datums/weather/weather_events/bosenmori_basho.dm b/code/datums/weather/weather_events/bosenmori_basho.dm new file mode 100644 index 0000000000..73ef175e5c --- /dev/null +++ b/code/datums/weather/weather_events/bosenmori_basho.dm @@ -0,0 +1,41 @@ +/datum/weather_event/dust + name = "Duststorm" + display_name = "Duststorm" + length = 10 MINUTES + turf_overlay_icon_state = "bigred_dust" + + effect_message = "You feel dust blow into every crevice of your body, annoying." + damage_per_tick = 0 + damage_type = BRUTE + + ambience = 'sound/ambience/strata/strata_snow.ogg' + + fire_smothering_strength = 1 + +/datum/weather_event/sand + name = "Sandstorm" + display_name = "Sandstorm" + length = 6 MINUTES + turf_overlay_icon_state = "bigred_sand" + + effect_message = "You feel sand scraping the upper layers of your exterior away!" + damage_per_tick = 0 + damage_type = BRUTE + + ambience = 'sound/ambience/strata/strata_snowstorm.ogg' + + fire_smothering_strength = 2 + +/datum/weather_event/rock + name = "Rockstorm" + display_name = "Rockstorm" + length = 4 MINUTES + turf_overlay_icon_state = "bigred_rocks" + + effect_message = "You feel multiple small rocks hit all over your body!" + damage_per_tick = 3 + damage_type = BRUTE + + ambience = 'sound/ambience/strata/strata_blizzard.ogg' + + fire_smothering_strength = 3 diff --git a/code/datums/weather/weather_map_holders/bosenmori_basho.dm b/code/datums/weather/weather_map_holders/bosenmori_basho.dm new file mode 100644 index 0000000000..1adb782374 --- /dev/null +++ b/code/datums/weather/weather_map_holders/bosenmori_basho.dm @@ -0,0 +1,16 @@ +/datum/weather_ss_map_holder/bosenmori_basho + name = "Calliope Highway Map Holder" + + min_time_between_events = 20 MINUTES + no_weather_turf_icon_state = "strata_clearsky" + + potential_weather_events = list( + /datum/weather_event/dust, + /datum/weather_event/sand, + ) + +/datum/weather_ss_map_holder/bosenmori_basho/should_affect_area(area/A) + return !CEILING_IS_PROTECTED(A.ceiling, CEILING_GLASS) + +/datum/weather_ss_map_holder/bosenmori_basho/should_start_event() + return prob(PROB_WEATHER_BIG_RED) diff --git a/code/game/area/Bosenmori_Basho.dm b/code/game/area/Bosenmori_Basho.dm new file mode 100644 index 0000000000..ce661b12b9 --- /dev/null +++ b/code/game/area/Bosenmori_Basho.dm @@ -0,0 +1,203 @@ +//==================================================================BOSENMORI BASHO +//BASE +/area/bosenmori + name = "Bosenmori Basho" + icon_state = "lv626" + can_build_special = TRUE + powernet_name = "ground" + minimap_color = MINIMAP_AREA_COLONY +//============================================================PARENTS +/area/bosenmori/outside + name = "Bosenmori Wilds" + ceiling = CEILING_NONE +/area/bosenmori/interior_glass + name = "Bosenmori Glass" + ceiling = CEILING_GLASS +/area/bosenmori/interior_regular + name = "Bosenmori Roofing" + ceiling = CEILING_METAL +/area/bosenmori/interior_heavy + name = "Bosenmori Secured Roofing" + ceiling = CEILING_REINFORCED_METAL +/area/bosenmori/mountain + name = "Bosenmori Mountain" + ceiling = CEILING_DEEP_UNDERGROUND +/area/bosenmori/oob + name = "oob" + ceiling = CEILING_METAL +//============================================================SHUTTLES +/area/bosenmori/shuttles/drop1 + name = "Bosenmori Basho - Cargo Landing" + icon_state = "shuttle" + icon = 'icons/turf/area_varadero.dmi' + minimap_color = MINIMAP_AREA_LZ + base_lighting_alpha = 50 +/area/bosenmori/shuttles/drop2 + name = "Bosenmori Basho - Corporate Landing" + icon_state = "shuttle2" + icon = 'icons/turf/area_varadero.dmi' + minimap_color = MINIMAP_AREA_LZ + base_lighting_alpha = 50 +/area/bosenmori/shuttles/drop3 + name = "Bosenmori Basho - Mountain Landing" + icon_state = "shuttle2" + icon = 'icons/turf/area_varadero.dmi' + minimap_color = MINIMAP_AREA_LZ + base_lighting_alpha = 50 +//============================================================NEXUS +/area/bosenmori/interior_glass/nexus + name = "Nexus Main Hall" + icon_state = "hallC1" + base_lighting_alpha = 50 +/area/bosenmori/interior_regular/security + name = "Security Department" + icon_state = "security" + base_lighting_alpha = 50 +/area/bosenmori/interior_regular/security_armory + name = "Armory" + icon_state = "armory" + base_lighting_alpha = 50 +/area/bosenmori/interior_regular/kitchen + name = "Kitchen Department" + icon_state = "kitchen" + base_lighting_alpha = 50 +/area/bosenmori/interior_regular/store + name = "Store Department" + icon_state = "store" + base_lighting_alpha = 50 +/area/bosenmori/interior_regular/operations + name = "Colony Operation Center" + icon_state = "command" + base_lighting_alpha = 50 +/area/bosenmori/interior_glass/cargo + name = "Cargo Department" + icon_state = "cargo" + base_lighting_alpha = 50 +/area/bosenmori/interior_glass/shipment + name = "Shipment Department" + icon_state = "cargo2" + base_lighting_alpha = 50 +/area/bosenmori/interior_glass/tree + name = "Terrarium" + icon_state = "green" + base_lighting_alpha = 50 +//============================================================SOUTH DOMES +/area/bosenmori/interior_regular/engineering + name = "Engineering Department" + icon_state = "engineering" + base_lighting_alpha = 50 +/area/bosenmori/interior_regular/telecommunication + name = "Telecommunication Department" + icon_state = "yellow" + base_lighting_alpha = 50 +/area/bosenmori/interior_heavy/secured_armory + name = "Secured Armory" + icon_state = "storage" + base_lighting_alpha = 50 +/area/bosenmori/interior_glass/corporate + name = "Weyland-Yutani Corporate Dome" + icon_state = "blueold" + base_lighting_alpha = 50 +//============================================================NORTH DOMES above tree +/area/bosenmori/interior_glass/offices + name = "Human Resources Department" + icon_state = "blueold" + base_lighting_alpha = 50 +/area/bosenmori/interior_glass/fitness + name = "Bosenmori Extreme Physical Rehabilitation Department" + icon_state = "fitness" + base_lighting_alpha = 50 +/area/bosenmori/interior_regular/research + name = "Research Department" + icon_state = "research" + base_lighting_alpha = 50 +/area/bosenmori/interior_glass/living + name = "Living Sector" + icon_state = "dormitory" + base_lighting_alpha = 50 +/area/bosenmori/interior_glass/hospital + name = "Medical Department" + icon_state = "medbay" + base_lighting_alpha = 50 +/area/bosenmori/interior_glass/food_processing + name = "Food Processing Department" + icon_state = "hydroponics" + base_lighting_alpha = 50 +/area/bosenmori/interior_glass/filtration + name = "Filtration Department" + icon_state = "filtration" + base_lighting_alpha = 50 +//============================================================COLONY PROPER EXTERIOR +/area/bosenmori/outside/cargo + name = "Construction Site" + icon_state = "cargo" + base_lighting_alpha = 50 +/area/bosenmori/outside/east_area + name = "Southeast Sector" + icon_state = "southeast" + base_lighting_alpha = 50 +/area/bosenmori/outside/south_area + name = "Southwest Sector" + icon_state = "southwest" + base_lighting_alpha = 50 +/area/bosenmori/outside/west_area + name = "West Sector" + icon_state = "west" + base_lighting_alpha = 50 +/area/bosenmori/outside/north_area + name = "North Sector" + icon_state = "north" + base_lighting_alpha = 50 +/area/bosenmori/outside/west_barrens + name = "West Barrens" + icon_state = "west" + base_lighting_alpha = 50 +/area/bosenmori/outside/north_barrens + name = "North Barrens" + icon_state = "red" + base_lighting_alpha = 50 +/area/bosenmori/outside/east_barrens + name = "East Barrens" + icon_state = "east" + base_lighting_alpha = 50 +/area/bosenmori/outside/filtration + name = "Filtration Sector" + icon_state = "bluered" + base_lighting_alpha = 50 +/area/bosenmori/outside/river + name = "Bosenmori River" + icon_state = "blue" + base_lighting_alpha = 50 +//============================================================CAVES +/area/bosenmori/mountain/mining + name = "Mining Sector" + icon_state = "mining" + base_lighting_alpha = 20 +/area/bosenmori/mountain/abandoned + name = "Abandoned Sector" + icon_state = "cave" + base_lighting_alpha = 20 +/area/bosenmori/mountain/pilgrim + name = "Pilgrim Path" + icon_state = "away1" + base_lighting_alpha = 20 +/area/bosenmori/mountain/river + name = "Cavern River" + icon_state = "blue" + base_lighting_alpha = 20 +/area/bosenmori/mountain/field_post + name = "Field Research Site" + icon_state = "away2" + base_lighting_alpha = 20 +/area/bosenmori/mountain/temple_proper + name = "Temple Proper" + icon_state = "away3" + base_lighting_alpha = 20 +/area/bosenmori/mountain/temple_ruins + name = "Ruins Perimeter" + icon_state = "away" + base_lighting_alpha = 20 +/area/bosenmori/mountain/clearing + name = "Mountain Clearing" + icon_state = "away1" + base_lighting_alpha = 35 diff --git a/code/modules/cm_marines/equipment/maps.dm b/code/modules/cm_marines/equipment/maps.dm index fb60e78c47..ccc247a0a7 100644 --- a/code/modules/cm_marines/equipment/maps.dm +++ b/code/modules/cm_marines/equipment/maps.dm @@ -168,6 +168,7 @@ GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps()) MAP_NEW_VARADERO = new /obj/item/map/new_varadero(), MAP_NEW_VARADERO_REPAIRED = new /obj/item/map/new_varadero(), MAP_DERELICT_ALMAYER = new /obj/item/map/almayer(), + MAP_BOSENMORI_BASHO = new /obj/item/map/lazarus_landing_map(), ) //used by marine equipment machines to spawn the correct map. diff --git a/colonialmarines.dme b/colonialmarines.dme index b044e744ea..09adda1768 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -722,6 +722,7 @@ #include "code\datums\weather\weather_event.dm" #include "code\datums\weather\weather_map_holder.dm" #include "code\datums\weather\weather_events\big_red.dm" +#include "code\datums\weather\weather_events\bosenmori_basho.dm" #include "code\datums\weather\weather_events\faction_clash.dm" #include "code\datums\weather\weather_events\long.dm" #include "code\datums\weather\weather_events\lv522_chances_claim.dm" @@ -729,6 +730,7 @@ #include "code\datums\weather\weather_events\new_varadero.dm" #include "code\datums\weather\weather_events\sorokyne.dm" #include "code\datums\weather\weather_map_holders\big_red.dm" +#include "code\datums\weather\weather_map_holders\bosenmori_basho.dm" #include "code\datums\weather\weather_map_holders\faction_clash.dm" #include "code\datums\weather\weather_map_holders\lv522_chances_claim.dm" #include "code\datums\weather\weather_map_holders\lv624.dm" @@ -763,6 +765,7 @@ #include "code\game\area\areas.dm" #include "code\game\area\areas_event.dm" #include "code\game\area\BigRed.dm" +#include "code\game\area\Bosenmori_Basho.dm" #include "code\game\area\ChigusaShipyard.dm" #include "code\game\area\chinook.dm" #include "code\game\area\Corsat.dm" diff --git a/map_config/maps.txt b/map_config/maps.txt index efeba0d0b4..9130e66ce8 100644 --- a/map_config/maps.txt +++ b/map_config/maps.txt @@ -73,3 +73,6 @@ endmap map whiskey_outpost_v2 endmap + +map bosenmori_basho +endmap diff --git a/maps/bosenmori_basho.json b/maps/bosenmori_basho.json new file mode 100644 index 0000000000..99b784ab7e --- /dev/null +++ b/maps/bosenmori_basho.json @@ -0,0 +1,14 @@ +{ + "map_name": "Bosenmori Basho", + "short_name": "Bosenmori", + "map_path": "map_files/LV624_Bosenmori_Basho", + "map_file": "LV624 Bosenmori Basho.dmm", + "webmap_url": "lv624", + + "weather_holder": "/datum/weather_ss_map_holder/bosenmori", + + "map_item_type": "/obj/item/map/lazarus_landing_map", + + "camouflage": "desert" + +} diff --git a/maps/map_files/LV624_Bosenmori_Basho/LV624 Bosenmori Basho.dmm b/maps/map_files/LV624_Bosenmori_Basho/LV624 Bosenmori Basho.dmm new file mode 100644 index 0000000000..5a27f75ce6 --- /dev/null +++ b/maps/map_files/LV624_Bosenmori_Basho/LV624 Bosenmori Basho.dmm @@ -0,0 +1,67584 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aag" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/nexus) +"aaM" = ( +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"abn" = ( +/obj/structure/bed/chair/office/light{ + dir = 8; + pixel_y = 5; + buckling_y = 5 + }, +/turf/open/floor/prison/west, +/area/bosenmori/interior_regular/security) +"abz" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"abI" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/east, +/area/bosenmori/shuttles/drop2) +"abN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/cell_stripe/east, +/area/bosenmori/interior_glass/corporate) +"acC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/abandoned) +"acN" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/structure/machinery/computer/emails{ + pixel_x = 0; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/offices) +"acS" = ( +/obj/item/ore/diamond, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"adk" = ( +/turf/open/floor/redyellowfull, +/area/bosenmori/interior_regular/kitchen) +"adC" = ( +/obj/item/fuel_cell/used{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/fuel_cell/used{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/fuel_cell/used, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_regular/engineering) +"aeb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/bosenmori/interior_glass/tree) +"aew" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1; + color = "#8B7B5B" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + desc = "A small desktop computer. Someone has switched to personal emails and disabled the inventory sort system."; + icon_state = "alert:2"; + name = "inventory computer"; + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/cargo) +"aez" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1; + color = "#8B7B5B" + }, +/obj/structure/machinery/door/window/westleft{ + dir = 2 + }, +/obj/item/ashtray/plastic{ + pixel_y = 8; + pixel_x = -7 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/cargo) +"aeF" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/carpet, +/area/bosenmori/interior_glass/fitness) +"afM" = ( +/obj/structure/platform/mineral/sandstone/runed, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"afU" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera{ + c_tag = "Research - Fitness"; + colony_camera_mapload = 0; + dir = 8; + network = list("Corporate") + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/fitness) +"afV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"agg" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"ags" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/filtration) +"agU" = ( +/obj/structure/flora/tree/joshua, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"ahi" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + name = "Post"; + pixel_x = 16; + pixel_y = 16; + density = 0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + name = "Post"; + pixel_x = -16; + pixel_y = 16; + density = 0 + }, +/obj/structure/sign/safety/one{ + pixel_y = 22; + pixel_x = 14; + name = "marker one" + }, +/obj/structure/sign/safety/west{ + pixel_x = 1; + pixel_y = 22 + }, +/turf/open/floor/plating/asteroidfloor, +/area/bosenmori/mountain/field_post) +"ahm" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/grass1, +/area/bosenmori/interior_glass/tree) +"ahu" = ( +/obj/structure/prop/brazier/frame/full/campfire, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/clearing) +"ahG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/nexus) +"ahH" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/bosenmori/mountain/pilgrim) +"aie" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera{ + c_tag = "Cargo - Section B"; + colony_camera_mapload = 0; + dir = 4; + network = list("Corporate") + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"aif" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"aim" = ( +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_x = 8; + pixel_y = 9 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/fitness) +"aiV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 0; + pixel_x = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/offices) +"aiZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/fitness) +"ajv" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"akV" = ( +/obj/structure/window/reinforced, +/turf/open/floor/almayer/tcomms, +/area/bosenmori/interior_heavy/secured_armory) +"akW" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"akZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/nexus) +"alf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/nexus) +"alN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/bosenmori/interior_glass/shipment) +"amt" = ( +/obj/structure/cargo_container/seegson/right, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"amy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bosenmori/outside/cargo) +"amD" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = -1; + pixel_y = 10 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"anh" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"anj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/bosenmori/interior_regular/store) +"anE" = ( +/obj/structure/machinery/vending/hydroseeds, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"anM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor, +/area/bosenmori/interior_glass/living) +"anQ" = ( +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/desert, +/area/bosenmori/interior_glass/nexus) +"aoa" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"aor" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/machinery/camera{ + c_tag = "Nexus - Tree"; + colony_camera_mapload = 0; + dir = 8; + network = list("Corporate") + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"aoK" = ( +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.2 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/bosenmori/outside/filtration) +"aoM" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"apa" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/box/beakers, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"apn" = ( +/obj/item/stool{ + icon_state = "stool_alt"; + pixel_x = -2; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"apF" = ( +/obj/structure/platform/mineral/sandstone/runed, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/void, +/area/bosenmori/mountain/temple_proper) +"apU" = ( +/turf/open/desert/desert_shore/shore_corner2, +/area/bosenmori/outside/east_barrens) +"aqe" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_area) +"aqg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/lady_finger{ + pixel_x = 7; + pixel_y = -6 + }, +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_x = 8; + pixel_y = -3 + }, +/obj/structure/machinery/door_control/brbutton/alt{ + pixel_x = -7; + pixel_y = 10; + id = "armory_wy"; + name = "Armory Access"; + req_one_access = "207" + }, +/obj/structure/machinery/door_control/brbutton/alt{ + pixel_y = 10; + pixel_x = 7; + id = "admin_blast"; + name = "Corporate Lockdown" + }, +/turf/open/floor/greengrid, +/area/bosenmori/interior_glass/corporate) +"aqQ" = ( +/obj/structure/machinery/door/airlock/sandstone/runed{ + name = "\improper Heavy Strange Temple Door" + }, +/turf/open/floor/kutjevo/tiles, +/area/bosenmori/mountain/temple_proper) +"aqU" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/mining) +"arb" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/pouch/vials{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/item/storage/pouch/autoinjector{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/storage/pouch/general/medium{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/pouch/general/medium{ + pixel_x = 6; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"arh" = ( +/obj/structure/closet/crate, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"asd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"ase" = ( +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/field_post) +"asX" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/corporate) +"atD" = ( +/obj/structure/machinery/camera{ + c_tag = "Research - Hallway"; + colony_camera_mapload = 0; + network = list("Corporate") + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"atF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/bosenmori/interior_regular/store) +"atJ" = ( +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"atV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"aub" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/kitchen) +"auv" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1; + color = "#8B7B5B" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/north, +/area/bosenmori/interior_glass/cargo) +"auD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/telecommunication) +"auH" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"auW" = ( +/turf/open/floor/asteroidwarning, +/area/bosenmori/outside/filtration) +"avq" = ( +/obj/structure/prop/rock, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"avJ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop1) +"avS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/cargo) +"avX" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_y = 19; + pixel_x = 19 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"awb" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"axc" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating, +/area/bosenmori/outside/south_area) +"axg" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/bosenmori/outside/north_barrens) +"axo" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"axK" = ( +/turf/open/floor, +/area/bosenmori/interior_glass/shipment) +"axT" = ( +/obj/structure/barricade/handrail/strata{ + can_buckle = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/kutjevo/fake_wood, +/area/bosenmori/mountain/pilgrim) +"ayk" = ( +/obj/structure/closet/secure_closet/security/standard{ + pixel_x = -8; + pixel_y = -3; + can_be_stacked = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/prison/darkred2/southeast, +/area/bosenmori/interior_regular/security) +"ayt" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1; + dir = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"ayu" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/bosenmori/outside/north_barrens) +"azj" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"azt" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"azv" = ( +/obj/structure/flora/jungle/treeblocker, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/abandoned) +"azy" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"azQ" = ( +/obj/structure/machinery/light/small/blue{ + dir = 4; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"azT" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/item/paper/crumpled{ + pixel_x = 0; + pixel_y = -8 + }, +/obj/item/paper/crumpled{ + pixel_x = -10; + pixel_y = 0 + }, +/obj/item/prop/flower_vase/redwhiteflowers{ + pixel_x = -10; + pixel_y = 30 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/offices) +"aAp" = ( +/obj/structure/foamed_metal, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/abandoned) +"aAu" = ( +/obj/structure/grille, +/turf/open/gm/dirtgrassborder/desert, +/area/bosenmori/outside/cargo) +"aBf" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/abandoned) +"aBQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/bosenmori/interior_glass/shipment) +"aBT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/outside/north_area) +"aCu" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/field_post) +"aCD" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/offices) +"aCK" = ( +/obj/structure/closet/crate/supply, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"aCS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 7; + pixel_x = 5 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/nexus) +"aDx" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/food/snacks/sliceable/birthdaycake{ + pixel_x = 0; + pixel_y = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"aDN" = ( +/turf/open/floor/plating, +/area/bosenmori/outside/west_area) +"aDV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/prison/darkbrown2/east, +/area/bosenmori/interior_glass/shipment) +"aEi" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"aEn" = ( +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/turf/open/desert, +/area/bosenmori/interior_glass/nexus) +"aEp" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/bosenmori/interior_glass/cargo) +"aEV" = ( +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/desert, +/area/bosenmori/interior_glass/nexus) +"aGB" = ( +/obj/structure/bed/chair/comfy/lime, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"aGL" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/bosenmori/outside/river) +"aGQ" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_ruins) +"aHy" = ( +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_proper) +"aHF" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 2 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/store) +"aHW" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/gm/river/desert/deep, +/area/bosenmori/outside/river) +"aHX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"aIg" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"aIA" = ( +/turf/open/floor/warning/northwest, +/area/bosenmori/outside/filtration) +"aJM" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/turf/open/floor/carpet, +/area/bosenmori/mountain/clearing) +"aKe" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/gift{ + pixel_x = 6; + pixel_y = 16 + }, +/obj/item/gift{ + pixel_x = -3; + pixel_y = 12 + }, +/obj/item/gift{ + pixel_x = 6; + pixel_y = 0 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"aKg" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"aKq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 2; + req_one_access = "100;200" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/tree) +"aLv" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating/platebot, +/area/bosenmori/mountain/abandoned) +"aMe" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"aMu" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1; + color = "#8B7B5B" + }, +/obj/item/device/flashlight/lamp/on, +/obj/item/tool/hand_labeler, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"aMG" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_area) +"aNb" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/vault, +/area/bosenmori/interior_regular/research) +"aNh" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"aNw" = ( +/obj/structure/sink{ + layer = 3.1; + dir = 8; + pixel_x = -16 + }, +/obj/structure/mirror{ + pixel_x = -31; + pixel_y = -3 + }, +/obj/structure/urinal{ + pixel_x = 0; + pixel_y = 29 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/corporate) +"aNA" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/warning, +/area/bosenmori/shuttles/drop1) +"aNE" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/bosenmori/outside/west_barrens) +"aOy" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"aOz" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 4; + pixel_x = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/offices) +"aOF" = ( +/obj/item/clothing/shoes/stompers, +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/clothing/shoes/slippers{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/clothing/shoes/marine/jungle, +/obj/item/clothing/shoes/marine/civilian/brown, +/obj/item/clothing/shoes/cult, +/obj/item/clothing/shoes/brown{ + pixel_x = -7; + pixel_y = 0 + }, +/obj/item/clothing/shoes/brown{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/shoes/blue{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/clothing/shoes/blue{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/clothing/shoes/black{ + pixel_x = -6; + pixel_y = -8 + }, +/obj/item/clothing/shoes/black{ + pixel_x = -9; + pixel_y = -5 + }, +/obj/item/clothing/shoes/laceup{ + pixel_x = 4; + pixel_y = -7 + }, +/obj/item/clothing/shoes/leather{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/clothing/shoes/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/store) +"aOH" = ( +/obj/item/device/flashlight, +/turf/open/floor/dark, +/area/bosenmori/outside/cargo) +"aPa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"aPv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/south_area) +"aQp" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 0; + pixel_y = 4 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"aQz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"aQJ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"aRh" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = -2; + pixel_x = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"aRi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/cargo) +"aRk" = ( +/obj/structure/prop/ice_colony/ground_wire{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4; + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"aRt" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/mining) +"aRC" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/corporate) +"aRK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"aSo" = ( +/obj/item/paper/crumpled{ + pixel_x = 10; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/offices) +"aSp" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_ruins) +"aSG" = ( +/obj/structure/largecrate/random/case{ + pixel_x = 5; + pixel_y = -8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_barrens) +"aSK" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"aTe" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"aTf" = ( +/obj/structure/filingcabinet/security{ + desc = "A large cabinet with hard copy security records."; + name = "Security Records"; + pixel_x = 7; + pixel_y = 1 + }, +/obj/structure/filingcabinet/security{ + desc = "A large cabinet with hard copy security records."; + name = "Security Records"; + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/floor/prison/darkredfull2, +/area/bosenmori/interior_regular/security) +"aTh" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/tree) +"aTi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"aTy" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"aTM" = ( +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/cargo) +"aTV" = ( +/obj/item/ore/gold, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"aUx" = ( +/obj/structure/tunnel, +/turf/open/gm/dirt2, +/area/bosenmori/outside/north_barrens) +"aVE" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/warningcorner, +/area/bosenmori/shuttles/drop2) +"aVL" = ( +/obj/structure/platform/kutjevo/rock{ + color = "#9494b8" + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/field_post) +"aVR" = ( +/obj/structure/prop/invuln/minecart_tracks, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"aVV" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/bosenmori/interior_regular/telecommunication) +"aWb" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/operations) +"aWc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"aWJ" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"aWP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/filtration) +"aXe" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/bosenmori/outside/river) +"aZa" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = -2; + pixel_x = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/shipment) +"aZo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_glass/corporate) +"aZp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/inflatable/popped, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/abandoned) +"baa" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"bax" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/fitness) +"baX" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/corporate) +"bbR" = ( +/obj/structure/bed/chair/hunter{ + dir = 4; + name = "strange chair" + }, +/turf/open/floor/kutjevo/tiles, +/area/bosenmori/mountain/temple_proper) +"bbU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"bbV" = ( +/obj/structure/filingcabinet/medical{ + pixel_y = 17; + pixel_x = -8; + name = "medical records"; + density = 0 + }, +/obj/structure/filingcabinet/medical{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"bcJ" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"bcT" = ( +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"bcX" = ( +/obj/structure/platform_decoration/kutjevo/smooth{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"bda" = ( +/turf/open/gm/dirt2, +/area/bosenmori/mountain/temple_ruins) +"bdS" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/nexus) +"bed" = ( +/obj/structure/platform, +/turf/open/gm/river, +/area/bosenmori/interior_glass/tree) +"bel" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/clue_scanner{ + pixel_y = 11; + pixel_x = 3 + }, +/obj/item/device/clue_scanner{ + pixel_y = 7; + pixel_x = -4 + }, +/turf/open/floor/prison/west, +/area/bosenmori/interior_regular/security) +"bep" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"beJ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"beL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"beN" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/north_area) +"bfb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"bfd" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_glass/food_processing) +"bfm" = ( +/obj/structure/barricade/metal{ + dir = 8; + pixel_x = -1 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 1 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 8; + pixel_x = -1 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 8; + pixel_x = 1 + }, +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/structure/curtain/red{ + pixel_x = 0; + pixel_y = -3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/bosenmori/interior_regular/security) +"bfo" = ( +/turf/open/floor/plating, +/area/bosenmori/outside/east_area) +"bfu" = ( +/obj/structure/prop/dam/gravestone, +/obj/structure/prop/wooden_cross{ + pixel_x = -10; + pixel_y = -4 + }, +/obj/item/prop/helmetgarb/rosary{ + pixel_x = 20; + pixel_y = -16 + }, +/obj/structure/prop/dam/torii, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/abandoned) +"bfv" = ( +/obj/structure/grille, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"bfL" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/door/window/westleft{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"bfR" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/packageWrap, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/packageWrap, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/cargo) +"bgq" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/kitchen) +"bgr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"bhR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/living) +"bhU" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"bih" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/item/tool/shovel/spade, +/obj/item/tool/shovel/spade{ + pixel_x = 11; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/temple_ruins) +"bix" = ( +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/food_processing) +"biz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"bjv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"bjS" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/bosenmori/shuttles/drop2) +"bkz" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 4; + color = "#e6ccb3" + }, +/turf/open/gm/dirt2, +/area/bosenmori/outside/east_barrens) +"bkJ" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"bkK" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop1) +"bkY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/item/book/manual/security_space_law, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/storage/fancy/cigarettes/lucky_strikes_4{ + pixel_x = 10; + pixel_y = 5 + }, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = -19; + layer = 3.2 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/offices) +"blb" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8; + pixel_x = -6 + }, +/obj/structure/barricade/metal{ + layer = 3.1; + pixel_x = -1 + }, +/obj/structure/barricade/metal{ + layer = 3.1; + pixel_x = -1; + pixel_y = 10 + }, +/obj/effect/glowshroom, +/obj/structure/curtain/red{ + pixel_x = 4; + pixel_y = 0 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/bosenmori/interior_glass/fitness) +"blO" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"blU" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 7; + pixel_y = -8 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -7; + pixel_y = -8 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -7; + pixel_y = 1 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/food_processing) +"bmi" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"bmG" = ( +/obj/structure/prop/ice_colony/flamingo{ + dir = 5; + pixel_x = 15 + }, +/turf/open/desert/desert_shore/shore_corner2, +/area/bosenmori/outside/north_area) +"bna" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/bosenmori/outside/east_area) +"bnh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"bni" = ( +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/fitness) +"bnW" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"box" = ( +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/field_post) +"boC" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/void, +/area/bosenmori/mountain/temple_proper) +"boE" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/offices) +"bpG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/beerkeg/alt_dark{ + anchored = 1; + chemical = null; + density = 0; + pixel_x = -7; + pixel_y = 10 + }, +/obj/structure/reagent_dispensers/beerkeg/alt_dark, +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/kutjevo/fake_wood, +/area/bosenmori/mountain/pilgrim) +"bpJ" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"bpO" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/clothing/under/blackskirt{ + pixel_x = 11; + pixel_y = 7 + }, +/obj/item/clothing/under/kutjevo{ + pixel_x = 11; + pixel_y = 4 + }, +/obj/item/clothing/under/kutjevo/drysuit{ + pixel_x = 11; + pixel_y = -1 + }, +/obj/item/clothing/under/schoolgirl{ + pixel_x = 0; + pixel_y = 5 + }, +/obj/item/clothing/under/navy/officer{ + pixel_x = 0; + pixel_y = 8 + }, +/obj/item/clothing/under/navy/tech{ + pixel_x = 0; + pixel_y = -3 + }, +/obj/item/clothing/under/marine/reporter/black{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/item/clothing/under/marine/reporter/red{ + pixel_x = -10; + pixel_y = 4 + }, +/obj/item/clothing/under/marine/veteran/van_bandolier{ + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/store) +"bpT" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"bpV" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating, +/area/bosenmori/outside/north_barrens) +"bqm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/cargo) +"bqW" = ( +/obj/structure/prop/dam/boulder, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop1) +"bqY" = ( +/turf/closed/wall/solaris, +/area/bosenmori/outside/cargo) +"bry" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/paper_bin{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/tool/pen/clicky{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/tool/pen/clicky{ + pixel_x = -8; + pixel_y = 0 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Bosenmori Site"; + phone_color = "red"; + phone_id = "Corporate Office"; + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"bsS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.2 + }, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/cargo) +"btw" = ( +/obj/effect/decal/remains/human, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"bub" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/north_barrens) +"buh" = ( +/obj/structure/platform{ + layer = 3.6 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop2) +"buT" = ( +/obj/item/stool{ + icon_state = "stool_alt"; + pixel_x = 0; + pixel_y = 2 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"bvw" = ( +/obj/structure/largecrate/chick, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"bvD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"bvH" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_regular/research) +"bvL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"bvS" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/abandoned) +"bwl" = ( +/obj/structure/surface/table, +/turf/open/floor/warning/west, +/area/bosenmori/outside/filtration) +"bwt" = ( +/turf/open/gm/river/desert/deep, +/area/bosenmori/interior_glass/filtration) +"bwE" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 4; + pixel_y = 7 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"bwH" = ( +/obj/structure/platform/kutjevo/rock{ + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/mountain/pilgrim) +"bxl" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/phone_base/colony_net{ + phone_category = "Bosenmori Site"; + phone_id = "Supply Kiosk"; + dir = 4; + pixel_x = -18 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/cargo) +"bxm" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/bosenmori/interior_glass/cargo) +"bxO" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"bxZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/combat, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/item/device/t_scanner{ + pixel_x = 8; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"byM" = ( +/turf/open/floor/warningcorner/west, +/area/bosenmori/shuttles/drop1) +"byZ" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/east_barrens) +"bzr" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"bzu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/bosenmori/interior_glass/food_processing) +"bAg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"bAp" = ( +/obj/structure/machinery/door/airlock/sandstone/runed{ + name = "\improper Heavy Strange Temple Door" + }, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"bBe" = ( +/obj/structure/platform/mineral/sandstone/runed, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/void, +/area/bosenmori/mountain/temple_proper) +"bBj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/bosenmori/interior_glass/cargo) +"bBS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/prison/west, +/area/bosenmori/interior_regular/security) +"bCm" = ( +/turf/open/gm/coast/north, +/area/bosenmori/mountain/river) +"bCq" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_glass/cargo) +"bCD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/offices) +"bCS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/west, +/area/bosenmori/interior_regular/security) +"bCV" = ( +/obj/effect/decal/siding{ + icon_state = "siding6" + }, +/obj/structure/barricade/handrail/wire, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bosenmori/interior_glass/fitness) +"bDj" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"bDA" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/bosenmori/outside/river) +"bDC" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/pilgrim) +"bEm" = ( +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_glass/shipment) +"bEX" = ( +/obj/structure/foamed_metal, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/abandoned) +"bFa" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river/desert/shallow, +/area/bosenmori/mountain/temple_proper) +"bFx" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/bosenmori/outside/north_barrens) +"bFJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"bGk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"bGQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"bGR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/west, +/area/bosenmori/interior_regular/security) +"bGZ" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"bHm" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bosenmori/outside/filtration) +"bHB" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/bosenmori/interior_regular/security) +"bHO" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/pilgrim) +"bIf" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/bosenmori/outside/east_barrens) +"bIn" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"bIE" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/desert/deep, +/area/bosenmori/outside/river) +"bII" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/kutjevo/fake_wood, +/area/bosenmori/mountain/pilgrim) +"bJh" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"bJx" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/outside/east_barrens) +"bJE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"bJS" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/obj/item/prop/flower_vase/redwhiteflowers{ + pixel_x = -10; + pixel_y = 16 + }, +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/pilgrim) +"bJY" = ( +/turf/closed/shuttle{ + dir = 1; + icon_state = "pwall" + }, +/area/bosenmori/oob) +"bKb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/fitness) +"bKd" = ( +/obj/item/explosive/plastic{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/explosive/plastic{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"bKf" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/bosenmori/mountain/field_post) +"bKl" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"bKs" = ( +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/operations) +"bKO" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/structure/machinery/prop/almayer/computer/PC, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"bKV" = ( +/turf/closed/wall/shiva/prefabricated, +/area/bosenmori/mountain/mining) +"bKW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/south_area) +"bMp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/server_equipment, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/bosenmori/interior_heavy/secured_armory) +"bMM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/offices) +"bMW" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/bosenmori/interior_glass/hospital) +"bNf" = ( +/turf/open/floor/kutjevo/tan, +/area/bosenmori/interior_glass/fitness) +"bNp" = ( +/turf/open/gm/dirt2, +/area/bosenmori/outside/north_area) +"bNz" = ( +/obj/item/tool/pickaxe/hammer, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"bNN" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full"; + dir = 6 + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"bOc" = ( +/obj/structure/closet/crate/miningcar{ + layer = 3.01 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"bPs" = ( +/obj/structure/window_frame/solaris/reinforced, +/turf/open/floor/plating, +/area/bosenmori/mountain/abandoned) +"bPX" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"bPY" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/small/blue{ + dir = 1; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"bQE" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Research Complex Shutter"; + id = "science_blast"; + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/research) +"bRD" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"bSc" = ( +/obj/structure/machinery/colony_floodlight{ + light_color = "#dae2ff" + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"bTa" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/item/storage/belt/souto, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/nexus) +"bTi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"bTH" = ( +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/tree) +"bTT" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"bUd" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/pilgrim) +"bUp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/south_area) +"bUM" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/kitchen) +"bUX" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"bUZ" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/stack/rods{ + amount = 15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"bVC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"bWn" = ( +/obj/structure/largecrate/random{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/structure/barricade/handrail/strata, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + dir = 8; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_heavy/secured_armory) +"bWo" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/item/tool/weldingtool/simple, +/turf/open/floor, +/area/bosenmori/interior_glass/shipment) +"bWx" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"bXq" = ( +/obj/structure/largecrate/black_market/confiscated_equipment, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_heavy/secured_armory) +"bXu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname{ + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/tree) +"bYg" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/tree) +"bYk" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_regular/kitchen) +"bYx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/offices) +"bZj" = ( +/obj/structure/surface/rack, +/obj/item/prop/geiger_counter, +/turf/open/floor/almayer/plating, +/area/bosenmori/mountain/field_post) +"bZN" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/north_barrens) +"bZW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"cai" = ( +/obj/structure/prop/rock, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/abandoned) +"cav" = ( +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop2) +"caz" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"caO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"caV" = ( +/turf/open/gm/river/desert/shallow, +/area/bosenmori/mountain/temple_proper) +"cbJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/recharger{ + pixel_x = 0; + pixel_y = 3 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_regular/engineering) +"cbV" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/fitness) +"cbY" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"ccf" = ( +/obj/structure/platform/mineral/sandstone/runed, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/temple_proper) +"ccx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/weldingtool/largetank, +/obj/item/tool/weldpack/minitank{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/item/clothing/glasses/thermal, +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"cdt" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/mountain/pilgrim) +"ces" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/bosenmori/outside/river) +"cey" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"ceN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/abandoned) +"ceV" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/curtain/medical, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/hospital) +"cfe" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/bosenmori/mountain/mining) +"cfg" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/field_post) +"cfs" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/hospital) +"cfx" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/tapes{ + name = "box of tapes" + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/mountain/field_post) +"cfB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"cfP" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_glass/cargo) +"cfX" = ( +/obj/structure/coatrack, +/obj/item/clothing/head/cmcap/reporter{ + pixel_x = -2; + pixel_y = 10; + name = "cap" + }, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"cgj" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/north_area) +"cgY" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"chf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor, +/area/bosenmori/interior_glass/living) +"cht" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop2) +"chu" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_regular/telecommunication) +"cim" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"cio" = ( +/obj/structure/plasticflaps{ + layer = 5.1 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/kitchen) +"ciu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/inflatable/popped/door, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/abandoned) +"ciL" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"ciT" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/plating, +/area/bosenmori/outside/west_barrens) +"cjc" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"cju" = ( +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/filtration) +"cjz" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/clearing) +"cjN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/outside/north_area) +"cjO" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B"; + pixel_y = 19 + }, +/obj/item/tool/mop{ + pixel_y = 16; + pixel_x = 15 + }, +/obj/item/tool/soap/weyland_yutani{ + pixel_x = -7; + pixel_y = 28 + }, +/obj/item/tool/soap/weyland_yutani{ + pixel_x = -5; + pixel_y = 18 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 25; + pixel_y = 19 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 8; + pixel_y = 23 + }, +/obj/structure/janitorialcart/brown{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/store) +"cjT" = ( +/obj/structure/largecrate/random, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"ckE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + pixel_x = 7; + pixel_y = 15 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/offices) +"ckP" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/tool/pen/clicky, +/obj/item/toy/deck{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/fitness) +"cle" = ( +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"cll" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/desert, +/area/bosenmori/interior_glass/nexus) +"clu" = ( +/obj/structure/largecrate/random{ + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"cma" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5; + dir = 8 + }, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"cmt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"cmB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer2, +/area/bosenmori/outside/cargo) +"cmE" = ( +/obj/structure/prop/dam/gravestone, +/obj/item/prop/tableflag/upp{ + pixel_x = 12; + pixel_y = -9 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"cmW" = ( +/obj/structure/closet/crate, +/turf/open/floor/prison/darkbrown2/southwest, +/area/bosenmori/interior_glass/shipment) +"cnl" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"cnp" = ( +/obj/structure/bed/chair{ + buckling_y = 18; + dir = 8; + pixel_x = -3; + pixel_y = 11 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/interior_glass/shipment) +"cnQ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bed/chair, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"coh" = ( +/obj/structure/prop/ice_colony/ground_wire{ + pixel_x = 7; + pixel_y = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"coq" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"cor" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"coG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/food_processing) +"coS" = ( +/obj/structure/fence, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"cqn" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/operations) +"cqp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_x = 3; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"cqW" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"crI" = ( +/obj/item/xenos_claw{ + pixel_x = -4; + pixel_y = 12 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"crM" = ( +/obj/structure/largecrate/random{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"crV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 2; + req_one_access = "101" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/shipment) +"csr" = ( +/obj/structure/surface/rack, +/obj/item/frame/table{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/frame/table{ + pixel_y = -3; + pixel_x = -2 + }, +/obj/item/frame/table/gambling, +/obj/item/frame/table{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/frame/table{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/frame/table{ + pixel_y = -3; + pixel_x = -2 + }, +/obj/item/frame/table{ + pixel_y = -3; + pixel_x = -2 + }, +/turf/open/floor/bot, +/area/bosenmori/outside/filtration) +"csP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + req_one_access = "100;200" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/living) +"csS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Bosenmori Site"; + phone_id = "Food Processing Office" + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"ctc" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"ctd" = ( +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"ctL" = ( +/obj/structure/sink{ + pixel_y = 24; + layer = 3.1 + }, +/obj/structure/mirror{ + pixel_y = 35; + pixel_x = -1 + }, +/turf/open/floor/prison/darkred2/west, +/area/bosenmori/interior_regular/security) +"ctX" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"cvh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/abandoned) +"cvl" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = -7; + pixel_x = -15 + }, +/turf/closed/wall/solaris/reinforced/hull, +/area/bosenmori/outside/north_area) +"cvn" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + color = "#ffb84d"; + pixel_x = 0; + pixel_y = 5 + }, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_x = 3; + pixel_y = 16 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"cwG" = ( +/obj/structure/machinery/line_nexter{ + id = "WOline1"; + dir = 4; + pixel_x = 4; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/store) +"cwS" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/structure/machinery/power/apc/fully_broken/no_cell{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bosenmori/outside/cargo) +"cxz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"cxM" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"cyf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/bosenmori/interior_glass/tree) +"cyA" = ( +/obj/structure/machinery/sensortower{ + pixel_y = 10 + }, +/turf/open/floor/bot/north, +/area/bosenmori/mountain/field_post) +"cyF" = ( +/obj/structure/bed/chair/comfy/bench/mid, +/turf/open/floor/asteroidwarning/east, +/area/bosenmori/outside/filtration) +"czP" = ( +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop2) +"czZ" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bosenmori/interior_heavy/secured_armory) +"cBa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/store) +"cBh" = ( +/obj/structure/cargo_container/kelland/left{ + layer = 3.1; + opacity = 0; + pixel_y = 8; + pixel_x = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"cBF" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"cBU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/interior_glass/corporate) +"cCn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkbrown2/southwest, +/area/bosenmori/interior_glass/shipment) +"cCp" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/redyellowfull, +/area/bosenmori/interior_regular/kitchen) +"cCq" = ( +/obj/structure/machinery/vending/snack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_heavy/secured_armory) +"cCs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"cCL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_regular/engineering) +"cDd" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"cDx" = ( +/obj/structure/barricade/handrail/strata{ + can_buckle = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"cDA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cell_charger, +/obj/effect/spawner/random/powercell, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_regular/engineering) +"cDQ" = ( +/obj/structure/foamed_metal, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/abandoned) +"cEh" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"cEi" = ( +/obj/structure/prop/rock, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/clearing) +"cEx" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/south_area) +"cEA" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/bot/north, +/area/bosenmori/mountain/field_post) +"cEG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_heavy/secured_armory) +"cFh" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_y = 10; + pixel_x = 3 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"cFl" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"cFA" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/foamed_metal, +/turf/open/floor/plating/platebot, +/area/bosenmori/outside/cargo) +"cGI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/filtration) +"cHn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/shipment) +"cHx" = ( +/obj/structure/closet, +/obj/item/clothing/suit/storage/jacket/marine/chef, +/obj/item/clothing/suit/storage/jacket/marine/chef, +/turf/open/floor/prison/blue/west, +/area/bosenmori/interior_regular/kitchen) +"cHA" = ( +/obj/structure/ore_box{ + name = "wooden cargo crate" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/mining) +"cHP" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_ruins) +"cHS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/tree) +"cIs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/west_area) +"cIy" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + pixel_x = -7; + name = "colonial operations terminal" + }, +/obj/structure/machinery/door_control/brbutton/alt{ + pixel_y = -2; + pixel_x = -6; + id = "nexus_blast"; + name = "Central Complex Lockdown" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/operations) +"cIE" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_x = 0; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"cIH" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/cargo) +"cJg" = ( +/obj/structure/platform/kutjevo/rock{ + color = "#9494b8" + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4; + color = "#9494b8" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"cJi" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/abandoned) +"cJk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 4; + pixel_x = -2 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/security) +"cJv" = ( +/obj/structure/showcase{ + layer = 3.1 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/corporate) +"cJL" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"cJP" = ( +/obj/structure/janitorialcart/brown{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/tool/mop{ + pixel_y = 11; + pixel_x = -19 + }, +/obj/item/storage/bag/trash{ + pixel_x = -14; + pixel_y = -4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/fitness) +"cKl" = ( +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_regular/security_armory) +"cKy" = ( +/turf/closed/wall/solaris, +/area/bosenmori/interior_glass/food_processing) +"cKE" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/south, +/area/bosenmori/interior_glass/tree) +"cKK" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/bosenmori/outside/river) +"cLe" = ( +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/shuttles/drop2) +"cLS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/tree) +"cMp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"cMJ" = ( +/turf/open/gm/dirt2, +/area/bosenmori/outside/east_area) +"cMX" = ( +/obj/structure/prop/tower{ + density = 0 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/bot/north, +/area/bosenmori/shuttles/drop1) +"cNh" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Private Room"; + req_one_access = "106" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/living) +"cNj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/prop/souto_land/streamer{ + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"cNk" = ( +/obj/structure/bed/chair/office/light{ + dir = 8; + pixel_y = 5; + buckling_y = 5 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"cNm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitepurplecorner, +/area/bosenmori/interior_regular/research) +"cNs" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/toy/plush/shark, +/obj/item/clothing/suit/storage/jacket/marine/reporter, +/obj/item/clothing/head/fedora/light, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/revolver/m44/custom, +/obj/item/ammo_magazine/revolver/heavy, +/obj/item/ammo_magazine/revolver/heavy, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/offices) +"cNv" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/outside/south_area) +"cOU" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_y = 19 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"cOW" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/fuel_cell{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/fuel_cell{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_regular/engineering) +"cPd" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop2) +"cQt" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/east_area) +"cQF" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/weapon/gun/flamer/unloaded, +/turf/open/floor/corsat, +/area/bosenmori/interior_heavy/secured_armory) +"cQZ" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.25; + density = 0; + climb_delay = 0 + }, +/turf/open/gm/grass/grass1, +/area/bosenmori/interior_glass/tree) +"cRv" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/cargo) +"cRM" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = -2; + pixel_x = -26 + }, +/turf/open/floor/prison/blue/southeast, +/area/bosenmori/interior_regular/kitchen) +"cRX" = ( +/turf/closed/wall/strata_ice/jungle, +/area/bosenmori/mountain/abandoned) +"cSO" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.25; + density = 0; + climb_delay = 0 + }, +/turf/open/gm/river, +/area/bosenmori/interior_glass/tree) +"cSY" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_regular/telecommunication) +"cTl" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"cUe" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/fitness) +"cUh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"cUt" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"cUG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/food_processing) +"cUU" = ( +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"cVj" = ( +/turf/closed/wall/solaris, +/area/bosenmori/interior_regular/security) +"cVt" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/outside/north_area) +"cVK" = ( +/obj/structure/machinery/power/apc{ + pixel_y = -25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/living) +"cVM" = ( +/turf/closed/wall/solaris, +/area/bosenmori/shuttles/drop1) +"cVV" = ( +/obj/structure/cargo_container/kelland/right{ + pixel_x = 0; + pixel_y = 12 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"cWh" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = -2; + pixel_x = -26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"cWP" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/shipment) +"cXx" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"cXO" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"cYw" = ( +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"cYF" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/faxmachine/corporate, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"cYG" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/stack/sheet/metal/small_stack, +/obj/item/stack/sheet/metal/med_small_stack{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"cYJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/item/device/assembly/mousetrap/armed, +/turf/open/floor/prison/darkbrown2/north, +/area/bosenmori/interior_glass/shipment) +"cYN" = ( +/obj/structure/barricade/handrail/type_b{ + pixel_x = 0; + pixel_y = -5 + }, +/turf/open/shuttle/escapepod/floor0/west, +/area/bosenmori/interior_regular/telecommunication) +"cZx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"cZP" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/effect/spawner/random/technology_scanner, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"cZZ" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = -8 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 7 + }, +/obj/item/clothing/head/cmcap/boonie/tan{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/clothing/glasses/mgoggles/green{ + pixel_x = -10; + pixel_y = -1 + }, +/obj/structure/prop/ice_colony/hula_girl{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"dan" = ( +/obj/effect/decal/cleanable/ash, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 5; + pixel_y = 19 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"dax" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"daA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"daL" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating/platebot, +/area/bosenmori/outside/cargo) +"daX" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_barrens) +"dbu" = ( +/turf/open/gm/dirt2, +/area/bosenmori/outside/east_barrens) +"dbE" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/north_area) +"dbI" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/void, +/area/bosenmori/mountain/clearing) +"dbJ" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_barrens) +"dca" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/misc/flashlight{ + pixel_x = 2; + pixel_y = -4 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/mountain/field_post) +"dcn" = ( +/obj/item/trash/candy, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop2) +"dcv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/operations) +"dcS" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/mining) +"ddh" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_barrens) +"ddj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"ddq" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-4" + }, +/obj/structure/prop/server_equipment, +/turf/open/floor/plating, +/area/bosenmori/mountain/field_post) +"ddD" = ( +/obj/structure/flora/pottedplant{ + pixel_x = -1; + pixel_y = -2 + }, +/turf/open/floor/prison/west, +/area/bosenmori/interior_glass/nexus) +"ddW" = ( +/obj/item/tool/warning_cone{ + pixel_x = -11; + pixel_y = -1 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"dea" = ( +/turf/open/auto_turf/sand/layer2, +/area/bosenmori/outside/south_area) +"dez" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/outside/north_barrens) +"deC" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/fitness) +"deM" = ( +/turf/closed/wall/strata_ice/jungle, +/area/bosenmori/outside/river) +"dfk" = ( +/obj/structure/bed/bedroll, +/obj/item/trash/used_stasis_bag{ + pixel_x = -8; + pixel_y = 0 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"dfz" = ( +/obj/structure/ore_box{ + name = "wooden cargo crate" + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"dfH" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/store) +"dfJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/pouch/chem, +/obj/item/clothing/glasses/science, +/obj/item/storage/box/syringes{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/storage/box/sprays, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"dgi" = ( +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_heavy/secured_armory) +"dgD" = ( +/obj/structure/tent/big, +/obj/structure/tent_curtain, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/carpet, +/area/bosenmori/mountain/clearing) +"dgJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/corporate) +"dgV" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + layer = 3.2; + name = "Television set"; + network = null; + pixel_x = 0 + }, +/obj/structure/sign/banners/twe_flag{ + pixel_x = -17; + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"dht" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/bosenmori/interior_glass/corporate) +"dil" = ( +/turf/open/gm/dirt/desert0, +/area/bosenmori/mountain/temple_ruins) +"diI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_glass/corporate) +"djc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/outside/west_area) +"djk" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 11 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 7; + pixel_y = -5 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -4 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/mountain/field_post) +"djo" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/abandoned) +"djp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"djy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"dkA" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"dkF" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = -26; + pixel_x = 0 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_heavy/secured_armory) +"dkG" = ( +/obj/structure/prop/dam/truck{ + pixel_x = 0; + pixel_y = 4 + }, +/turf/open/asphalt, +/area/bosenmori/interior_glass/corporate) +"dkL" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"dlk" = ( +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"dlv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"dlH" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"dlT" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_regular/engineering) +"dmG" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = -2; + pixel_x = -26 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"dnQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/loadingarea/north, +/area/bosenmori/outside/filtration) +"dnW" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/item/weapon/butterfly/switchblade, +/obj/item/prop/colony/canister{ + pixel_x = 3; + pixel_y = 14 + }, +/obj/item/tool/crowbar/red, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"dnY" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"dor" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"doy" = ( +/obj/structure/closet/wardrobe/medic_white{ + density = 0; + pixel_y = 15 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/obj/structure/machinery/camera{ + c_tag = "Hospital - Medical Supply Room"; + colony_camera_mapload = 0; + network = list("Corporate"); + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"doG" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 8 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"doS" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/outside/east_barrens) +"doZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"dpc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + req_one_access = "100;200" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/tree) +"dpB" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bosenmori/interior_glass/fitness) +"dpX" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.18; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/cargo) +"dpY" = ( +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/outside/north_area) +"dql" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/offices) +"dqy" = ( +/turf/closed/wall/strata_ice/jungle, +/area/bosenmori/outside/east_barrens) +"dqY" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/abandoned) +"dri" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "Bosenmori Site"; + phone_id = "Bar"; + pixel_y = -28; + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"drr" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"drP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/fitness) +"dsf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"dsw" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/filtration) +"dsz" = ( +/obj/structure/sign/banners/happybirthdaysteve{ + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/living) +"dsB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"dtE" = ( +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_glass/fitness) +"dtJ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/emails{ + dir = 4; + pixel_x = 0; + pixel_y = 5 + }, +/obj/item/tool/pen/fountain, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/corporate) +"duG" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"dvt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"dvz" = ( +/obj/structure/inflatable/door, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/north_barrens) +"dvO" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/temple_proper) +"dvV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/accessory/health/scrap{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/clothing/accessory/health/scrap{ + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"dwH" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"dxv" = ( +/obj/structure/sign/nosmoking_1{ + pixel_x = 25; + pixel_y = 2 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"dxG" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/cargo) +"dya" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/mining) +"dyp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/north_area) +"dyE" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor, +/area/bosenmori/outside/south_area) +"dyG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"dzt" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop1) +"dzF" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_glass/nexus) +"dzL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_glass/nexus) +"dAg" = ( +/turf/open/floor, +/area/bosenmori/shuttles/drop1) +"dAm" = ( +/obj/structure/prop/ice_colony/poly_kevlon_roll{ + pixel_y = 17; + pixel_x = -8 + }, +/obj/structure/prop/ice_colony/poly_kevlon_roll{ + pixel_x = 3; + pixel_y = 6; + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"dAw" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"dBg" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_x = -3; + pixel_y = 22; + density = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + dir = 1; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"dBs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/bosenmori/interior_glass/cargo) +"dCi" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/bot, +/area/bosenmori/outside/filtration) +"dCx" = ( +/obj/structure/bed/chair{ + dir = 1; + pixel_x = 6; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"dDa" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/abandoned) +"dDb" = ( +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/outside/north_area) +"dDf" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"dDn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/store) +"dDS" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"dEl" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/bot, +/area/bosenmori/outside/filtration) +"dEm" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Bosenmori Site"; + phone_color = "red"; + phone_id = "Secure Armory"; + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/tool/crew_monitor, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_heavy/secured_armory) +"dEN" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/gm/river, +/area/bosenmori/mountain/river) +"dEX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 2; + req_one_access = "100;200" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast"; + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"dFf" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 4; + pixel_x = -2 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/offices) +"dFr" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/shuttles/drop1) +"dFI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenblue/north, +/area/bosenmori/interior_glass/food_processing) +"dFU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname{ + req_one_access = "102" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/engineering) +"dGa" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/mining) +"dGK" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/river) +"dHc" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"dHG" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/bosenmori/outside/river) +"dIF" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/structure/machinery/light/double/blue, +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/east_barrens) +"dJd" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/operations) +"dKc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/food_processing) +"dKl" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"dKn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/abandoned) +"dLQ" = ( +/obj/structure/prop/dam/boulder, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"dMd" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/bosenmori/interior_glass/corporate) +"dNW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/food_processing) +"dOa" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B"; + pixel_y = 19 + }, +/obj/item/tool/mop{ + pixel_y = 13; + pixel_x = -13 + }, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/tool/soap/weyland_yutani{ + pixel_x = 1; + pixel_y = 23 + }, +/obj/item/storage/bag/trash{ + pixel_x = 8; + pixel_y = 22 + }, +/obj/item/storage/bag/trash{ + pixel_x = -4; + pixel_y = 15 + }, +/obj/item/tool/wet_sign{ + pixel_x = -2; + pixel_y = -10 + }, +/obj/item/tool/wet_sign{ + pixel_x = -9; + pixel_y = -5 + }, +/obj/item/tool/wet_sign{ + pixel_x = -10; + pixel_y = -11 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/store) +"dOz" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed, +/turf/open/floor/kutjevo/tiles, +/area/bosenmori/mountain/temple_proper) +"dOC" = ( +/obj/structure/window/framed/shiva, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"dOT" = ( +/obj/item/stool{ + icon_state = "stool_alt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"dOW" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"dPi" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"dPu" = ( +/obj/structure/safe{ + spawnkey = 0 + }, +/obj/item/ore/diamond{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/ore/diamond{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/corsat, +/area/bosenmori/interior_heavy/secured_armory) +"dPU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"dQq" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + pixel_y = 25; + pixel_x = 12 + }, +/turf/closed/wall/solaris/reinforced/hull, +/area/bosenmori/outside/north_area) +"dQO" = ( +/turf/open/gm/grass/grass1, +/area/bosenmori/interior_glass/tree) +"dRv" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/stack/sheet/wood/small_stack, +/obj/item/stack/rods{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/stack/rods{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/tool/mop, +/obj/item/tool/shovel, +/obj/item/tool/wirecutters, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/cargo) +"dSU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"dTU" = ( +/obj/structure/machinery/colony_floodlight{ + light_color = "#dae2ff" + }, +/turf/open/floor/delivery, +/area/bosenmori/outside/filtration) +"dVA" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.25; + density = 0; + climb_delay = 0 + }, +/turf/open/gm/coast/south, +/area/bosenmori/interior_glass/tree) +"dVD" = ( +/turf/open/floor, +/area/bosenmori/outside/filtration) +"dVO" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/prison/yellow/southwest, +/area/bosenmori/interior_glass/living) +"dWh" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/turf/open/floor/warning/west, +/area/bosenmori/shuttles/drop1) +"dWn" = ( +/obj/structure/prop/static_tank/water, +/turf/open/floor/asteroidwarning/northeast, +/area/bosenmori/outside/filtration) +"dWL" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_x = 3; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"dXm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera{ + c_tag = "Corporate - Lobby"; + colony_camera_mapload = 0; + network = list("Corporate"); + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"dXs" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"dYP" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/item/trash/chunk{ + pixel_x = 4; + pixel_y = 12 + }, +/turf/open/desert, +/area/bosenmori/interior_glass/nexus) +"dYT" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/nexus) +"dZB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/bosenmori/interior_regular/research) +"dZQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"dZU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"dZZ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/bosenmori/outside/river) +"ebe" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"ebj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"ebQ" = ( +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"ebT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_heavy/secured_armory) +"ebV" = ( +/obj/structure/mirror{ + pixel_y = -26; + pixel_x = -1 + }, +/obj/item/stool{ + pixel_x = 0; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_metal, +/area/bosenmori/interior_regular/store) +"ebX" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_full" + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"ecb" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"eco" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/greenblue, +/area/bosenmori/interior_glass/food_processing) +"ecD" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"ecG" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/reaper{ + pixel_x = -9; + pixel_y = 21 + }, +/obj/structure/reagent_dispensers/beerkeg{ + pixel_x = 11; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 13; + pixel_y = 16 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/pilgrim) +"ecT" = ( +/obj/item/tool/pickaxe{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/tool/pickaxe{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/item/tool/pickaxe{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"edy" = ( +/turf/open/floor/plating/asteroidwarning/west, +/area/bosenmori/mountain/field_post) +"edI" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/filtrationside/west, +/area/bosenmori/interior_glass/filtration) +"edN" = ( +/obj/structure/foamed_metal, +/turf/open/floor/wall_thermite, +/area/bosenmori/mountain/abandoned) +"eee" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison/darkbrown2/southeast, +/area/bosenmori/interior_glass/shipment) +"eep" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/clothing/under/colonist/workwear/pink{ + pixel_x = 0; + pixel_y = 7 + }, +/obj/item/clothing/under/colonist/workwear/pink{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/clothing/under/colonist/workwear/khaki{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/clothing/under/colonist/workwear/green{ + pixel_x = 0; + pixel_y = -3 + }, +/obj/item/clothing/under/colonist/workwear/blue{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/clothing/under/colonist/workwear/khaki{ + pixel_x = 8; + pixel_y = -3 + }, +/obj/item/clothing/under/colonist/wy_joliet_shopsteward{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/item/clothing/under/colonist/boilersuit/darkblue{ + pixel_x = -9; + pixel_y = 3 + }, +/obj/item/clothing/under/colonist/boilersuit/cyan{ + pixel_x = -9; + pixel_y = -3 + }, +/obj/structure/machinery/camera{ + c_tag = "Nexus - Store"; + colony_camera_mapload = 0; + dir = 1; + network = list("Corporate") + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/store) +"eeA" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_ruins) +"eeU" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "colonial operations terminal" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"efx" = ( +/obj/structure/largecrate/supply/supplies/plasteel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_heavy/secured_armory) +"efB" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/roller, +/obj/item/roller{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"efF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/telecommunication) +"egR" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"egT" = ( +/obj/structure/sink{ + pixel_y = 24; + layer = 3.1 + }, +/obj/structure/mirror{ + pixel_y = 35; + pixel_x = -1 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 0; + pixel_y = 19 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/store) +"ehl" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bosenmori/outside/cargo) +"ehE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00" + }, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/bosenmori/outside/north_barrens) +"ehG" = ( +/obj/structure/prop/dam/truck{ + dir = 4; + pixel_x = 0; + pixel_y = 8 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"ehZ" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/bosenmori/outside/east_barrens) +"ejB" = ( +/obj/item/stool{ + icon_state = "stool_alt"; + pixel_x = 7; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"ekx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/north_area) +"ekU" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/hypospray/autoinjector/empty/medic/large, +/obj/item/reagent_container/glass/pressurized_canister{ + pixel_x = 6; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"elz" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop2) +"elV" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"emr" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/mountain/abandoned) +"enn" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/weapon/gun/energy/yautja/plasma_caster{ + anchored = 1; + desc = "A powerful, shoulder-mounted energy weapon. This one is damaged beyond use."; + name = "damaged plasma caster"; + pixel_x = -7; + pixel_y = -3 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/bosenmori/mountain/temple_proper) +"enq" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" + }, +/turf/open/floor/plating, +/area/bosenmori/mountain/field_post) +"enB" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/mining) +"enI" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"eoO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/food_processing) +"eoR" = ( +/obj/structure/bed/chair{ + dir = 1; + pixel_x = -5; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"eoZ" = ( +/turf/open/floor/asteroidwarning/north, +/area/bosenmori/outside/filtration) +"epd" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"epw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_regular/telecommunication) +"epW" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/temple_proper) +"erR" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_full"; + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/temple_proper) +"esM" = ( +/obj/structure/prop/invuln/joey, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + dir = 1; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/bosenmori/interior_glass/living) +"esZ" = ( +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/turf/open/desert, +/area/bosenmori/interior_glass/nexus) +"euj" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.18; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/cargo) +"euw" = ( +/turf/open/floor/prison/darkbrown2, +/area/bosenmori/interior_glass/cargo) +"ewp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/bosenmori/interior_glass/fitness) +"ewE" = ( +/obj/item/tool/warning_cone{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/tool/shovel, +/turf/open/gm/dirt2, +/area/bosenmori/outside/north_area) +"ewF" = ( +/turf/open/floor/wood, +/area/bosenmori/outside/river) +"ewO" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3.01 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"ewT" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/closed/wall/mineral/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"exj" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"exn" = ( +/obj/item/tool/pickaxe/drill, +/obj/item/tool/pickaxe/drill{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"exA" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/kitchen) +"exI" = ( +/obj/structure/machinery/power/apc{ + cell_type = /obj/item/cell/high; + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/plating, +/area/bosenmori/interior_heavy/secured_armory) +"eyg" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/bosenmori/interior_glass/tree) +"eyi" = ( +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/desert, +/area/bosenmori/interior_glass/nexus) +"eyj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/operations) +"eyr" = ( +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"eys" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitepurplecorner/east, +/area/bosenmori/interior_regular/research) +"ezg" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"ezt" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirt2, +/area/bosenmori/shuttles/drop3) +"ezv" = ( +/turf/open/floor/carpet, +/area/bosenmori/mountain/clearing) +"ezz" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_proper) +"ezM" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = 5; + pixel_y = 15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/fitness) +"ezZ" = ( +/obj/structure/platform_decoration/kutjevo/rock, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/turf/open/void, +/area/bosenmori/mountain/clearing) +"eAx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenblue, +/area/bosenmori/interior_glass/food_processing) +"eAM" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B"; + pixel_y = 19 + }, +/obj/item/trash/syndi_cakes{ + pixel_x = -5; + pixel_y = 17 + }, +/turf/open/floor/plating/platebotc, +/area/bosenmori/interior_glass/cargo) +"eAP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"eAR" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"eBa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"eBu" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"eBQ" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/bosenmori/outside/east_barrens) +"eCh" = ( +/turf/open/floor/kutjevo/tiles, +/area/bosenmori/mountain/temple_proper) +"eCr" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/closed/wall/strata_ice/jungle, +/area/bosenmori/mountain/temple_proper) +"eCE" = ( +/obj/effect/decal/remains/human, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/abandoned) +"eDh" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"eDt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass{ + dir = 1; + req_one_access = list(103,106,201) + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/field_post) +"eDz" = ( +/turf/open/floor/loadingarea/west, +/area/bosenmori/shuttles/drop1) +"eDH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/item/notepad{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/tool/pen/clicky{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/tool/pen/blue{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/item/notepad/red{ + pixel_x = -15; + pixel_y = 2 + }, +/obj/item/storage/fancy/cigarettes/spirit, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/offices) +"eDJ" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5; + color = "#8B7B5B" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"eDU" = ( +/obj/structure/window/reinforced, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/nexus) +"eEa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"eEh" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/temple_proper) +"eEp" = ( +/obj/structure/cargo_container/horizontal/blue/bottom{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"eEs" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/north_area) +"eEu" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/plating, +/area/bosenmori/outside/west_area) +"eEE" = ( +/obj/structure/machinery/power/apc{ + cell_type = /obj/item/cell/high; + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/plating, +/area/bosenmori/mountain/clearing) +"eFj" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/obj/item/trash/hotdog{ + pixel_x = 10; + pixel_y = 14 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"eFC" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"eGl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + req_one_access = "100;200" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/fitness) +"eGA" = ( +/obj/structure/grille, +/turf/open/floor/plating/platebot, +/area/bosenmori/outside/cargo) +"eHc" = ( +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"eHe" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/up{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"eHf" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/vault, +/area/bosenmori/interior_regular/security) +"eHK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 0; + pixel_x = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/north, +/area/bosenmori/interior_glass/shipment) +"eHP" = ( +/obj/structure/bed/chair{ + dir = 1; + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/corporate) +"eHU" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"eHV" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/mountain/temple_proper) +"eIo" = ( +/turf/open/floor/plating, +/area/bosenmori/interior_heavy/secured_armory) +"eIv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/shipment) +"eIX" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/grass/grass1, +/area/bosenmori/interior_glass/tree) +"eJl" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = -7; + pixel_x = 0 + }, +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"eJm" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 8; + dir = 8; + pixel_x = -10 + }, +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_glass/shipment) +"eJp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"eJx" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/item/stack/sheet/metal/small_stack{ + pixel_x = -10; + pixel_y = 3 + }, +/obj/structure/machinery/recharger{ + pixel_x = 0; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"eJy" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/pouch/sling{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/storage/pouch/machete{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/storage/pouch/sling, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"eKn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/filtration) +"eKG" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/pilgrim) +"eKR" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"eKU" = ( +/obj/structure/closet/secure_closet/security/standard{ + pixel_x = 8; + pixel_y = -3; + can_be_stacked = 1 + }, +/obj/structure/closet/secure_closet/security/standard{ + pixel_x = -8; + pixel_y = -3; + can_be_stacked = 1 + }, +/turf/open/floor/prison/darkred2/southwest, +/area/bosenmori/interior_regular/security) +"eKZ" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1; + pixel_x = 8; + pixel_y = -8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/bosenmori/mountain/temple_proper) +"eLe" = ( +/turf/open/auto_turf/sand/layer2, +/area/bosenmori/outside/west_area) +"eMg" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river/desert/shallow, +/area/bosenmori/outside/river) +"eMj" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/pizzabox/meat, +/obj/item/reagent_container/food/drinks/golden_cup/tournament_26_06_2011{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/item/ashtray/plastic{ + pixel_y = 10; + pixel_x = 8 + }, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 9; + pixel_y = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"eMF" = ( +/obj/structure/platform, +/turf/open/gm/grass/grass1, +/area/bosenmori/interior_glass/tree) +"eNj" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 2; + req_one_access = "100;101;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/food_processing) +"eNx" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/interior_glass/shipment) +"eOl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"eOn" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Robotics Landing Zone" + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"eOq" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"eOw" = ( +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/north_barrens) +"ePx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"ePy" = ( +/obj/structure/bookcase{ + density = 0; + pixel_x = 0; + pixel_y = 18 + }, +/obj/item/prop/flower_vase/bluewhiteflowers{ + pixel_x = -7; + pixel_y = 32 + }, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"ePS" = ( +/obj/item/tool/warning_cone{ + pixel_x = 0; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"ePV" = ( +/obj/structure/largecrate/black_market/confiscated_equipment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_heavy/secured_armory) +"eQd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_proper) +"eRh" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"eRi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/store) +"eRn" = ( +/turf/closed/wall/solaris, +/area/bosenmori/outside/north_barrens) +"eRu" = ( +/obj/structure/largecrate/supply/supplies{ + fill_from_loc = 1; + name = "Tripod light crate (x8)" + }, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/temple_ruins) +"eRW" = ( +/obj/structure/bed/chair{ + buckling_y = 18; + dir = 8 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/mountain/field_post) +"eRY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/wy{ + pixel_y = 7; + pixel_x = 7 + }, +/obj/item/tool/pen/clicky, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/corporate) +"eSn" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap"; + color = "#8B7B5B" + }, +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"eSp" = ( +/turf/open/floor/warning/north, +/area/bosenmori/mountain/clearing) +"eSZ" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/folded_tent/big, +/obj/item/folded_tent/big, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"eTj" = ( +/obj/structure/flora/tree/joshua, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_barrens) +"eTx" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/closed/wall/mineral/sandstone/runed/decor, +/area/bosenmori/mountain/temple_proper) +"eUf" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 8 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"eUj" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"eUr" = ( +/turf/open/gm, +/area/bosenmori/mountain/temple_ruins) +"eUv" = ( +/obj/structure/platform/mineral/sandstone/runed, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/temple_proper) +"eVb" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bosenmori/mountain/mining) +"eVg" = ( +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/outside/filtration) +"eVE" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 1; + pixel_y = -20 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/shipment) +"eVL" = ( +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/shipment) +"eVM" = ( +/turf/open/floor/loadingarea/north, +/area/bosenmori/outside/filtration) +"eVQ" = ( +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop2) +"eVT" = ( +/obj/structure/closet{ + pixel_x = 4; + pixel_y = 6; + can_be_stacked = 1 + }, +/obj/item/storage/pouch/flare, +/obj/item/storage/pouch/flare/full, +/obj/item/clothing/suit/storage/jacket/marine/vest/tan, +/obj/item/clothing/suit/storage/jacket/marine/vest/tan, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/obj/item/clothing/head/cmcap/flap, +/obj/item/clothing/head/cmcap/flap, +/obj/item/clothing/glasses/mgoggles/green, +/obj/item/clothing/glasses/mgoggles/green, +/obj/item/clothing/suit/storage/labcoat/researcher, +/obj/item/clothing/suit/storage/labcoat/researcher, +/obj/item/storage/backpack/marine/satchel/intel{ + name = "\improper lightweight expedition pack"; + desc = "A heavy-duty IMP based backpack that can be slung around the front or to the side, and can quickly be accessed with only one hand." + }, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"eVU" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/bosenmori/outside/river) +"eWO" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/gm/river, +/area/bosenmori/interior_glass/tree) +"eXT" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/effect/decal/siding, +/turf/open/floor/podhatchfloor, +/area/bosenmori/interior_regular/engineering) +"eYa" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"eYi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"eYm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"eYF" = ( +/obj/structure/dartboard{ + pixel_x = 26; + pixel_y = 1 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"fan" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + pixel_y = -2; + name = "mechanics garage" + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_glass/living) +"fas" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/item/cell/hyper/empty{ + pixel_x = 5; + pixel_y = 0 + }, +/obj/item/tool/crowbar/tactical, +/obj/item/cell/high{ + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_heavy/secured_armory) +"faD" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"fbl" = ( +/turf/open/floor/plating, +/area/bosenmori/outside/east_barrens) +"fbv" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + req_one_access = "100;101;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/food_processing) +"fbZ" = ( +/obj/structure/prop/almayer/cannon_cable_connector, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/outside/river) +"fcx" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/void, +/area/bosenmori/mountain/temple_proper) +"fcH" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/tree) +"fdh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"fdA" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/trash/crushed_cup{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -9; + pixel_y = 15 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/effect/spawner/random/toy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"fdH" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/item/paper_bin{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/tool/pen/clicky{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/tool/pen/clicky{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/offices) +"feh" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/offices) +"fek" = ( +/obj/item/stool{ + icon_state = "stool_alt"; + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"fen" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"fex" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_area) +"feO" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"ffA" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"ffG" = ( +/obj/item/storage/briefcase/inflatable{ + pixel_x = 0; + pixel_y = -3 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"fgb" = ( +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"fgx" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_regular/engineering) +"fgP" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device{ + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_ruins) +"fht" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/cargo) +"fhI" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"fii" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/abandoned) +"fiB" = ( +/turf/open/floor/warningcorner/north, +/area/bosenmori/shuttles/drop1) +"fiC" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"fje" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"fjl" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/north_barrens) +"fjr" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/kutjevo/fake_wood, +/area/bosenmori/mountain/pilgrim) +"fkD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/door/window/southright, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/store) +"fla" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera{ + c_tag = "Living - Mechanics Bay"; + colony_camera_mapload = 0; + network = list("Corporate"); + dir = 8 + }, +/obj/structure/machinery/light/small/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"fle" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"flV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/redyellowfull, +/area/bosenmori/interior_regular/kitchen) +"flZ" = ( +/obj/structure/filingcabinet{ + pixel_y = 15; + pixel_x = 7; + can_block_movement = 0 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 7; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/operations) +"fmu" = ( +/obj/vehicle/powerloader/ft, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/west, +/area/bosenmori/interior_glass/living) +"fmE" = ( +/obj/structure/machinery/power/apc/no_power/north{ + pixel_y = 25 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_regular/research) +"fmV" = ( +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"fnm" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 4; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/clearing) +"fnq" = ( +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 0; + pixel_x = 1 + }, +/obj/structure/machinery/microwave{ + pixel_y = 14; + pixel_x = 1 + }, +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/redyellowfull, +/area/bosenmori/interior_regular/kitchen) +"fnH" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 8 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"fnP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_regular/engineering) +"fop" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign{ + pixel_x = -8; + pixel_y = -2 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/fitness) +"fpO" = ( +/turf/open/desert/desert_shore/shore_corner2, +/area/bosenmori/outside/north_barrens) +"fpQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/shipment) +"fpW" = ( +/turf/open/floor/asteroidwarning/east, +/area/bosenmori/outside/filtration) +"fqm" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/vault, +/area/bosenmori/interior_glass/fitness) +"fqJ" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/oob) +"fqY" = ( +/turf/open/floor/kutjevo, +/area/bosenmori/interior_glass/nexus) +"frf" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/curtain/red, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/corporate) +"fru" = ( +/obj/structure/cargo_container/horizontal/blue/top{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"frw" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_proper) +"frJ" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/temple_ruins) +"frR" = ( +/obj/structure/surface/rack, +/obj/item/prop/geiger_counter{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/prop/geiger_counter{ + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"fsj" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/plating, +/area/bosenmori/outside/south_area) +"fsy" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"fsC" = ( +/obj/structure/closet/crate/supply, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"fta" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight/lantern{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/device/flashlight/lantern{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"ftf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"ftm" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/field_post) +"ftt" = ( +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"ftM" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/outside/cargo) +"fub" = ( +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/platform{ + layer = 3.01 + }, +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/gm/river/desert/shallow, +/area/bosenmori/outside/river) +"fuG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/cargo) +"fuL" = ( +/obj/item/stool{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"fvf" = ( +/turf/open/floor/shiva/floor3, +/area/bosenmori/interior_regular/telecommunication) +"fvl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/living) +"fvs" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"fvV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/shipment) +"fwj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + req_one_access = "101"; + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/cargo) +"fxa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 8; + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/cargo) +"fxg" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"fxZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/pipedispenser, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_regular/engineering) +"fyo" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_regular/security_armory) +"fyU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/largecrate/supply, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"fzf" = ( +/turf/open/gm/coast/beachcorner/south_west, +/area/bosenmori/mountain/river) +"fzj" = ( +/obj/item/prop/torch_frame{ + pixel_y = -34 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/bosenmori/mountain/temple_proper) +"fzk" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"fzo" = ( +/obj/structure/prop/dam/truck/cargo, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"fzt" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/tree) +"fzv" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"fzz" = ( +/turf/open/floor/almayer/w_y0, +/area/bosenmori/interior_glass/corporate) +"fzH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"fAb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor, +/area/bosenmori/interior_glass/living) +"fAG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"fBD" = ( +/turf/open/floor/asteroidwarning/west, +/area/bosenmori/outside/filtration) +"fBN" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/operations) +"fBQ" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/bosenmori/interior_glass/tree) +"fCv" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"fCP" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/food_processing) +"fCX" = ( +/obj/structure/machinery/photocopier{ + wrenchable = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/operations) +"fDk" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"fDm" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/cargo) +"fEa" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/gm, +/area/bosenmori/mountain/temple_ruins) +"fEf" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/mountain/mining) +"fEI" = ( +/obj/structure/barricade/metal{ + dir = 8; + pixel_x = -1 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 1 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 8; + pixel_x = -1 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 8; + pixel_x = 1 + }, +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/structure/curtain/red{ + pixel_x = 0; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/bosenmori/interior_regular/store) +"fEX" = ( +/obj/structure/xenoautopsy/jar_shelf, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"fFu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/meat/human{ + pixel_x = 7; + pixel_y = 0 + }, +/obj/item/reagent_container/food/snacks/meat/synthmeat{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/meat/synthmeat{ + pixel_x = 7; + pixel_y = -9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/reagent_container/food/snacks/meat/corgi{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -7; + pixel_y = 0 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -2; + pixel_y = -7 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/food_processing) +"fFz" = ( +/obj/structure/closet/crate/supply, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"fGi" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/interior_regular/research) +"fGx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"fGN" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"fGP" = ( +/turf/open/floor/prison/darkredfull2, +/area/bosenmori/interior_regular/security) +"fHa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/shipment) +"fHk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control/brbutton/alt{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net/rotary{ + pixel_x = 7; + pixel_y = 2; + phone_category = "Bosenmori Site"; + phone_id = "Administrator's Office" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/offices) +"fHl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"fHB" = ( +/obj/structure/cargo_container/lockmart/left, +/turf/open/floor/bot, +/area/bosenmori/shuttles/drop1) +"fHD" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "Bosenmori Site"; + phone_id = "Colony Operations"; + pixel_y = 1; + pixel_x = 19; + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/operations) +"fHF" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"fHW" = ( +/obj/structure/sink{ + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"fHX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control{ + dir = 1; + id = "medical_entry"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = -21; + pixel_y = -19; + req_one_access = "100" + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"fIm" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/item/stack/sheet/metal/small_stack, +/obj/item/device/flashlight, +/turf/open/floor/dark, +/area/bosenmori/outside/cargo) +"fIr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"fJy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"fJJ" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"fKc" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"fKu" = ( +/obj/structure/reagent_dispensers/water_cooler/walk_past{ + pixel_x = 13; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/fitness) +"fLL" = ( +/obj/item/weapon/broken_glass, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -9; + pixel_y = 21 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"fLZ" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"fMf" = ( +/obj/structure/bed/sofa/vert/grey/top, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/corporate) +"fMl" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/shuttles/drop1) +"fMw" = ( +/turf/open/floor/plating/asteroidwarning/southeast, +/area/bosenmori/mountain/field_post) +"fMJ" = ( +/obj/structure/machinery/camera{ + c_tag = "Nexus - Armory"; + colony_camera_mapload = 0; + dir = 4; + network = list("Corporate") + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_regular/security_armory) +"fNi" = ( +/turf/open/floor/filtrationside/west, +/area/bosenmori/interior_glass/filtration) +"fOt" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/door_control/brbutton/alt{ + pixel_x = 0; + pixel_y = -3; + id = "armory_armory"; + name = "Emergency Armory Lockdown" + }, +/obj/structure/machinery/door_control/brbutton/alt{ + pixel_x = 7; + pixel_y = 9; + name = "Vault-A Lock"; + id = "v1" + }, +/obj/structure/machinery/door_control/brbutton/alt{ + pixel_x = -7; + pixel_y = 9; + name = "Vault-B Lock"; + id = "v2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_heavy/secured_armory) +"fOK" = ( +/obj/structure/curtain/red, +/turf/open/floor/kutjevo/tan, +/area/bosenmori/interior_glass/fitness) +"fOT" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"fPp" = ( +/obj/structure/machinery/light/small/blue{ + dir = 4; + light_color = "#dae2ff"; + light_power = 0.5 + }, +/turf/open/floor/shiva/floor3, +/area/bosenmori/interior_regular/telecommunication) +"fPO" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"fPR" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/bosenmori/interior_glass/cargo) +"fQg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/bosenmori/interior_glass/shipment) +"fQB" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"fQZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/bosenmori/interior_glass/cargo) +"fRl" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/webbing{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/clothing/suit/storage/webbing{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/clothing/suit/storage/webbing{ + pixel_x = -6; + pixel_y = -4 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"fST" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bosenmori/outside/river) +"fSW" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"fTd" = ( +/obj/structure/foamed_metal, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/abandoned) +"fTi" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"fTU" = ( +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"fTZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/cargo) +"fUz" = ( +/turf/open/floor/asteroidfloor, +/area/bosenmori/outside/filtration) +"fUD" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"fUN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/hospital) +"fUT" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/mining) +"fVh" = ( +/turf/open/gm/river/desert/shallow_corner/west, +/area/bosenmori/outside/river) +"fWz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1; + pixel_y = 4; + pixel_x = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"fWU" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"fYg" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"fYY" = ( +/obj/structure/machinery/camera{ + c_tag = "Cargo - Section A"; + colony_camera_mapload = 0; + dir = 4; + network = list("Corporate") + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"fZb" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -8; + pixel_y = 17 + }, +/obj/item/prop/helmetgarb/flair_initech{ + pixel_x = 7; + pixel_y = 17 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/pilgrim) +"fZt" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/interior_regular/engineering) +"fZy" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"fZA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/food_processing) +"fZC" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/temple_proper) +"fZI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/north, +/area/bosenmori/interior_glass/cargo) +"gaj" = ( +/turf/open/floor/asteroid, +/area/bosenmori/shuttles/drop3) +"gbr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/living) +"gbL" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_regular/security) +"gcf" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_barrens) +"gcw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"gcM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"gdb" = ( +/obj/structure/sink{ + layer = 3.1; + dir = 4; + pixel_x = 14; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/bosenmori/interior_regular/kitchen) +"gdf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"gdw" = ( +/obj/structure/stairs/perspective{ + color = "#8B7B5B"; + dir = 8; + icon_state = "p_stair_sn_full_cap"; + layer = 2.5 + }, +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"gdW" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/clothing/under/kilt{ + pixel_x = 0; + pixel_y = 3 + }, +/obj/item/clothing/suit/storage/marine/veteran/lamp{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/clothing/suit/storage/marine/veteran/lamp{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/item/clothing/suit/storage/marine/veteran/dutch{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/clothing/suit/storage/labcoat/researcher, +/obj/item/clothing/suit/storage/jacket/marine/bomber/grey{ + pixel_x = 8; + pixel_y = 0 + }, +/obj/item/clothing/suit/storage/jacket/marine/bomber/grey{ + pixel_x = -7; + pixel_y = -6 + }, +/obj/item/clothing/suit/storage/jacket/marine/bomber/red{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/clothing/suit/storage/jacket/marine/bomber{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/clothing/suit/storage/jacket/marine/bomber/red{ + pixel_x = 8; + pixel_y = -6 + }, +/obj/item/clothing/suit/storage/jacket/marine/corporate/formal{ + pixel_x = -6; + pixel_y = -1 + }, +/obj/item/clothing/suit/storage/jacket/marine/corporate/grey{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/clothing/suit/storage/jacket/marine/corporate/brown{ + pixel_x = 7; + pixel_y = -8 + }, +/obj/item/clothing/suit/storage/jacket/marine/corporate/black, +/obj/item/clothing/suit/storage/jacket/marine/vest/tan{ + pixel_x = 5; + pixel_y = -10 + }, +/obj/item/clothing/suit/storage/jacket/marine/vest/tan{ + pixel_x = -7; + pixel_y = -9 + }, +/obj/item/clothing/suit/storage/jacket/marine/vest/grey{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/clothing/suit/storage/jacket/marine/vest{ + pixel_x = -9; + pixel_y = 3 + }, +/obj/item/clothing/suit/storage/jacket/marine/pilot{ + pixel_x = -3; + pixel_y = -2; + name = "pilot vest" + }, +/obj/item/clothing/suit/storage/jacket/marine/service/tanker, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/store) +"geI" = ( +/obj/item/prop/rock, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/abandoned) +"geT" = ( +/obj/structure/closet/crate/construction, +/obj/item/stack/sheet/metal/small_stack{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal/small_stack{ + pixel_x = 1; + pixel_y = -4 + }, +/turf/open/floor/bot, +/area/bosenmori/outside/filtration) +"gfk" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/stack/sheet/cardboard/full_stack, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/obj/item/device/flashlight/combat, +/turf/open/floor/prison/darkbrown2/east, +/area/bosenmori/interior_glass/cargo) +"gfm" = ( +/obj/structure/prop/dam/gravestone, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"gfN" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast" + }, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/operations) +"gfW" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"ggp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"ggB" = ( +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/outside/cargo) +"ggD" = ( +/turf/open/gm/river/desert/shallow, +/area/bosenmori/outside/river) +"ghw" = ( +/obj/structure/displaycase, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"ghH" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"gib" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/mountain/temple_proper) +"gjK" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/mountain/temple_ruins) +"gkc" = ( +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"gki" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/effect/spawner/random/toolbox, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_regular/telecommunication) +"gkm" = ( +/obj/structure/stairs/perspective{ + color = "#8B7B5B"; + dir = 4; + icon_state = "p_stair_sn_full_cap"; + layer = 2.5 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/pilgrim) +"gkx" = ( +/obj/item/trash/uscm_mre{ + name = " crumbled TWE MRE"; + pixel_x = -11; + pixel_y = 16 + }, +/obj/item/trash/uscm_mre{ + name = " crumbled TWE MRE"; + pixel_x = 13; + pixel_y = -1 + }, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 9; + pixel_y = 15 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop1) +"gkM" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5; + color = "#8B7B5B" + }, +/obj/structure/platform/stair_cut/alt{ + icon_state = "kutjevo_platform_sm_stair_alt" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/pilgrim) +"gkU" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + pixel_y = -2; + name = "mechanics garage" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_glass/living) +"glf" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"glu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"glE" = ( +/obj/structure/platform/kutjevo/rock{ + color = "#9494b8" + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/mountain/pilgrim) +"gmY" = ( +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"gnb" = ( +/turf/open/floor/warning/north, +/area/bosenmori/outside/filtration) +"gnd" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/desert/desert_shore/shore_edge1, +/area/bosenmori/outside/river) +"gno" = ( +/obj/structure/cargo_container/seegson/left{ + pixel_y = 10 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"gnr" = ( +/turf/closed/wall/strata_ice/jungle, +/area/bosenmori/mountain/clearing) +"gnu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_x = 0; + pixel_y = 3 + }, +/turf/open/floor/prison/darkredfull2, +/area/bosenmori/interior_regular/security) +"gnM" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/turf/open/floor/wood, +/area/bosenmori/outside/west_barrens) +"gnR" = ( +/obj/structure/machinery/prop/almayer/computer{ + pixel_y = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2, +/area/bosenmori/interior_glass/shipment) +"goa" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1; + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"gom" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop2) +"goQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"gpk" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/shuttles/drop1) +"gpU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"gqx" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -7; + pixel_y = 15 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"gqJ" = ( +/obj/item/storage/firstaid/regular{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_glass/fitness) +"grj" = ( +/obj/structure/largecrate/supply/supplies{ + fill_from_loc = 1; + name = "Tripod light crate (x8)" + }, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"grE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_regular/telecommunication) +"grZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/on, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/security) +"gsD" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + name = "Corporate Liaison's Closet" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/corporate) +"gtk" = ( +/obj/structure/machinery/colony_floodlight{ + light_color = "#dae2ff" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/north_barrens) +"gtN" = ( +/obj/structure/machinery/landinglight/ds1/spoke, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11; + pixel_y = 2 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bosenmori/shuttles/drop3) +"gui" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"gvZ" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"gwc" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"gwl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/north_area) +"gwn" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"gwA" = ( +/obj/structure/pipes/standard/tank/oxygen, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"gwD" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"gwF" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/outside/river) +"gwM" = ( +/turf/open/floor/corsat, +/area/bosenmori/interior_heavy/secured_armory) +"gwN" = ( +/turf/open/floor/almayer/w_y2, +/area/bosenmori/interior_glass/nexus) +"gwW" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/bosenmori/outside/north_barrens) +"gxb" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"gxr" = ( +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/field_post) +"gxu" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/bosenmori/outside/north_barrens) +"gxA" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"gzv" = ( +/obj/item/trash/raisins{ + pixel_x = -10; + pixel_y = 15 + }, +/obj/item/trash/popcorn{ + pixel_x = -9; + pixel_y = 0 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"gzz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/bosenmori/interior_glass/cargo) +"gzA" = ( +/obj/structure/bed/chair/office/light{ + dir = 4; + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/offices) +"gzV" = ( +/obj/structure/closet/crate/miningcar{ + layer = 3.01 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"gzZ" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/shuttles/drop2) +"gAa" = ( +/obj/structure/grille, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/cargo) +"gAw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"gAC" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop1) +"gAI" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"gBh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_glass/fitness) +"gBt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/fitness) +"gCy" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"gCO" = ( +/obj/structure/machinery/floodlight, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/cargo) +"gCR" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bosenmori/shuttles/drop1) +"gCZ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/up, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"gDf" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"gDq" = ( +/obj/structure/machinery/telecomms/relay/preset/tower, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/shuttles/drop1) +"gDJ" = ( +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic"; + density = 0 + }, +/obj/item/clothing/under/marine/veteran/mercenary/miner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/blackfull, +/area/bosenmori/interior_regular/store) +"gEl" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"gEW" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/interior_glass/shipment) +"gFe" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"gFE" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/structure/prop/server_equipment/laptop/on, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/floor3, +/area/bosenmori/interior_regular/telecommunication) +"gFI" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/nexus) +"gFO" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/prison/darkredfull2, +/area/bosenmori/interior_regular/security) +"gFP" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"gFV" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"gGe" = ( +/obj/structure/platform/kutjevo/smooth/stair_plate{ + pixel_x = 0; + pixel_y = -1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/field_post) +"gGr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/cargo) +"gGv" = ( +/obj/item/device/flashlight/lamp/tripod/grey, +/obj/structure/platform_decoration, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/field_post) +"gGF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 8; + req_one_access = "100;200" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"gGT" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5; + color = "#6e6e6e" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_regular/operations) +"gGV" = ( +/obj/item/storage/firstaid/regular{ + pixel_y = 28 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"gHG" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/east_barrens) +"gJn" = ( +/obj/structure/sink{ + pixel_y = 24; + layer = 3.1 + }, +/obj/structure/mirror{ + pixel_y = 35; + pixel_x = -1 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 0; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/store) +"gKo" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/item/paper_bin/wy{ + pixel_y = 7; + pixel_x = 7 + }, +/obj/item/tool/pen/clicky, +/turf/open/floor/shiva/floor3, +/area/bosenmori/interior_regular/telecommunication) +"gKv" = ( +/obj/structure/lz_sign/lazarus_sign{ + density = 0 + }, +/turf/open/floor, +/area/bosenmori/mountain/clearing) +"gKB" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/mining) +"gKG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/decal/remains/human, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/abandoned) +"gKQ" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.25; + density = 0; + climb_delay = 0 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.2 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/gm/coast/beachcorner/south_east, +/area/bosenmori/interior_glass/tree) +"gKY" = ( +/turf/open/floor/warning, +/area/bosenmori/shuttles/drop3) +"gLN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"gMt" = ( +/obj/item/frame/table/almayer, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/abandoned) +"gMB" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"gNl" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/outside/filtration) +"gNn" = ( +/obj/item/clothing/mask/gas/yautja/damaged{ + pixel_y = -10 + }, +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/turf/open/floor/corsat, +/area/bosenmori/interior_heavy/secured_armory) +"gNu" = ( +/obj/structure/closet/crate, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/head/radiation, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"gNI" = ( +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_proper) +"gNX" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/megaphone, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/offices) +"gOt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"gON" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"gOU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"gPd" = ( +/obj/structure/largecrate/random/case, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"gPk" = ( +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3.01 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"gPm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/cargo) +"gPs" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8; + color = "#e6ccb3" + }, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/dirt2, +/area/bosenmori/outside/east_barrens) +"gPB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"gPU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = 0; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"gPX" = ( +/turf/open/floor/carpet, +/area/bosenmori/interior_glass/fitness) +"gRu" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop2) +"gRH" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/bosenmori/outside/river) +"gRV" = ( +/obj/structure/girder, +/turf/open/floor/warning/southwest, +/area/bosenmori/mountain/mining) +"gRW" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/abandoned) +"gSa" = ( +/obj/structure/machinery/landinglight/ds1/spoke, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 3 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bosenmori/shuttles/drop3) +"gSv" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/bosenmori/interior_glass/nexus) +"gSN" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/nexus) +"gTF" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30; + pixel_x = -11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"gTR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_regular/telecommunication) +"gUb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"gUH" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_area) +"gVe" = ( +/obj/structure/bed/chair{ + dir = 1; + pixel_x = -5; + pixel_y = 9 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"gVl" = ( +/obj/structure/machinery/photocopier/wyphotocopier, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"gVm" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/blue/east, +/area/bosenmori/interior_regular/kitchen) +"gWk" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/bosenmori/outside/west_barrens) +"gWL" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/abandoned) +"gXh" = ( +/obj/item/stool{ + icon_state = "stool_alt"; + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"gXi" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"gXJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Bosenmori Site"; + phone_color = "red"; + phone_id = "Mining Hub"; + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"gYa" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo, +/area/bosenmori/interior_glass/nexus) +"gYk" = ( +/obj/structure/barricade/handrail/type_b{ + pixel_x = 0; + pixel_y = -5 + }, +/turf/open/shuttle/escapepod/floor0/north, +/area/bosenmori/interior_regular/telecommunication) +"gYm" = ( +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/pilgrim) +"gYW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_glass/food_processing) +"gZS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/north_area) +"hak" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/abandoned) +"hat" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/box/lightstick{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/storage/box/lightstick{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/lightstick/red{ + pixel_x = -7; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"haF" = ( +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"haJ" = ( +/turf/closed/wall/shiva/prefabricated, +/area/bosenmori/mountain/pilgrim) +"haP" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/bosenmori/outside/river) +"hbH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"hcK" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/nexus) +"hdc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/food_processing) +"hdq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/corporate) +"hdr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/corporate) +"hdF" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -9; + pixel_y = 21 + }, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -2; + pixel_y = 11 + }, +/obj/item/trash/hotdog, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"hdP" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"heh" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"hen" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"heX" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/food_processing) +"hfD" = ( +/obj/structure/machinery/light/small/blue{ + dir = 4; + light_color = "#dae2ff"; + light_power = 0.5 + }, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"hfE" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/field_post) +"hfI" = ( +/turf/open/desert/desert_shore/shore_corner1/north, +/area/bosenmori/outside/north_barrens) +"hfM" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"hfR" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"hgk" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"hgp" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Bosenmori Site"; + phone_color = "red"; + phone_id = "Cargo Retrievals"; + pixel_x = 2; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/combat, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/shipment) +"hhm" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river/desert/shallow_edge, +/area/bosenmori/outside/river) +"hhA" = ( +/obj/structure/machinery/telecomms/relay/preset/ice_colony{ + density = 0; + layer = 6 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/escapepod/east, +/area/bosenmori/interior_regular/telecommunication) +"hiu" = ( +/obj/structure/noticeboard{ + pixel_y = 30; + pixel_x = 0; + layer = 2.1; + name = "wooden rack"; + desc = "A wooden rack fitted to the wall."; + color = "#967e73" + }, +/obj/item/weapon/gun/rifle/mar40/lmg{ + pixel_y = 27 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"hix" = ( +/obj/structure/machinery/door/airlock/almayer/maint/autoname, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_glass/cargo) +"hjL" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/desert, +/area/bosenmori/interior_glass/nexus) +"hkl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Armory Blastdoor"; + id = "armory_armory"; + dir = 4 + }, +/turf/open/floor/greengrid, +/area/bosenmori/interior_heavy/secured_armory) +"hky" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/item/weapon/unathiknife{ + desc = "A curved blade made of a strange material. It looks both old and very sharp."; + force = 30; + name = "\improper alien blade"; + throwforce = 26; + pixel_x = 22; + pixel_y = 13 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_ruins) +"hkZ" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 9; + pixel_y = -7; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = -7; + pixel_x = 12 + }, +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/outside/filtration) +"hlS" = ( +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 13; + pixel_y = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"hmp" = ( +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"hmv" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1; + color = "#8B7B5B" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/door/window/westright{ + dir = 2; + layer = 2.9 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/cargo) +"hmC" = ( +/turf/open/desert/desert_shore/shore_edge1, +/area/bosenmori/outside/north_barrens) +"hmV" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"hnN" = ( +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"hoo" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/box/evidence{ + pixel_y = 6; + pixel_x = 4 + }, +/obj/item/device/taperecorder{ + pixel_y = -1; + pixel_x = -9 + }, +/obj/item/storage/box/tapes{ + pixel_x = 0; + pixel_y = -7 + }, +/turf/open/floor/prison/darkred2/southeast, +/area/bosenmori/interior_regular/security) +"hoQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/north_area) +"hqa" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/bosenmori/outside/north_barrens) +"hqD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/filtration) +"hqI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/shipment) +"hqR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"hrk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"hrn" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/kitchen) +"hsh" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/prison/whitepurplecorner, +/area/bosenmori/interior_regular/research) +"htz" = ( +/turf/open/gm/dirt2, +/area/bosenmori/shuttles/drop3) +"htR" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop2) +"htX" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 4; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"hue" = ( +/obj/item/trash/wy_chips_pepper, +/turf/open/floor, +/area/bosenmori/outside/south_area) +"hvk" = ( +/obj/item/stool{ + pixel_x = -6; + pixel_y = 16 + }, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/clearing) +"hvA" = ( +/obj/item/storage/firstaid/regular/empty, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/abandoned) +"hvG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"hwh" = ( +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/tool/pen/clicky{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1; + color = "#8B7B5B" + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/cargo) +"hwp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/w_y2, +/area/bosenmori/interior_glass/corporate) +"hxb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"hxo" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"hxL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"hxX" = ( +/obj/structure/foamed_metal, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/abandoned) +"hyb" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/gm/coast/east, +/area/bosenmori/interior_glass/tree) +"hyr" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth/stair_plate{ + pixel_x = 0; + pixel_y = -1; + layer = 2.99 + }, +/turf/open/gm/river/desert/shallow_edge/east, +/area/bosenmori/outside/river) +"hyx" = ( +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/obj/structure/prop/dam/boulder/boulder3, +/obj/item/trash/crushed_cup{ + pixel_x = -3; + pixel_y = 8 + }, +/turf/open/desert, +/area/bosenmori/interior_glass/nexus) +"hyR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"hyU" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/sign/banners/maximumeffort{ + pixel_x = -17; + pixel_y = 27 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/offices) +"hzm" = ( +/obj/structure/prop/ice_colony/soil_net, +/turf/open/gm/dirt/desert1, +/area/bosenmori/mountain/temple_ruins) +"hzn" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/mountain/mining) +"hzF" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/hos, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"hzI" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bosenmori/interior_glass/fitness) +"hzS" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/mining) +"hzW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"hzY" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"hAd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"hAe" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast" + }, +/turf/open/floor/vault, +/area/bosenmori/interior_regular/security) +"hAs" = ( +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"hAB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/cargo) +"hAQ" = ( +/turf/open/desert/desert_shore/shore_corner1, +/area/bosenmori/outside/river) +"hAR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"hAT" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/filtration) +"hBb" = ( +/turf/open/floor/warning/east, +/area/bosenmori/shuttles/drop2) +"hBn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/bosenmori/interior_glass/shipment) +"hBw" = ( +/turf/open/floor/delivery, +/area/bosenmori/shuttles/drop1) +"hBy" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/closed/wall/huntership{ + color = "#ac7339" + }, +/area/bosenmori/mountain/temple_proper) +"hBE" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/pilgrim) +"hCj" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"hCo" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3.01 + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/mining) +"hCC" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/strata/white_cyan2/west, +/area/bosenmori/interior_glass/food_processing) +"hCD" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"hDa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/abandoned) +"hDv" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 5; + pixel_y = 19 + }, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -8; + pixel_y = 11 + }, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 1 + }, +/turf/open/floor, +/area/bosenmori/outside/south_area) +"hDB" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_y = 0; + pixel_x = 4 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_y = 6; + pixel_x = -6 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"hEN" = ( +/obj/structure/prop/ice_colony/soil_net, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"hEY" = ( +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"hFd" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_area) +"hFI" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"hFP" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"hFU" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast" + }, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/shipment) +"hGb" = ( +/obj/structure/platform_decoration, +/obj/structure/prop/ice_colony/flamingo, +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/north_area) +"hGd" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_full"; + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/bosenmori/mountain/temple_proper) +"hGE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/backpack, +/obj/item/device/camera_film{ + pixel_x = -3; + pixel_y = 18 + }, +/obj/item/device/camera_film{ + pixel_x = -10; + pixel_y = 12 + }, +/obj/item/device/camera{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/offices) +"hGT" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" + }, +/obj/item/clothing/accessory/stethoscope, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"hHi" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = -1; + pixel_y = 0 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/corporate) +"hHk" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"hHy" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/floor/kutjevo/tiles, +/area/bosenmori/mountain/temple_proper) +"hHD" = ( +/obj/structure/prop/ice_colony/soil_net, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_ruins) +"hHS" = ( +/obj/structure/platform/kutjevo/rock{ + color = "#9494b8" + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/clearing) +"hIc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/cargo) +"hIi" = ( +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = -3; + pixel_y = 11 + }, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"hIk" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop2) +"hIv" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + req_one_access = "106" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/engineering) +"hIE" = ( +/obj/structure/cargo_container/horizontal/blue/middle{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"hIH" = ( +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = -7; + pixel_x = 0 + }, +/turf/open/floor/asteroidfloor, +/area/bosenmori/outside/filtration) +"hIN" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/temple_proper) +"hIR" = ( +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"hJl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/interior_glass/shipment) +"hJt" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"hJu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/living) +"hJw" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/west_barrens) +"hKr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 1; + pixel_x = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"hLu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/interior_glass/nexus) +"hMa" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/temple_proper) +"hMu" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"hMA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"hMF" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/bosenmori/interior_glass/tree) +"hMN" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.18; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/cargo) +"hNu" = ( +/obj/structure/dispenser, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/cargo) +"hNV" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"hOb" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/bosenmori/outside/filtration) +"hOk" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/showcase, +/turf/open/floor/almayer_hull/blackfull, +/area/bosenmori/interior_regular/store) +"hOt" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"hOO" = ( +/obj/structure/flora/tree/joshua, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"hOS" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"hOY" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/bosenmori/mountain/pilgrim) +"hPr" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"hPx" = ( +/obj/structure/surface/rack, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/gloves/botanic_leather{ + pixel_x = 0; + pixel_y = -6 + }, +/obj/item/device/flashlight/combat, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"hPB" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "sec_armory"; + dir = 8; + name = "Armory Blastdoor" + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_regular/security_armory) +"hPI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"hQp" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"hQB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"hQU" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"hRs" = ( +/obj/structure/bed/chair/comfy/bench/north, +/turf/open/floor/asteroidwarning/east, +/area/bosenmori/outside/filtration) +"hRt" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.25; + density = 0; + climb_delay = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_glass/corporate) +"hSi" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/operations) +"hSy" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bosenmori/outside/river) +"hTB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/north_area) +"hTO" = ( +/obj/structure/window/framed/prefab, +/turf/open/floor/plating, +/area/bosenmori/mountain/mining) +"hTS" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/temple_proper) +"hUM" = ( +/obj/structure/largecrate/random{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/largecrate/random{ + pixel_x = -3; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"hUX" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"hVx" = ( +/turf/open/floor/warning/east, +/area/bosenmori/shuttles/drop1) +"hVN" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"hVO" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"hWt" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_glass/filtration) +"hWY" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/operations) +"hXs" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/outside/south_area) +"hXN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison/whitepurplecorner/east, +/area/bosenmori/interior_regular/research) +"hXZ" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/weapon/telebaton, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"hYg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/outside/south_area) +"hYE" = ( +/obj/structure/grille, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"hYL" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/beakers{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/effect/spawner/random/pills/highchance, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"hYM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1; + pixel_y = 18; + pixel_x = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"hZb" = ( +/obj/structure/closet/crate/supply, +/turf/open/floor/prison/darkbrown2/north, +/area/bosenmori/interior_glass/cargo) +"hZQ" = ( +/turf/open/floor/kutjevo/fake_wood, +/area/bosenmori/outside/river) +"hZU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/north_area) +"hZX" = ( +/turf/open/gm/coast/east, +/area/bosenmori/interior_glass/tree) +"iad" = ( +/obj/structure/prop/almayer/cannon_cables, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"iaf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/corporate) +"iaj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/bosenmori/interior_glass/hospital) +"iay" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/structure/machinery/faxmachine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/operations) +"iaI" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/interior_glass/nexus) +"iaP" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast" + }, +/turf/open/floor/vault, +/area/bosenmori/interior_glass/nexus) +"ibg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/interior_glass/living) +"ibh" = ( +/obj/structure/platform/stair_cut, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full"; + dir = 6 + }, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"ibW" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"icC" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/cargo) +"idj" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"idN" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/shuttles/drop1) +"iel" = ( +/obj/structure/largecrate/random{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"ieA" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river/desert/shallow_edge/west, +/area/bosenmori/outside/river) +"ifU" = ( +/obj/item/trash/hotdog{ + pixel_x = 9; + pixel_y = -7 + }, +/obj/item/trash/kepler{ + pixel_x = -5; + pixel_y = 17 + }, +/obj/item/weapon/gun/shotgun/merc/damaged, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/interior_glass/cargo) +"ifW" = ( +/obj/structure/platform{ + density = 0; + dir = 1; + icon_state = "platform_deco" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop2) +"igm" = ( +/obj/structure/pipes/unary/freezer{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"ign" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"igw" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.25; + density = 0; + climb_delay = 0 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.2 + }, +/turf/open/gm/coast/beachcorner2/south_east, +/area/bosenmori/interior_glass/tree) +"igT" = ( +/obj/structure/prop/tower{ + density = 0 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/abandoned) +"ihA" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/item/tool/pen/clicky{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/structure/machinery/door_control/brbutton{ + pixel_x = 0; + pixel_y = 25; + name = "Anti-Thief Lock"; + id = "store_theft" + }, +/obj/item/toy/plush/therapy/red{ + pixel_x = -8; + pixel_y = 2 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/store) +"ihJ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"ihR" = ( +/obj/structure/surface/rack, +/obj/item/frame/table{ + pixel_y = -3; + pixel_x = -2 + }, +/obj/item/frame/table{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/frame/table{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/frame/table{ + pixel_y = -3; + pixel_x = -2 + }, +/obj/item/frame/table{ + pixel_y = -3; + pixel_x = -2 + }, +/turf/open/floor/bot, +/area/bosenmori/outside/filtration) +"iih" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/telecommunication) +"iii" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal/med_large_stack, +/obj/item/stack/sheet/metal/med_large_stack{ + pixel_x = -4; + pixel_y = 13 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"iiv" = ( +/turf/closed/wall/solaris, +/area/bosenmori/interior_regular/engineering) +"iiJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"ijh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/east_barrens) +"ijt" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/desert/desert_shore/shore_corner1/west, +/area/bosenmori/outside/north_barrens) +"ijx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/server_equipment, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/bosenmori/interior_heavy/secured_armory) +"ijH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + req_one_access = list(105,103,106,201); + id = "medical_entry" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/hospital) +"ijR" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/bosenmori/interior_glass/food_processing) +"ijT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"ikp" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_heavy/secured_armory) +"ikI" = ( +/turf/open/floor/asteroidwarning, +/area/bosenmori/outside/river) +"ili" = ( +/obj/structure/fence, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/shuttles/drop1) +"ils" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_proper) +"imc" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 2; + req_one_access = "100;200" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Corporate Lockdown Shutter"; + dir = 2; + id = "admin_blast" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/corporate) +"imr" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1; + color = "#8B7B5B" + }, +/obj/item/stack/sheet/wood/medium_stack{ + pixel_x = -5; + pixel_y = 0 + }, +/obj/item/stack/sheet/wood/small_stack{ + pixel_x = 1; + pixel_y = 12 + }, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"imC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/blue/east, +/area/bosenmori/interior_regular/kitchen) +"imF" = ( +/turf/closed/wall/solaris, +/area/bosenmori/interior_regular/operations) +"inh" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/obj/item/spacecash/c200{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/item/ammo_casing/bullet{ + pixel_x = 11; + pixel_y = 4; + name = "token"; + desc = "Something to lead you riches. By 0.34% chance at a time!" + }, +/obj/item/ammo_casing/bullet{ + pixel_x = -6; + pixel_y = 12; + name = "token"; + desc = "Something to lead you riches. By 0.34% chance at a time!" + }, +/obj/item/ammo_casing/bullet{ + pixel_x = 13; + pixel_y = 6; + name = "token"; + desc = "Something to lead you riches. By 0.34% chance at a time!" + }, +/obj/item/reagent_container/food/drinks/flask/detflask{ + pixel_x = -11; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"inE" = ( +/turf/open/desert/desert_shore/shore_corner1/west, +/area/bosenmori/outside/east_barrens) +"ioL" = ( +/obj/structure/platform/kutjevo/rock{ + color = "#9494b8" + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/gm/river, +/area/bosenmori/mountain/river) +"ioR" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir"; + pixel_y = 19 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"ioV" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"ips" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 8; + dir = 8; + pixel_x = -10 + }, +/obj/structure/tent_curtain{ + pixel_x = 0; + pixel_y = -6; + layer = 5.09; + color = "#993300"; + name = "curtain" + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"ipG" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"ipN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/shipment) +"ipT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"iqp" = ( +/obj/structure/platform/mineral/sandstone/runed, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/temple_proper) +"iqy" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/tool/shovel/spade, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"iqK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"iqT" = ( +/turf/closed/wall/mineral/sandstone/runed/decor, +/area/bosenmori/mountain/temple_proper) +"irp" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"irt" = ( +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/tree) +"irz" = ( +/turf/open/floor/warning/north, +/area/bosenmori/shuttles/drop2) +"irC" = ( +/turf/open/gm/river/desert/shallow_edge, +/area/bosenmori/outside/river) +"irK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/cargo) +"isd" = ( +/obj/effect/decal/remains/human, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"ise" = ( +/obj/structure/cargo_container/lockmart/mid, +/turf/open/floor/bot, +/area/bosenmori/shuttles/drop1) +"ism" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bosenmori/shuttles/drop2) +"isq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 16; + pixel_x = -4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"isz" = ( +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"isV" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.5; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/turf/open/floor/warning/north, +/area/bosenmori/shuttles/drop1) +"ita" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/item/device/flashlight/lamp, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"ite" = ( +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"itH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/device/broken_piano, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"iur" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"iut" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/bosenmori/outside/west_barrens) +"iuH" = ( +/obj/item/storage/firstaid/regular{ + pixel_y = 28 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"ivs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/beerkeg/alt_dark{ + anchored = 1; + chemical = null; + density = 0; + pixel_x = -7; + pixel_y = 10 + }, +/obj/structure/reagent_dispensers/beerkeg/alt_dark, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"ivE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"ivK" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/effect/spawner/random/toy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"ivP" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/bosenmori/interior_glass/cargo) +"ivR" = ( +/turf/open/floor/warning/east, +/area/bosenmori/outside/west_barrens) +"iwb" = ( +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/living) +"iwn" = ( +/turf/open/gm/river/desert/shallow, +/area/bosenmori/outside/north_barrens) +"iwu" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"iwI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"iwR" = ( +/turf/closed/wall/shiva/prefabricated, +/area/bosenmori/mountain/clearing) +"ixu" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Bosenmori Site"; + phone_color = "red"; + phone_id = "Dining"; + pixel_x = -5; + pixel_y = 8 + }, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 1; + density = 0; + pixel_x = -25 + }, +/turf/open/floor/prison/bluecorner, +/area/bosenmori/interior_regular/kitchen) +"ixS" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast"; + dir = 4 + }, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/cargo) +"iyo" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/mech_bay_recharge_floor, +/area/bosenmori/interior_glass/living) +"iyL" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/living) +"izd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_heavy/secured_armory) +"ize" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_regular/telecommunication) +"izw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"izI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/food_processing) +"iAc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/north_area) +"iAh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/east_barrens) +"iAq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"iAs" = ( +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic"; + density = 0 + }, +/obj/item/clothing/under/blackskirt{ + pixel_y = -3 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/almayer_hull/blackfull, +/area/bosenmori/interior_regular/store) +"iAK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/hospital) +"iBg" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = -2; + pixel_x = -26 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/corporate) +"iBx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "armory_colo"; + dir = 8; + name = "Armory Blastdoor" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_heavy/secured_armory) +"iBD" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/filtration) +"iCm" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/abandoned) +"iDc" = ( +/turf/open/gm/dirt2, +/area/bosenmori/outside/south_area) +"iDe" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"iDt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/food_processing) +"iDG" = ( +/turf/open/gm/river/desert/deep/covered, +/area/bosenmori/interior_glass/filtration) +"iDP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/bosenmori/outside/filtration) +"iDY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/interior_regular/research) +"iEa" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"iEn" = ( +/obj/structure/platform/kutjevo, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"iEF" = ( +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/temple_ruins) +"iEG" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.25; + density = 0; + climb_delay = 0 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.2 + }, +/turf/open/gm/river, +/area/bosenmori/interior_glass/tree) +"iEV" = ( +/obj/structure/machinery/camera{ + c_tag = "Hospital - Butchers"; + colony_camera_mapload = 0; + network = list("Corporate"); + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/bosenmori/interior_glass/food_processing) +"iEW" = ( +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"iFa" = ( +/obj/structure/sign/banners/twe_worn{ + pixel_x = 0; + pixel_y = 29 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"iFn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidfloor, +/area/bosenmori/outside/filtration) +"iFo" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"iFx" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bosenmori/outside/west_barrens) +"iFT" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/mining) +"iGh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 1; + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/corporate) +"iGD" = ( +/turf/open/gm/coast/south, +/area/bosenmori/mountain/river) +"iGE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/bosenmori/interior_glass/shipment) +"iHF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"iIa" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4; + color = "#9494b8" + }, +/turf/open/gm/river, +/area/bosenmori/mountain/river) +"iIr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"iID" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"iIM" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 2 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/store) +"iIQ" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/temple_proper) +"iJb" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"iJf" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/security) +"iJp" = ( +/obj/structure/girder, +/turf/open/floor/warning/southeast, +/area/bosenmori/mountain/mining) +"iKk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/outside/cargo) +"iKA" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/bosenmori/interior_glass/corporate) +"iLM" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/hospital) +"iLO" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river, +/area/bosenmori/interior_glass/tree) +"iMq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"iML" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"iMU" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"iMZ" = ( +/obj/structure/ore_box{ + name = "wooden cargo crate" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/mining) +"iNt" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/river/desert/shallow, +/area/bosenmori/outside/river) +"iNy" = ( +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/north_area) +"iNH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"iOt" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/food/snacks/cheeseburger{ + pixel_x = 0; + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/carrotfries{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/nexus) +"iOB" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/pouch/general/large{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/storage/pouch/medical{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"iOJ" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_glass/fitness) +"iON" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/prop/almayer/computer/PC/large/dark, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_heavy/secured_armory) +"iPm" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_regular/operations) +"iPz" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"iPA" = ( +/turf/open/gm/river/desert/deep, +/area/bosenmori/outside/river) +"iPO" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_barrens) +"iQv" = ( +/obj/structure/fence, +/turf/open/floor/warning/east, +/area/bosenmori/outside/south_area) +"iQz" = ( +/obj/structure/platform_decoration/kutjevo/smooth{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"iQW" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"iRd" = ( +/turf/open/floor, +/area/bosenmori/interior_glass/living) +"iRA" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"iRC" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/door/window/westright{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"iRP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/warningcorner/north, +/area/bosenmori/shuttles/drop1) +"iSg" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"iSx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/cargo) +"iTl" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitepurplecorner/east, +/area/bosenmori/interior_regular/research) +"iTN" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkbrown2/southeast, +/area/bosenmori/interior_glass/shipment) +"iUR" = ( +/obj/item/stool{ + pixel_x = -2; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"iVf" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/offices) +"iVE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/west, +/area/bosenmori/interior_glass/living) +"iVH" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/clothing/yautja_cape/poncho, +/turf/open/floor/corsat, +/area/bosenmori/interior_heavy/secured_armory) +"iVX" = ( +/obj/item/device/flashlight/combat, +/obj/structure/surface/table/almayer, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"iXs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/banners/maximumeffort{ + pixel_x = -3; + pixel_y = -23 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_glass/nexus) +"iXw" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"iXJ" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop2) +"iXK" = ( +/obj/structure/medical_supply_link, +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"iXM" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"iXR" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"iYs" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/mining) +"iZu" = ( +/obj/item/stool{ + icon_state = "stool_alt"; + pixel_x = -5; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"iZB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/machinery/camera{ + c_tag = "Nexus - Security"; + colony_camera_mapload = 0; + dir = 8; + network = list("Corporate") + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/nexus) +"iZE" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/bosenmori/outside/north_barrens) +"iZY" = ( +/obj/structure/machinery/optable, +/obj/structure/sink{ + layer = 3.1; + dir = 8; + pixel_x = 22; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/autopsy_scanner, +/turf/open/floor/prison/whitepurplecorner/east, +/area/bosenmori/interior_regular/research) +"jay" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 4 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"jaV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitepurplecorner/east, +/area/bosenmori/interior_regular/research) +"jbR" = ( +/obj/structure/prop/almayer/whiteboard{ + pixel_x = 0; + pixel_y = 10; + density = 0 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/offices) +"jbU" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap"; + color = "#8B7B5B"; + dir = 8 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/pilgrim) +"jbW" = ( +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/mining) +"jcg" = ( +/obj/effect/decal/siding, +/turf/open/shuttle/escapepod/floor1, +/area/bosenmori/interior_regular/engineering) +"jdd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/structure/machinery/camera{ + c_tag = "Dome - Offices"; + colony_camera_mapload = 0; + dir = 8; + network = list("Corporate") + }, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/offices) +"jdu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"jdF" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1; + color = "#9494b8" + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/mining) +"jec" = ( +/obj/structure/machinery/light/small/blue{ + dir = 8; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"jeo" = ( +/turf/open/auto_turf/sand/layer2, +/area/bosenmori/shuttles/drop1) +"jeJ" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/bosenmori/interior_glass/shipment) +"jeP" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"jfo" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/cargo) +"jfC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/nexus) +"jfF" = ( +/turf/open/floor/warning/west, +/area/bosenmori/outside/west_barrens) +"jfN" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/stack/yautja_rope{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/bosenmori/mountain/temple_proper) +"jgA" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_barrens) +"jgI" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"jgR" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/filtration) +"jhP" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = 0; + pixel_y = 2 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"jhS" = ( +/obj/structure/prop/invuln/minecart_tracks, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"jic" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap"; + color = "#8B7B5B"; + dir = 1 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/pilgrim) +"jil" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"jiD" = ( +/obj/effect/landmark/hunter_secondary, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"jiF" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/mining) +"jiQ" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/tree) +"jjL" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/bosenmori/mountain/field_post) +"jjO" = ( +/obj/structure/closet/crate/miningcar/yellow, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"jjQ" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/bosenmori/outside/river) +"jkD" = ( +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"jkF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/strata/faux_metal, +/area/bosenmori/interior_regular/store) +"jkH" = ( +/obj/structure/machinery/vending/cola, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/corporate) +"jmz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1; + pixel_y = 16; + pixel_x = -5 + }, +/obj/structure/machinery/light/small/blue{ + dir = 8; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/living) +"jmK" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/bosenmori/interior_glass/shipment) +"jmU" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/north_area) +"jni" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/clothing/under/marine/officer/pilot/flight/para{ + pixel_x = 11; + pixel_y = 8 + }, +/obj/item/clothing/under/marine/officer/pilot{ + pixel_x = 11; + pixel_y = 5 + }, +/obj/item/clothing/under/marine/officer/pilot/dcc{ + pixel_x = 11; + pixel_y = -2 + }, +/obj/item/clothing/under/colonist/boilersuit/white{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/clothing/under/colonist/workwear/khaki{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/clothing/under/kutjevo{ + pixel_x = 1; + pixel_y = 0 + }, +/obj/item/clothing/under/marine/veteran/pmc/corporate{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/clothing/under/marine/veteran/dutch{ + pixel_x = -9; + pixel_y = 7 + }, +/obj/item/clothing/under/tshirt/gray_blu{ + pixel_x = -9; + pixel_y = -2 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/store) +"jnp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"jnB" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/greenblue/southeast, +/area/bosenmori/interior_glass/food_processing) +"jnU" = ( +/turf/open/floor/prison/darkred2/east, +/area/bosenmori/interior_regular/security) +"jok" = ( +/obj/structure/prop{ + name = "\improper seat-like case"; + desc = "It's a case made into an impromptu seat."; + icon_state = "case"; + icon = 'icons/obj/structures/crates.dmi'; + can_buckle = 1; + pixel_y = 5; + layer = 3.6; + pixel_x = 2 + }, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/clearing) +"jor" = ( +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + pixel_x = 16; + pixel_y = 0 + }, +/turf/open/floor/corsat, +/area/bosenmori/interior_heavy/secured_armory) +"jov" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/computerframe, +/turf/open/floor/vault2/west, +/area/bosenmori/interior_glass/living) +"joL" = ( +/obj/structure/girder, +/turf/open/floor/warning/northwest, +/area/bosenmori/mountain/mining) +"joV" = ( +/turf/open/gm/dirt2, +/area/bosenmori/mountain/field_post) +"jpq" = ( +/obj/structure/prop/broken_arcade, +/obj/structure/machinery/light/small/blue{ + dir = 1; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/vault2/west, +/area/bosenmori/interior_glass/living) +"jpy" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/cardboard/medium_stack, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"jpA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"jpD" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tuxedo, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tuxedo, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/reaper, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/offices) +"jpS" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/bosenmori/outside/east_barrens) +"jqd" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_regular/engineering) +"jqi" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/mountain/pilgrim) +"jqr" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"jqX" = ( +/obj/structure/largecrate/random{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/structure/largecrate/random{ + pixel_x = -14; + pixel_y = 17 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"jro" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_y = 17; + pixel_x = 3 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"jrA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/warningcorner/east, +/area/bosenmori/shuttles/drop1) +"jse" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"jsi" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/bosenmori/outside/river) +"jsE" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"jsV" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera{ + c_tag = "Living - Dormitory"; + colony_camera_mapload = 0; + network = list("Corporate"); + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"jtn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/operations) +"jtt" = ( +/obj/structure/largecrate/random/case{ + pixel_x = 0; + pixel_y = 15; + layer = 3.02 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"jtI" = ( +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/fitness) +"jtZ" = ( +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/turf/open/gm/river/desert/shallow/covered, +/area/bosenmori/outside/river) +"jub" = ( +/obj/structure/cargo_container/kelland/left{ + pixel_x = 5; + layer = 2.99 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/bosenmori/interior_glass/shipment) +"juN" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 13; + pixel_y = 17 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"jvb" = ( +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3.01 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"jvx" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/bosenmori/outside/west_barrens) +"jwr" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"jww" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"jwA" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/greenblue, +/area/bosenmori/interior_glass/food_processing) +"jwC" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"jwQ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop2) +"jwV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/medical/lifesaver, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/item/storage/pouch/syringe{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"jwZ" = ( +/obj/item/prop/rock, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/field_post) +"jxp" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"jxA" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/pilgrim) +"jxE" = ( +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/river) +"jxF" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_glass/hospital) +"jxH" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"jxI" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/outside/west_barrens) +"jyp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"jyI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light/small/blue{ + dir = 8; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"jyN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/bearmeat{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/item/reagent_container/food/snacks/bearmeat{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/bearmeat{ + pixel_x = -7; + pixel_y = 15 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 7; + pixel_y = -8 + }, +/obj/item/reagent_container/food/snacks/bearmeat{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"jzD" = ( +/obj/structure/window/framed/solaris/reinforced/tinted, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/security) +"jzE" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/gm/river/desert/deep, +/area/bosenmori/outside/river) +"jzV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/crayon/green{ + pixel_x = -11; + pixel_y = 8 + }, +/obj/item/paper{ + pixel_x = -8; + pixel_y = -4 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bosenmori/interior_glass/living) +"jAH" = ( +/obj/structure/flora/jungle/treeblocker, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/abandoned) +"jAY" = ( +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/turf/open/floor/asteroidfloor, +/area/bosenmori/outside/filtration) +"jBc" = ( +/obj/structure/flora/tree/joshua, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"jBS" = ( +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"jBW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/nexus) +"jCw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop1) +"jCJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_regular/engineering) +"jCN" = ( +/obj/item/storage/photo_album{ + pixel_y = -18; + pixel_x = 1 + }, +/obj/structure/surface/table/reinforced, +/obj/item/device/camera{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/device/camera_film{ + pixel_x = -5; + pixel_y = 19 + }, +/obj/item/device/camera_film{ + pixel_x = -11; + pixel_y = 15 + }, +/obj/item/device/camera_film{ + layer = 3.03; + pixel_x = -9; + pixel_y = 3 + }, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"jCU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/mech_bay_recharge_floor, +/area/bosenmori/interior_glass/living) +"jCX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"jDt" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/interior_glass/filtration) +"jDH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/prop/server_equipment/laptop/closed, +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/telecommunication) +"jDS" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/bosenmori/outside/river) +"jEq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/darkbrown2/southwest, +/area/bosenmori/interior_glass/cargo) +"jEv" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"jEJ" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/bosenmori/outside/west_barrens) +"jEP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/cargo) +"jEY" = ( +/obj/structure/largecrate/random{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"jFe" = ( +/obj/structure/machinery/vending/coffee, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/offices) +"jFV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_heavy/secured_armory) +"jFX" = ( +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/bosenmori/outside/filtration) +"jFY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/tree) +"jGg" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"jGp" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"jGA" = ( +/obj/structure/machinery/telecomms/allinone, +/turf/open/shuttle/escapepod/floor2, +/area/bosenmori/interior_regular/telecommunication) +"jGE" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"jGG" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/podhatchfloor, +/area/bosenmori/interior_regular/engineering) +"jGI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"jGJ" = ( +/turf/open/auto_turf/sand/layer2, +/area/bosenmori/outside/north_area) +"jGQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/fitness) +"jGX" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"jGY" = ( +/obj/structure/flora/tree/joshua, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"jHd" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"jHh" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/mining) +"jHl" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/bot, +/area/bosenmori/shuttles/drop1) +"jHp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"jHQ" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bosenmori/outside/river) +"jHR" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"jIl" = ( +/obj/structure/prop/almayer/computers/mapping_computer{ + name = "colonial operations terminal" + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/operations) +"jIz" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/floor/kutjevo/tiles, +/area/bosenmori/mountain/temple_proper) +"jIT" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/pouch/cassette, +/obj/item/storage/pouch/cassette{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/storage/pouch/tools/tactical{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/item/storage/pouch/tools{ + pixel_x = 1; + pixel_y = 0 + }, +/obj/item/storage/pouch/radio{ + pixel_x = 0; + pixel_y = 4 + }, +/obj/item/storage/pouch/electronics, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"jIV" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/outside/east_area) +"jJv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"jJX" = ( +/obj/structure/prop/rock, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"jKf" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 4; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/field_post) +"jKl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/security) +"jKz" = ( +/obj/item/paper/crumpled{ + pixel_x = -8; + pixel_y = -7 + }, +/obj/item/paper/crumpled{ + pixel_x = 10; + pixel_y = 0 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/offices) +"jKG" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/outside/filtration) +"jLg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"jLp" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/temple_ruins) +"jLA" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"jLU" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"jMb" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"jMi" = ( +/turf/open/asphalt, +/area/bosenmori/shuttles/drop2) +"jMG" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/cargo) +"jMS" = ( +/obj/structure/machinery/cm_vending/sorted/walkman, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"jNb" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/structure/machinery/prop/almayer/computer/PC/large{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"jNt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/warning/north, +/area/bosenmori/outside/filtration) +"jNR" = ( +/obj/structure/closet, +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/head/chefhat, +/obj/item/clothing/head/chefhat, +/turf/open/floor/prison/blue/west, +/area/bosenmori/interior_regular/kitchen) +"jOC" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/green{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/folder/green{ + pixel_x = -2; + pixel_y = 0 + }, +/obj/item/folder/red{ + pixel_x = 12; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"jOP" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/bosenmori/outside/north_barrens) +"jOV" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/river) +"jPb" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"jPN" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitepurplecorner/east, +/area/bosenmori/interior_regular/research) +"jQC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/bosenmori/interior_glass/corporate) +"jQG" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_glass/nexus) +"jRq" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/mining) +"jRA" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/warning/west, +/area/bosenmori/shuttles/drop1) +"jRY" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/smg/fp9000, +/obj/item/weapon/gun/smg/fp9000, +/obj/item/ammo_box/magazine/fp9000, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_regular/security_armory) +"jSu" = ( +/obj/structure/prop/invuln{ + desc = "big pile energy."; + icon = 'icons/obj/structures/props/ice_colony/barrel_yard.dmi'; + icon_state = "pile_0"; + name = "barrel pile" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"jTi" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"jTj" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"jTm" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/bosenmori/outside/north_barrens) +"jTB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research/colony{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Research Complex Shutter"; + id = "science_blast"; + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/research) +"jTH" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"jUb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"jUc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"jUJ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = -2; + pixel_x = -26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/interior_glass/shipment) +"jUO" = ( +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.2 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/bosenmori/outside/north_barrens) +"jVs" = ( +/obj/effect/glowshroom, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/clearing) +"jWd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"jWe" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/prison/whitegreen/southwest, +/area/bosenmori/interior_glass/hospital) +"jWJ" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/bosenmori/interior_glass/shipment) +"jWR" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/bot, +/area/bosenmori/shuttles/drop1) +"jXy" = ( +/obj/structure/cargo_container/horizontal/blue/middle{ + color = "#77b300"; + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/delivery, +/area/bosenmori/shuttles/drop1) +"jYy" = ( +/turf/open/floor/vault2/west, +/area/bosenmori/interior_glass/living) +"jYz" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze{ + pixel_x = 11; + pixel_y = 8 + }, +/obj/item/clothing/glasses/monocle, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/corporate) +"jYB" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/mountain/river) +"jYZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"jZG" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"jZS" = ( +/obj/structure/closet/crate, +/turf/open/floor/delivery, +/area/bosenmori/shuttles/drop1) +"jZZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/tree) +"kan" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/structure/tent_curtain, +/turf/open/floor/wood, +/area/bosenmori/outside/west_barrens) +"kaX" = ( +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/obj/structure/platform{ + layer = 3.01 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.02 + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/north_area) +"kbb" = ( +/turf/open/gm/river/desert/shallow, +/area/bosenmori/interior_glass/filtration) +"kbg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot/north, +/area/bosenmori/shuttles/drop1) +"kbi" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera{ + c_tag = "Engineering - Telecommunication"; + colony_camera_mapload = 0; + dir = 8; + network = list("Corporate") + }, +/turf/open/floor/shiva/floor3, +/area/bosenmori/interior_regular/telecommunication) +"kbp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/living) +"kbU" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"kcb" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/river, +/area/bosenmori/mountain/river) +"kcr" = ( +/obj/structure/machinery/door/airlock/sandstone/runed{ + name = "\improper Heavy Strange Temple Door" + }, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/kutjevo/tiles, +/area/bosenmori/mountain/temple_proper) +"kcQ" = ( +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/floor/bot, +/area/bosenmori/outside/filtration) +"kcT" = ( +/obj/structure/bed/chair/comfy/bench/north{ + pixel_x = 9 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"kds" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/mining) +"kdA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"kdD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"ker" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/temple_ruins) +"kft" = ( +/turf/open/gm/river/desert/shallow/covered, +/area/bosenmori/interior_glass/filtration) +"kfz" = ( +/obj/structure/machinery/mecha_part_fabricator, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow/west, +/area/bosenmori/interior_glass/living) +"kfV" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/pilgrim) +"kfX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/floor3, +/area/bosenmori/interior_regular/telecommunication) +"kgJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/bot, +/area/bosenmori/shuttles/drop1) +"kgO" = ( +/obj/structure/machinery/prop/almayer/CICmap/table/horizontal/segment/four, +/turf/open/floor/shiva/north, +/area/bosenmori/interior_regular/operations) +"kha" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/warning/west, +/area/bosenmori/shuttles/drop1) +"khg" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/field_post) +"kht" = ( +/obj/item/stool{ + icon_state = "stool_alt" + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"khH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/faxmachine{ + wrenchable = 1; + target_department = "Union of Progress Peoples"; + department = "Ravdonika Archaeo"; + can_block_movement = 0; + network = "UPP Colonial Network" + }, +/obj/item/device/working_joe_pda{ + pixel_x = 18; + pixel_y = 6 + }, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"khO" = ( +/obj/structure/fence, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"kig" = ( +/obj/structure/largecrate/random{ + pixel_x = -5; + pixel_y = 17 + }, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"kih" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/kutjevo/fake_wood, +/area/bosenmori/mountain/pilgrim) +"kip" = ( +/turf/closed/wall/solaris, +/area/bosenmori/outside/south_area) +"kiv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/bosenmori/interior_glass/tree) +"kjc" = ( +/turf/open/desert/desert_shore/shore_corner1/north, +/area/bosenmori/outside/west_barrens) +"kjn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 8; + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/food_processing) +"kjo" = ( +/obj/structure/machinery/power/apc{ + cell_type = /obj/item/cell/high; + dir = 4; + pixel_x = 25 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/fitness) +"kjs" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"kjz" = ( +/turf/open/gm/dirt2, +/area/bosenmori/mountain/abandoned) +"kjM" = ( +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/field_post) +"kjU" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/offices) +"kkL" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_heavy/secured_armory) +"kkW" = ( +/turf/closed/wall/strata_ice/jungle, +/area/bosenmori/mountain/field_post) +"klM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 4; + pixel_x = -2 + }, +/obj/item/ashtray/plastic{ + pixel_y = -10; + pixel_x = 6 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/offices) +"klO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"klY" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_glass/nexus) +"kme" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_barrens) +"knj" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/mining) +"kno" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"knC" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bosenmori/outside/filtration) +"kob" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"koK" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/cargo) +"kpc" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1; + dir = 4 + }, +/obj/structure/bed/stool, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"kpo" = ( +/turf/open/gm/coast/beachcorner/south_east, +/area/bosenmori/mountain/river) +"kqk" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenblue, +/area/bosenmori/interior_glass/food_processing) +"krk" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"krm" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + name = "Post"; + pixel_x = 16; + pixel_y = 16; + density = 0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + name = "Post"; + pixel_x = -16; + pixel_y = 16; + density = 0 + }, +/obj/structure/sign/safety/east{ + pixel_x = 1; + pixel_y = 22 + }, +/obj/structure/sign/safety/three{ + pixel_x = 14; + pixel_y = 22 + }, +/turf/open/floor/plating/asteroidfloor, +/area/bosenmori/mountain/field_post) +"krz" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + name = "Anti-Theft Shutters"; + id = "store_theft" + }, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/store) +"krF" = ( +/turf/open/floor/prison/blue/southeast, +/area/bosenmori/interior_regular/kitchen) +"krN" = ( +/turf/open/floor/warning/southeast, +/area/bosenmori/outside/filtration) +"krU" = ( +/obj/structure/prop/dam/boulder/boulder2, +/obj/structure/prop/ice_colony/hula_girl{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"krZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast"; + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/cargo) +"ksa" = ( +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_area) +"ksQ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8; + pixel_y = 5; + buckling_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"ktv" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/bosenmori/interior_glass/tree) +"ktS" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/bosenmori/mountain/pilgrim) +"ktW" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"kuW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/moneybag{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/spacecash/c1000{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/item/device/binoculars/civ, +/turf/open/floor/greengrid, +/area/bosenmori/interior_glass/corporate) +"kvF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/abandoned) +"kwu" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"kwB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 8; + req_one_access = "100;200" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"kxx" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/flora/pottedplant{ + pixel_x = -1; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/offices) +"kxA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/maintenance_jack, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"kyg" = ( +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"kyu" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/east_barrens) +"kyz" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack{ + color = "#8B7B5B"; + pixel_y = 19 + }, +/turf/open/floor/plating/platebotc, +/area/bosenmori/interior_glass/cargo) +"kyJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"kyL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot, +/area/bosenmori/outside/filtration) +"kyN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"kzd" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"kzp" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/temple_proper) +"kzX" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/bosenmori/outside/west_barrens) +"kAs" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"kAy" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/prop/colony/canister{ + pixel_x = -5; + pixel_y = -7 + }, +/turf/open/floor, +/area/bosenmori/interior_glass/living) +"kAL" = ( +/turf/open/floor/plating, +/area/bosenmori/mountain/clearing) +"kAR" = ( +/obj/item/tool/warning_cone{ + pixel_x = -11; + pixel_y = -4 + }, +/obj/structure/largecrate/random/case/small{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = 0; + pixel_y = 15 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"kBj" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"kBI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"kBJ" = ( +/obj/structure/fence, +/turf/open/floor/warning/southwest, +/area/bosenmori/outside/south_area) +"kBL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small/blue{ + dir = 8; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/corporate) +"kCp" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/bosenmori/interior_regular/security) +"kCs" = ( +/turf/open/floor/warning/west, +/area/bosenmori/outside/filtration) +"kCt" = ( +/obj/structure/cable/heavyduty, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"kCv" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/outside/east_barrens) +"kDo" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"kDC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Bay"; + req_one_access = list(105,103,106,201) + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/hospital) +"kDK" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_x = -7; + pixel_y = 22; + density = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"kDS" = ( +/obj/structure/platform{ + density = 0; + icon_state = "platform_deco" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop2) +"kEo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"kEA" = ( +/obj/effect/decal/siding{ + icon_state = "siding9" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bosenmori/interior_glass/fitness) +"kFg" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/bot, +/area/bosenmori/outside/filtration) +"kFv" = ( +/obj/structure/prop/dam/boulder, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"kFF" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/mining) +"kGk" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/FixOVein{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/storage/firstaid/rad, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"kGF" = ( +/obj/item/stool{ + pixel_x = 2; + pixel_y = -3 + }, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/clearing) +"kHi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"kHo" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/mountain/abandoned) +"kHz" = ( +/obj/item/stool{ + icon_state = "stool_alt"; + pixel_x = -5; + pixel_y = 9 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"kHI" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/engineering) +"kHL" = ( +/obj/structure/stairs/perspective{ + color = "#8B7B5B"; + icon_state = "p_stair_full"; + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"kIa" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.01 + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/mining) +"kIk" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_regular/operations) +"kJM" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0; + layer = 6; + pixel_y = -15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenbluecorner/north, +/area/bosenmori/interior_glass/food_processing) +"kKf" = ( +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"kKi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/corporate) +"kKj" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"kKk" = ( +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic"; + density = 0 + }, +/obj/item/clothing/under/tshirt/r_bla, +/turf/open/floor/almayer_hull/blackfull, +/area/bosenmori/interior_regular/store) +"kKl" = ( +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/nexus) +"kKq" = ( +/obj/structure/closet/crate/hydroponics, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenblue/east, +/area/bosenmori/interior_glass/food_processing) +"kKw" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating/panelscorched, +/area/bosenmori/mountain/abandoned) +"kKy" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/obj/item/pizzabox/vegetable, +/turf/open/floor/redyellowfull, +/area/bosenmori/interior_regular/kitchen) +"kKU" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"kLq" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/void, +/area/bosenmori/mountain/clearing) +"kLD" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_regular/research) +"kLW" = ( +/obj/structure/prop/dam/crane{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/cargo) +"kMk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/bosenmori/interior_regular/research) +"kMy" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/bosenmori/interior_regular/security) +"kMS" = ( +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"kNs" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"kNH" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/clearing) +"kNZ" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/plating, +/area/bosenmori/outside/east_barrens) +"kOa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = 8; + pixel_y = 17 + }, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 0; + pixel_x = -2 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/security) +"kOg" = ( +/obj/structure/closet/crate/miningcar/yellow, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/cargo) +"kOC" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Nexus Landing Zone" + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"kON" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"kPP" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"kQi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"kQM" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"kRa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/bosenmori/outside/filtration) +"kRf" = ( +/obj/structure/closet/crate/secure, +/obj/item/weapon/yautja/knife, +/obj/item/tool/surgery/wound_clamp, +/turf/open/floor/corsat, +/area/bosenmori/interior_heavy/secured_armory) +"kRF" = ( +/obj/structure/machinery/cm_vending/sorted/tech/science, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"kRR" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 + }, +/turf/open/floor/prison/yellow/east, +/area/bosenmori/interior_glass/living) +"kSc" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"kSk" = ( +/obj/structure/machinery/power/apc/no_power/south{ + pixel_y = -25 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/corporate) +"kSp" = ( +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"kSw" = ( +/obj/structure/flora/tree/joshua, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"kSI" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/pilgrim) +"kSL" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/taperecorder/empty{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/device/taperecorder/empty{ + pixel_x = 4; + pixel_y = -1 + }, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"kSY" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + name = "Post"; + pixel_x = 16; + pixel_y = 16; + density = 0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + name = "Post"; + pixel_x = -16; + pixel_y = 16; + density = 0 + }, +/obj/structure/sign/safety/three{ + pixel_x = 14; + pixel_y = 22 + }, +/obj/structure/sign/safety/north{ + pixel_x = 1; + pixel_y = 22 + }, +/turf/open/floor/plating/asteroidfloor, +/area/bosenmori/mountain/clearing) +"kTh" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"kTP" = ( +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/abandoned) +"kUu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"kUE" = ( +/obj/structure/flora/pottedplant{ + pixel_x = -1; + pixel_y = 20 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_glass/nexus) +"kUJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/metal_foam{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/item/explosive/grenade/custom/metal_foam{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/explosive/grenade/custom/metal_foam{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"kUT" = ( +/obj/structure/machinery/prop/almayer/CICmap/table/horizontal/segment/six, +/obj/item/map, +/turf/open/floor/shiva/north, +/area/bosenmori/interior_regular/operations) +"kUU" = ( +/obj/item/tool/warning_cone, +/turf/open/gm/dirt2, +/area/bosenmori/outside/north_area) +"kVF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/nexus) +"kVL" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/ammo_magazine/rifle/l42a/abr40{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/ammo_magazine/rifle/l42a/abr40{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/item/ammo_magazine/rifle/l42a/abr40{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/ammo_magazine/rifle/ar10{ + pixel_x = 8; + pixel_y = 0 + }, +/obj/item/ammo_magazine/rifle/ar10{ + pixel_x = 1; + pixel_y = 0 + }, +/obj/item/ammo_magazine/rifle/ar10{ + pixel_x = -7; + pixel_y = 0 + }, +/obj/item/ammo_magazine/smg/m39{ + pixel_x = 6; + pixel_y = -7 + }, +/obj/item/ammo_magazine/smg/m39{ + pixel_x = -1; + pixel_y = -7 + }, +/obj/item/ammo_magazine/smg/m39{ + pixel_x = -8; + pixel_y = -7 + }, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/store) +"kWa" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 + }, +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3.01 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"kWm" = ( +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/field_post) +"kWy" = ( +/obj/structure/tent/cmd, +/obj/structure/tent_curtain{ + pixel_x = 0; + layer = 5.09; + color = "#993300"; + name = "curtain" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"kWQ" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"kWY" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 6; + pixel_y = -8; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"kXl" = ( +/obj/structure/machinery/door/airlock/sandstone/runed{ + name = "\improper Heavy Strange Temple Door" + }, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"kYe" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" + }, +/turf/open/floor, +/area/bosenmori/interior_glass/shipment) +"kYw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap"; + color = "#8B7B5B"; + dir = 1 + }, +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"kYx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"kYX" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1; + color = "#9494b8" + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/pilgrim) +"kZf" = ( +/turf/open/floor/warning/north, +/area/bosenmori/outside/west_barrens) +"kZi" = ( +/obj/structure/cargo_container/lockmart/right, +/turf/open/floor/bot, +/area/bosenmori/shuttles/drop1) +"kZt" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/pilgrim) +"kZz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/corporate) +"kZA" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"kZN" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control{ + dir = 1; + id = "medical_entry"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = 6; + pixel_y = -2; + req_one_access = "100" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"lad" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Research Complex Shutter"; + id = "science_blast" + }, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/research) +"law" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"lbp" = ( +/obj/structure/platform, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/telecommunication) +"lbD" = ( +/turf/open/floor/plating, +/area/bosenmori/outside/west_barrens) +"lbN" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/field_post) +"lcc" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"lck" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"lcV" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" + }, +/turf/open/floor/plating, +/area/bosenmori/mountain/field_post) +"ldh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/operations) +"ldi" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_ruins) +"ldZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plating, +/area/bosenmori/mountain/field_post) +"ley" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/shuttles/drop1) +"leN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/living) +"lft" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/west, +/area/bosenmori/interior_regular/security) +"lfx" = ( +/obj/structure/cargo_container/seegson/right{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"lfN" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/pilgrim) +"lgT" = ( +/obj/item/lightstick/red/spoke/planted, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"lgY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/north_area) +"lhd" = ( +/turf/open/floor/warning/north, +/area/bosenmori/mountain/mining) +"lhl" = ( +/obj/structure/sink{ + layer = 3.1; + dir = 8; + pixel_x = -16 + }, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"lic" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/cargo) +"lit" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/m94{ + pixel_x = -3; + pixel_y = 0 + }, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Bosenmori Site"; + phone_color = "red"; + phone_id = "Forward Research"; + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"liT" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/tree) +"ljd" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/bosenmori/outside/river) +"ljj" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"ljE" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8; + pixel_x = -6 + }, +/obj/structure/barricade/metal{ + layer = 3.1; + pixel_x = -1 + }, +/obj/structure/barricade/metal{ + layer = 3.1; + pixel_x = -1; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/bosenmori/interior_glass/living) +"ljN" = ( +/obj/structure/stairs/perspective{ + color = "#8B7B5B"; + icon_state = "p_stair_full"; + dir = 4 + }, +/obj/structure/platform{ + layer = 3.01 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"ljU" = ( +/turf/open/gm/coast/beachcorner2/north_east, +/area/bosenmori/mountain/river) +"lkj" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/obj/item/reagent_container/spray/cleaner, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/obj/item/storage/bag/trash, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/north, +/area/bosenmori/interior_glass/cargo) +"lkV" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"lmr" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"lmx" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"lmZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"lnJ" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/vault, +/area/bosenmori/interior_glass/offices) +"loa" = ( +/turf/open/floor/warningcorner/north, +/area/bosenmori/shuttles/drop3) +"los" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/bosenmori/outside/west_barrens) +"loH" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/abandoned) +"lpZ" = ( +/obj/structure/prop/static_tank/fuel, +/turf/open/floor/asteroidwarning/north, +/area/bosenmori/outside/filtration) +"lql" = ( +/obj/structure/prop/dam/drill{ + density = 0; + layer = 5 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"lqE" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/spawner/random/toy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"lra" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/obj/item/prop/magazine/dirty/torn/alt{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/prop/magazine/dirty/torn{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/storage/box/matches{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/pilgrim) +"lrc" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"lrq" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + name = "Anti-Theft Shutters"; + id = "store_theft"; + dir = 4 + }, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/store) +"lrx" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/obj/item/spacecash/c100{ + pixel_x = 5; + pixel_y = -6 + }, +/obj/item/spacecash/c100{ + pixel_x = 3; + pixel_y = 14 + }, +/obj/item/ammo_casing/bullet{ + pixel_x = -9; + pixel_y = -4; + name = "token"; + desc = "Something to lead you riches. By 0.34% chance at a time!" + }, +/obj/item/ammo_casing/bullet{ + pixel_x = -7; + pixel_y = 12; + name = "token"; + desc = "Something to lead you riches. By 0.34% chance at a time!" + }, +/obj/item/ammo_casing/bullet{ + pixel_x = -8; + pixel_y = 10; + name = "token"; + desc = "Something to lead you riches. By 0.34% chance at a time!" + }, +/obj/item/ammo_casing/bullet{ + pixel_x = -6; + pixel_y = 11; + name = "token"; + desc = "Something to lead you riches. By 0.34% chance at a time!" + }, +/obj/item/ammo_casing/bullet{ + pixel_x = -7; + pixel_y = -5; + name = "token"; + desc = "Something to lead you riches. By 0.34% chance at a time!" + }, +/obj/item/ammo_casing/bullet{ + pixel_x = -4; + pixel_y = -4; + name = "token"; + desc = "Something to lead you riches. By 0.34% chance at a time!" + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"lrP" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + req_one_access = "100" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"lrZ" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"lsk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/south_area) +"lsx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"lsA" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_glass/living) +"lsL" = ( +/obj/structure/bed/chair/comfy/bench/north, +/turf/open/floor/asteroidwarning/west, +/area/bosenmori/outside/filtration) +"ltg" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"ltk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 2; + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/tree) +"ltr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"lun" = ( +/turf/open/desert/desert_shore/shore_corner2, +/area/bosenmori/outside/river) +"luQ" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/device/camera/broadcasting, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"lvj" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"lvo" = ( +/obj/structure/girder, +/turf/open/floor/plating/platebot, +/area/bosenmori/interior_glass/cargo) +"lvG" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/corporate) +"lvZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/cargo) +"lwk" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"lwy" = ( +/obj/structure/closet, +/obj/item/clothing/accessory/storage/black_vest/brown_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/smallpouch, +/obj/item/clothing/accessory/storage/smallpouch, +/obj/item/clothing/accessory/storage/droppouch, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"lxf" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/curtain/red, +/turf/open/floor/vault, +/area/bosenmori/interior_glass/offices) +"lxg" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/cargo) +"lxF" = ( +/obj/structure/prop/ice_colony/surveying_device{ + dir = 8; + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"lxN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/lightstick/red{ + pixel_x = -6; + pixel_y = 0 + }, +/obj/item/storage/box/lightstick/red{ + pixel_x = 8; + pixel_y = 11 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"lyq" = ( +/obj/structure/largecrate/supply/supplies{ + fill_from_loc = 1; + name = "Tripod light crate (x8)" + }, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"lyS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera{ + c_tag = "Hospital - Waiting"; + colony_camera_mapload = 0; + network = list("Corporate") + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"lyX" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/carpet, +/area/bosenmori/interior_glass/fitness) +"lzn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/food_processing) +"lzu" = ( +/obj/structure/plasticflaps{ + layer = 5.1 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/food_processing) +"lzS" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + color = "#9494b8"; + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/mining) +"lzX" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_ruins) +"lAD" = ( +/turf/open/floor/warningcorner, +/area/bosenmori/shuttles/drop3) +"lAO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + req_one_access = "106;110" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/operations) +"lBx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitepurplecorner/east, +/area/bosenmori/interior_regular/research) +"lBL" = ( +/turf/open/floor, +/area/bosenmori/outside/west_barrens) +"lCQ" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/dark, +/area/bosenmori/outside/cargo) +"lDm" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/folder/black_random{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/folder/white{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"lDn" = ( +/turf/open/floor/filtrationside/north, +/area/bosenmori/interior_glass/filtration) +"lDx" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_proper) +"lDM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Research Complex Shutter"; + id = "science_blast" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/research) +"lDO" = ( +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.2 + }, +/turf/open/desert, +/area/bosenmori/interior_glass/nexus) +"lEm" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"lEM" = ( +/obj/structure/machinery/door_control/brbutton{ + pixel_x = -7; + pixel_y = 25 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/interior_glass/living) +"lFl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_heavy/secured_armory) +"lFr" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"lFQ" = ( +/obj/structure/inflatable, +/turf/open/gm/dirt2, +/area/bosenmori/outside/north_barrens) +"lHe" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1; + color = "#9494b8" + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/mining) +"lIb" = ( +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/corporate) +"lIg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/cargo) +"lIn" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"lIu" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"lII" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/light/small/blue{ + dir = 1; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_heavy/secured_armory) +"lIN" = ( +/obj/structure/largecrate/random, +/turf/open/floor/bot, +/area/bosenmori/outside/filtration) +"lIQ" = ( +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"lJh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/cargo) +"lJq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research/colony{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_regular/research) +"lJw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_regular/engineering) +"lKb" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/cargo) +"lKi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 17; + pixel_x = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"lKO" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"lKX" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Corporate Lockdown Shutter"; + dir = 4; + id = "admin_blast" + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + name = "Garage Shutter"; + id = "garage_blast"; + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/corporate) +"lLc" = ( +/turf/closed/wall/solaris, +/area/bosenmori/interior_glass/corporate) +"lLS" = ( +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/pilgrim) +"lMQ" = ( +/obj/structure/machinery/light/small/blue{ + dir = 1; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/greengrid, +/area/bosenmori/interior_glass/corporate) +"lMS" = ( +/obj/structure/bed/chair/comfy/bench/south, +/turf/open/floor/asteroidwarning/west, +/area/bosenmori/outside/filtration) +"lNj" = ( +/obj/item/frame/table/almayer, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/abandoned) +"lNU" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/item/stack/rods{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/stack/rods{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/tool/weldingtool/simple, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"lOe" = ( +/obj/structure/sign/poster/hunk{ + pixel_x = -9; + pixel_y = 34 + }, +/obj/structure/sign/poster/pinup{ + pixel_x = 5; + pixel_y = 42 + }, +/obj/structure/sign/poster/clf{ + pixel_x = -25; + pixel_y = 12 + }, +/obj/structure/sign/poster/music{ + pixel_x = -22; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"lOi" = ( +/obj/structure/lz_sign/lazarus_sign{ + density = 0 + }, +/turf/open/floor, +/area/bosenmori/shuttles/drop1) +"lOL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"lOP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/trash/crushed_cup{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"lPr" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/field_post) +"lPw" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"lPA" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"lPI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/west_area) +"lPJ" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"lPV" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 5; + pixel_y = 19 + }, +/obj/structure/closet/crate/trashcart, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop2) +"lQS" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/nexus) +"lQY" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"lRd" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1; + color = "#9494b8" + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/mountain/pilgrim) +"lRh" = ( +/obj/structure/largecrate/supply/supplies/mre{ + name = "Emergency Rations crate" + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"lRo" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/carpet, +/area/bosenmori/mountain/clearing) +"lRr" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/turf/open/gm/river/desert/shallow_edge/east, +/area/bosenmori/outside/river) +"lRE" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/item/tool/hatchet{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/tool/shovel/spade{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/item/tool/shovel/spade{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/tool/minihoe{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"lRK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/shuttles/drop1) +"lSG" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/darkred2/north, +/area/bosenmori/interior_regular/security) +"lSH" = ( +/obj/structure/closet/crate, +/turf/open/floor/prison/darkbrown2, +/area/bosenmori/interior_glass/shipment) +"lSJ" = ( +/turf/open/gm/river/desert/shallow_edge/covered/west, +/area/bosenmori/outside/river) +"lSK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/living) +"lTc" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/desert/desert_shore/shore_edge1, +/area/bosenmori/outside/west_barrens) +"lUh" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + req_one_access = "102" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/engineering) +"lUX" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_glass/tree) +"lUZ" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"lVa" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/bosenmori/outside/river) +"lVp" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1; + color = "#9494b8" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"lVM" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"lVN" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"lWy" = ( +/turf/open/floor/prison/whitepurplecorner/east, +/area/bosenmori/interior_regular/research) +"lWI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bosenmori/interior_glass/living) +"lWK" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"lWR" = ( +/turf/open/floor/dark, +/area/bosenmori/outside/cargo) +"lXS" = ( +/obj/structure/closet/crate, +/obj/item/clothing/suit/storage/marine/veteran/mercenary/miner, +/obj/item/clothing/suit/storage/marine/veteran/mercenary/miner, +/obj/item/clothing/head/helmet/marine/veteran/mercenary/miner, +/obj/item/clothing/head/helmet/marine/veteran/mercenary/miner, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"lYL" = ( +/obj/item/trash/popcorn{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"lYU" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_regular/operations) +"lZn" = ( +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/corporate) +"lZp" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/pilgrim) +"lZs" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/xenos_claw{ + pixel_x = 9; + pixel_y = 3 + }, +/turf/open/gm, +/area/bosenmori/mountain/temple_ruins) +"lZS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"lZT" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/warning/east, +/area/bosenmori/shuttles/drop1) +"maC" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/obj/structure/window/reinforced{ + layer = 3.8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/mining) +"maP" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/clearing) +"maZ" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"mbE" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"mch" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/medical/colony, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_glass/hospital) +"mcV" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/nexus) +"mdA" = ( +/turf/open/desert/desert_shore/shore_corner1/west, +/area/bosenmori/outside/river) +"mdV" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bosenmori/interior_glass/fitness) +"mej" = ( +/obj/structure/machinery/door/window/westright{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/cargo) +"mer" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"mez" = ( +/turf/open/desert/desert_shore/shore_edge1, +/area/bosenmori/outside/west_barrens) +"meE" = ( +/obj/structure/filingcabinet{ + pixel_y = 15; + pixel_x = -9; + can_block_movement = 0 + }, +/obj/structure/filingcabinet{ + pixel_y = 15; + pixel_x = 7; + can_block_movement = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"meY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"mff" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/corporate) +"mfw" = ( +/obj/item/stack/sheet/wood/medium_stack{ + pixel_x = 17; + pixel_y = 14 + }, +/obj/item/storage/box/matches{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/matches{ + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/clearing) +"mgb" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = 7; + pixel_y = 22; + density = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 7; + pixel_y = 36 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"mgG" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/m3717, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/slug, +/obj/item/ammo_magazine/shotgun/slug, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/m3717, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_regular/security_armory) +"mgL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/telecomms/bus/preset_one, +/turf/open/floor/almayer/tcomms, +/area/bosenmori/interior_heavy/secured_armory) +"mhr" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"mhx" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"mhP" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast"; + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"mhW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/hotdog{ + pixel_x = -7; + pixel_y = -14 + }, +/obj/structure/machinery/pipedispenser/disposal, +/turf/open/floor/plating/platebotc, +/area/bosenmori/interior_glass/cargo) +"mil" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/offices) +"mim" = ( +/obj/structure/prop/ice_colony/surveying_device{ + layer = 3.01; + pixel_x = -7; + pixel_y = 16 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"mit" = ( +/obj/item/weapon/sword/katana/replica, +/obj/item/clothing/head/headband/red, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/fitness) +"mjb" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/bosenmori/outside/river) +"mjc" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"mjw" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 2; + req_access = null; + id = "corpo_exec"; + req_one_access = "207" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/corporate) +"mjA" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + color = "#ffb84d"; + pixel_x = 0; + pixel_y = 5 + }, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_x = 0; + pixel_y = 15 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"mjY" = ( +/obj/structure/platform/kutjevo/smooth/stair_plate{ + pixel_x = 0; + pixel_y = -1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/pilgrim) +"mku" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"mkx" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/bosenmori/shuttles/drop1) +"mkW" = ( +/obj/structure/bed/chair/office/light{ + dir = 4; + pixel_x = -4; + pixel_y = 0 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/offices) +"mlf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"mls" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/clothing/under/colonist/boilersuit/cyan{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/under/colonist/boilersuit/white{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/clothing/under/colonist/workwear{ + pixel_x = 7; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"mlY" = ( +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"mmu" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + color = "#ffb84d"; + pixel_x = 0; + pixel_y = 5 + }, +/obj/item/storage/bible{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/prop/helmetgarb/flair_peace{ + pixel_x = -9; + pixel_y = 15 + }, +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -6; + pixel_y = -1 + }, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/mountain/pilgrim) +"mmI" = ( +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"mmL" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/up, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"mmN" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bosenmori/outside/east_area) +"mno" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/desert/shallow, +/area/bosenmori/outside/river) +"mnq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"mnw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"mnO" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/store) +"mnS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/item/tool/wet_sign{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"mol" = ( +/turf/open/asphalt, +/area/bosenmori/outside/east_area) +"moq" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"moA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/vault2/west, +/area/bosenmori/interior_glass/living) +"moU" = ( +/turf/open/floor/plating/platebot, +/area/bosenmori/interior_glass/cargo) +"mpk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"mpl" = ( +/obj/structure/bed/chair/office/light{ + dir = 8; + pixel_y = 5; + buckling_y = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"mpC" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/telecommunication) +"mpF" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 8 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"mpH" = ( +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/east_barrens) +"mpK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/abandoned) +"mpU" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/stack/sandbags_empty/small_stack, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"mqq" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"mqv" = ( +/obj/structure/prop/ice_colony/surveying_device{ + dir = 4; + pixel_x = 5; + pixel_y = -4 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"mqD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/cmcap/corrections{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/obj/structure/machinery/computer/cameras{ + colony_camera_mapload = 0; + network = list("Corporate"); + dir = 4 + }, +/turf/open/floor/prison/west, +/area/bosenmori/interior_regular/security) +"mqY" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"mrg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"mrD" = ( +/obj/structure/machinery/light/small/blue{ + dir = 8; + light_color = "#dae2ff" + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"mrO" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/nexus) +"mrT" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"mrX" = ( +/mob/living/simple_animal/cow{ + name = "Aaron" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"mst" = ( +/obj/structure/bed/chair{ + buckling_y = 5; + dir = 1; + pixel_y = 5 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/mountain/field_post) +"msA" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/temple_proper) +"mta" = ( +/obj/structure/surface/table/reinforced, +/obj/item/book/manual/research_and_development, +/obj/structure/machinery/door_control/brbutton/alt{ + pixel_x = 6; + pixel_y = 8; + name = "Research Complex Lockdown"; + id = "science_blast" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"mtj" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"mtI" = ( +/obj/structure/bed/chair{ + dir = 1; + pixel_x = 3; + pixel_y = -1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/corporate) +"muC" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/bosenmori/outside/east_barrens) +"mvf" = ( +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"mvh" = ( +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/bosenmori/outside/north_barrens) +"mvk" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"mvC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"mvF" = ( +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/desert, +/area/bosenmori/interior_glass/nexus) +"mwa" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"mwd" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/pouch/pressurized_reagent_canister{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/storage/pouch/stimulant_injector{ + pixel_x = 2; + pixel_y = -5 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"mwx" = ( +/turf/closed/wall/solaris, +/area/bosenmori/interior_glass/fitness) +"mwM" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"mxi" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + color = "#ffb84d"; + pixel_x = 0; + pixel_y = 5 + }, +/obj/item/prop/flower_vase/redwhiteflowers{ + pixel_x = 9; + pixel_y = 18 + }, +/obj/item/prop/helmetgarb/rosary, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/mountain/pilgrim) +"mxw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 8 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"mxA" = ( +/obj/structure/machinery/cm_vending/sorted/walkman{ + pixel_x = 2; + pixel_y = 18; + density = 0 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"mxZ" = ( +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/filtration) +"myd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"myj" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 4 + }, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/bosenmori/outside/north_barrens) +"mzl" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1; + color = "#9494b8" + }, +/turf/open/gm/river, +/area/bosenmori/mountain/river) +"mzy" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"mzW" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/bosenmori/interior_glass/shipment) +"mAC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/greenblue/north, +/area/bosenmori/interior_glass/food_processing) +"mBD" = ( +/obj/structure/inflatable, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/mining) +"mCa" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/field_post) +"mCh" = ( +/obj/structure/largecrate/supply/supplies/sandbags, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"mCx" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"mCH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"mDJ" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast" + }, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/kitchen) +"mEM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/offices) +"mEY" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"mFC" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"mHl" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/bosenmori/outside/north_barrens) +"mHo" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/clothing/accessory/poncho/brown{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/clothing/accessory/poncho/brown{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"mIc" = ( +/mob/living/simple_animal/cow{ + name = "Erin" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"mIg" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/outside/east_barrens) +"mIi" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"mIv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"mJO" = ( +/turf/closed/wall/solaris, +/area/bosenmori/outside/west_barrens) +"mKc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redyellowfull, +/area/bosenmori/interior_regular/kitchen) +"mKd" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/north_barrens) +"mKm" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/cargo) +"mKU" = ( +/turf/closed/wall/solaris, +/area/bosenmori/interior_glass/tree) +"mLo" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"mLL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/telecommunication) +"mLQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/asteroidfloor, +/area/bosenmori/outside/filtration) +"mLX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 8 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"mMC" = ( +/obj/structure/machinery/smartfridge/chemistry{ + req_one_access = null + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/fitness) +"mNo" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"mNv" = ( +/obj/structure/machinery/telecomms/bus/preset_one, +/turf/open/floor/podhatchfloor, +/area/bosenmori/interior_regular/telecommunication) +"mNF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/interior_glass/shipment) +"mNJ" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/tool/screwdriver, +/obj/item/device/working_joe_pda, +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_regular/telecommunication) +"mNS" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/ammo_box/magazine/misc/flares{ + pixel_x = -5; + pixel_y = 0 + }, +/obj/item/ammo_box/magazine/misc/flares{ + pixel_x = 3; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"mNZ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"mQb" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/west, +/area/bosenmori/interior_glass/living) +"mQe" = ( +/obj/item/xenos_claw{ + pixel_x = 16; + pixel_y = -5 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"mQs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/shipment) +"mQw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Bosenmori Site"; + phone_color = "red"; + phone_id = "Marshal Office - C" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/security) +"mRw" = ( +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"mRF" = ( +/obj/structure/platform, +/turf/open/gm/coast/north, +/area/bosenmori/interior_glass/tree) +"mRR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/offices) +"mSm" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1; + color = "#9494b8" + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/field_post) +"mSZ" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"mTz" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/temple_proper) +"mUv" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + dir = 8; + color = "#8B7B5B" + }, +/obj/structure/platform/stair_cut{ + icon_state = "kutjevo_platform_sm_stair" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/field_post) +"mUw" = ( +/obj/structure/xenoautopsy/jar_shelf, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"mVI" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/es4, +/obj/item/ammo_magazine/pistol/es4, +/turf/open/floor/greengrid, +/area/bosenmori/interior_glass/corporate) +"mVR" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/turf/open/floor/wood, +/area/bosenmori/outside/west_barrens) +"mVX" = ( +/turf/open/floor/warningcorner/east, +/area/bosenmori/mountain/clearing) +"mWw" = ( +/obj/structure/platform/kutjevo/rock{ + color = "#9494b8" + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"mWN" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/gm/river/desert/shallow, +/area/bosenmori/outside/river) +"mYj" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/temple_proper) +"mYJ" = ( +/obj/structure/prop/rock, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/pilgrim) +"mYK" = ( +/obj/item/bedsheet/brown, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"mZd" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/barricade/handrail/wire{ + layer = 3.18; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"mZk" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 5; + pixel_y = 19 + }, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -11; + pixel_y = 16 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop2) +"mZw" = ( +/turf/open/floor/asteroidfloor, +/area/bosenmori/outside/river) +"mZR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"naa" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = -3; + pixel_y = 11 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"naO" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/shipment) +"nbc" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"nbj" = ( +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/cargo) +"nbB" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop2) +"nbO" = ( +/obj/effect/decal/siding, +/obj/structure/prop/almayer/whiteboard{ + pixel_x = 0; + pixel_y = 20 + }, +/turf/open/floor/carpet, +/area/bosenmori/interior_glass/fitness) +"nbZ" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/mining) +"nct" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"ndg" = ( +/turf/closed/wall/mineral/sandstone/runed, +/area/bosenmori/mountain/clearing) +"ndO" = ( +/obj/structure/largecrate/machine/sleeper, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"ndS" = ( +/obj/effect/decal/siding, +/turf/open/floor/carpet, +/area/bosenmori/interior_glass/fitness) +"nei" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"nep" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"nfE" = ( +/turf/open/gm/dirt2, +/area/bosenmori/mountain/temple_proper) +"nfL" = ( +/turf/open/gm/dirt, +/area/bosenmori/mountain/river) +"nfR" = ( +/obj/structure/cargo_container/grant/right{ + pixel_x = -14; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/bosenmori/interior_glass/shipment) +"nfT" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"ngc" = ( +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"ngm" = ( +/obj/structure/cargo_container/kelland/right{ + opacity = 0; + pixel_y = 8; + layer = 3.1; + pixel_x = 7 + }, +/turf/open/floor/bot, +/area/bosenmori/shuttles/drop1) +"ngx" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full"; + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_regular/operations) +"ngz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"ngJ" = ( +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop1) +"ngV" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/offices) +"ngZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"nhs" = ( +/obj/structure/prop/dam/truck/cargo{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"nhF" = ( +/obj/structure/machinery/light/small/blue{ + dir = 4; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"nhN" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/obj/structure/platform/kutjevo/rock{ + color = "#9494b8" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"njw" = ( +/obj/structure/prop/dam/truck{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"njV" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/clearing) +"nko" = ( +/obj/structure/machinery/vending/snack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo, +/area/bosenmori/interior_glass/nexus) +"nkD" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + color = "#9494b8"; + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/mountain/pilgrim) +"nkP" = ( +/obj/structure/largecrate/supply/medicine/iv, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"nkU" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"nkV" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/engineering) +"nlr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"nlx" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"nlS" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/gm/river, +/area/bosenmori/mountain/river) +"nnX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"noo" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"noG" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"noI" = ( +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/store) +"npc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"npL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"npW" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"nqr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"nqs" = ( +/turf/open/asphalt, +/area/bosenmori/interior_glass/corporate) +"nro" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge, +/area/bosenmori/mountain/pilgrim) +"nrw" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/bosenmori/interior_glass/fitness) +"nrZ" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"nsh" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/pilgrim) +"nsj" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"nts" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"ntu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = -30 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/shipment) +"num" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"nut" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/abandoned) +"nuv" = ( +/turf/open/space/basic, +/area/bosenmori/oob) +"nvU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_glass/shipment) +"nvV" = ( +/obj/structure/prop/ice_colony/ground_wire{ + pixel_x = -7; + pixel_y = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"nwb" = ( +/obj/structure/machinery/colony_floodlight{ + light_color = "#dae2ff" + }, +/turf/open/floor/warning/northeast, +/area/bosenmori/outside/filtration) +"nwk" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"nwA" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -6; + pixel_y = 0 + }, +/obj/item/ashtray/plastic{ + pixel_y = -5; + pixel_x = 5 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"nwE" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"nxF" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"nxH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/platebotc, +/area/bosenmori/interior_glass/cargo) +"nxI" = ( +/obj/structure/prop/dam/truck/damaged{ + pixel_x = 0; + pixel_y = 8 + }, +/obj/structure/largecrate/random, +/turf/open/asphalt, +/area/bosenmori/interior_glass/corporate) +"nyH" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/north_barrens) +"nyJ" = ( +/turf/open/gm/dirt, +/area/bosenmori/mountain/pilgrim) +"nzc" = ( +/turf/open/gm/coast/beachcorner/north_west, +/area/bosenmori/mountain/river) +"nzx" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/temple_ruins) +"nzF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/engineering) +"nzM" = ( +/obj/structure/ore_box, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"nAd" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"nAh" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"nAC" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"nAF" = ( +/obj/structure/platform/kutjevo/rock{ + color = "#9494b8" + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/pilgrim) +"nAI" = ( +/turf/open/floor/warning/southeast, +/area/bosenmori/outside/west_barrens) +"nAQ" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"nBv" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/item/reagent_container/food/snacks/candy{ + pixel_x = 6; + pixel_y = -8 + }, +/obj/item/reagent_container/food/snacks/candy{ + pixel_x = -4; + pixel_y = -7 + }, +/obj/item/reagent_container/food/snacks/candy{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/reagent_container/food/snacks/candy{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/food/snacks/candy{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/reagent_container/food/snacks/candy{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/candy{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/reagent_container/food/snacks/candy{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/store) +"nBA" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/sandstone/runed, +/area/bosenmori/outside/east_barrens) +"nBC" = ( +/turf/open/floor/warning, +/area/bosenmori/shuttles/drop1) +"nCa" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + dir = 8; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"nCo" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/platebot, +/area/bosenmori/outside/cargo) +"nCF" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/outside/south_area) +"nCT" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/barricade/metal{ + layer = 3.1; + pixel_x = 1 + }, +/obj/structure/barricade/metal{ + layer = 3.1; + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/bosenmori/interior_glass/living) +"nDd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"nDg" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/obj/structure/platform, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/gm/coast/beachcorner2/north_east, +/area/bosenmori/interior_glass/tree) +"nDi" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_x = -12; + pixel_y = 22 + }, +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 22; + pixel_x = 10 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"nDq" = ( +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"nDG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkbrown2, +/area/bosenmori/interior_glass/cargo) +"nEm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/offices) +"nEt" = ( +/obj/structure/cargo_container/horizontal/blue/bottom{ + pixel_x = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"nEA" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c50{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"nET" = ( +/obj/structure/prop/ice_colony/surveying_device{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"nFo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"nGl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/northeast, +/area/bosenmori/interior_regular/kitchen) +"nGu" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"nHi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 19; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"nHA" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = -2; + pixel_x = -26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/cargo) +"nHC" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_glass/nexus) +"nIl" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"nIX" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"nJj" = ( +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"nJk" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/telecommunication) +"nJx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 5; + pixel_y = -7; + pixel_x = -9 + }, +/turf/closed/wall/solaris/reinforced/hull, +/area/bosenmori/outside/north_area) +"nJQ" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/weapon/baseballbat/metal, +/obj/effect/spawner/random/toy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"nKg" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/platebotc, +/area/bosenmori/outside/cargo) +"nKx" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/bosenmori/interior_glass/shipment) +"nKM" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/bosenmori/outside/west_barrens) +"nLe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera{ + c_tag = "Cargo - Shipments"; + colony_camera_mapload = 0; + dir = 4; + network = list("Corporate") + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"nLh" = ( +/turf/open/floor/warning/east, +/area/bosenmori/outside/filtration) +"nLz" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"nLN" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"nLU" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"nMq" = ( +/obj/structure/machinery/landinglight/ds1/spoke, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11; + pixel_y = 9 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bosenmori/shuttles/drop3) +"nMM" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/asteroidfloor, +/area/bosenmori/mountain/pilgrim) +"nMR" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/outside/north_area) +"nNt" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/living) +"nNu" = ( +/turf/open/floor/prison/west, +/area/bosenmori/interior_regular/security) +"nNw" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/blue/west, +/area/bosenmori/interior_regular/kitchen) +"nNI" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/interior_glass/cargo) +"nNY" = ( +/obj/structure/machinery/power/apc{ + cell_type = /obj/item/cell/high; + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/plating, +/area/bosenmori/mountain/river) +"nOj" = ( +/obj/structure/largecrate/random{ + pixel_x = -5; + pixel_y = 17 + }, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"nOo" = ( +/turf/open/floor/prison/greenblue/northeast, +/area/bosenmori/interior_glass/food_processing) +"nOs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/bosenmori/interior_glass/nexus) +"nPc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/tree) +"nPz" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"nPC" = ( +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/field_post) +"nQw" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/surgical_tray, +/obj/item/device/healthanalyzer, +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"nQx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 16; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"nRr" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/clothing/accessory/storage/surg_vest, +/obj/item/storage/surgical_case/regular, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"nSD" = ( +/obj/structure/machinery/door/airlock/sandstone/runed/destroyable, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_ruins) +"nSH" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"nSN" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"nST" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/warning/north, +/area/bosenmori/shuttles/drop1) +"nSX" = ( +/turf/open/shuttle/escapepod/north, +/area/bosenmori/interior_regular/engineering) +"nTG" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/bosenmori/outside/north_barrens) +"nTZ" = ( +/obj/structure/kitchenspike, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/kitchen) +"nUb" = ( +/turf/open/floor/plating, +/area/bosenmori/mountain/temple_proper) +"nUy" = ( +/obj/structure/cargo_container/horizontal/blue/middle{ + pixel_x = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"nUE" = ( +/turf/open/floor/kutjevo/tan/grey_edge, +/area/bosenmori/mountain/pilgrim) +"nUH" = ( +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/mining) +"nVh" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_barrens) +"nVE" = ( +/turf/open/floor/warning, +/area/bosenmori/outside/west_barrens) +"nWe" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/showcase{ + icon = 'icons/obj/structures/machinery/research.dmi'; + icon_state = "d_analyzer_la" + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/almayer_hull/blackfull, +/area/bosenmori/interior_regular/store) +"nWi" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river, +/area/bosenmori/mountain/river) +"nWu" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/stack/sheet/wood/large_stack, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"nXs" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"nXH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_heavy/secured_armory) +"nXM" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/bosenmori/outside/river) +"nYt" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/living) +"nZx" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/temple_proper) +"oaT" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/west, +/area/bosenmori/interior_glass/nexus) +"obn" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/bosenmori/mountain/temple_proper) +"oce" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -8; + pixel_y = -2 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/bosenmori/interior_glass/food_processing) +"ocl" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0; + layer = 6; + pixel_y = -15 + }, +/turf/open/floor/prison/greenblue/north, +/area/bosenmori/interior_glass/food_processing) +"ocR" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"ode" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.25; + density = 0; + climb_delay = 0 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.2 + }, +/turf/open/gm/grass/grass1, +/area/bosenmori/interior_glass/tree) +"odM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/abandoned) +"odU" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/bosenmori/outside/east_barrens) +"oeK" = ( +/obj/structure/machinery/vending/sovietsoda, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/fitness) +"ofc" = ( +/obj/structure/tunnel/maint_tunnel/no_xeno_desc{ + pixel_x = 0; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"ofz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_heavy/secured_armory) +"ofD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"ofH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"ofZ" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bosenmori/oob) +"ogh" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/turf/open/floor/prison/blue/west, +/area/bosenmori/interior_regular/kitchen) +"ogn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/blackfull, +/area/bosenmori/interior_regular/store) +"ohu" = ( +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/filtrationside/east, +/area/bosenmori/interior_glass/filtration) +"ohz" = ( +/obj/structure/bed/chair/comfy/bench/south{ + pixel_x = 9 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"ohX" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop2) +"oil" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + req_one_access = "102" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/telecommunication) +"oiN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"oiP" = ( +/obj/structure/sink{ + layer = 3.1; + dir = 4; + pixel_x = 15; + pixel_y = 4 + }, +/obj/structure/mirror{ + pixel_y = 1; + pixel_x = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/fitness) +"oiZ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"ojh" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_glass/nexus) +"ojl" = ( +/obj/structure/closet/radiation{ + can_be_stacked = 1; + pixel_x = 8; + pixel_y = 7 + }, +/obj/structure/closet/radiation{ + can_be_stacked = 1; + pixel_x = -7; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"ojo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/offices) +"ojs" = ( +/obj/structure/largecrate/random{ + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/cargo) +"ojV" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/warning, +/area/bosenmori/shuttles/drop1) +"oku" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/outside/cargo) +"okz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_regular/operations) +"okN" = ( +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"okV" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"oli" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/device/flashlight/tnr{ + pixel_x = -5; + pixel_y = -4 + }, +/obj/item/device/flashlight/tnr{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/flashlight/tnr{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/device/flashlight/tnr{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"olF" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"olL" = ( +/turf/closed/wall/mineral/sandstone/runed, +/area/bosenmori/mountain/temple_ruins) +"olN" = ( +/turf/closed/wall/solaris/reinforced, +/area/space) +"olQ" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"olS" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9 + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/mining) +"omH" = ( +/obj/structure/prop/dam/truck/cargo{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"omM" = ( +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/shipment) +"omQ" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/machinery/light/small/blue{ + dir = 4; + light_color = "#dae2ff"; + light_power = 0.5 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"ong" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"onR" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/shuttles/drop2) +"ooD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/corporate) +"opf" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/operations) +"opz" = ( +/turf/open/gm/dirt2, +/area/bosenmori/mountain/pilgrim) +"oqu" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"oqQ" = ( +/obj/item/trash/pistachios{ + pixel_x = -8; + pixel_y = -4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/interior_glass/cargo) +"org" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"orn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/westright{ + dir = 1; + layer = 2.9; + pixel_x = 0; + pixel_y = 1 + }, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"oro" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"orx" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"ose" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"osw" = ( +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/security) +"osA" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/operations) +"osY" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 0; + pixel_y = 21 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 6; + pixel_y = 11 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"otQ" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/bosenmori/outside/river) +"oum" = ( +/obj/item/tool/warning_cone{ + pixel_x = 6; + pixel_y = 17 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/cargo) +"ouO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"ovB" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + pixel_y = -1 + }, +/turf/open/floor/shiva/floor3, +/area/bosenmori/interior_regular/telecommunication) +"ovX" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/bosenmori/interior_glass/food_processing) +"owo" = ( +/obj/effect/decal/siding{ + icon_state = "siding10" + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/bosenmori/interior_glass/fitness) +"oxk" = ( +/obj/structure/prop/structure_lattice, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"oxu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname{ + req_one_access = "101" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/space) +"oxX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/warning/southwest, +/area/bosenmori/shuttles/drop1) +"oyj" = ( +/turf/open/auto_turf/sand/layer2, +/area/bosenmori/shuttles/drop2) +"oyu" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/river/desert/shallow, +/area/bosenmori/mountain/temple_proper) +"oyJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 2; + req_one_access = "100;200" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast"; + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"oyQ" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/tree) +"oyZ" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/clothing/suit/storage/marine/veteran/royal_marine/smartgun, +/turf/open/floor/corsat, +/area/bosenmori/interior_heavy/secured_armory) +"oAS" = ( +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_regular/operations) +"oBg" = ( +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/filtration) +"oBy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_heavy/secured_armory) +"oBJ" = ( +/obj/structure/ore_box{ + name = "wooden cargo crate" + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"oCg" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/outside/west_barrens) +"oCn" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/outside/west_area) +"oCw" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/corporate) +"oCE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitepurplecorner/east, +/area/bosenmori/interior_regular/research) +"oCX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"oDg" = ( +/turf/open/floor/wood, +/area/bosenmori/outside/west_barrens) +"oDk" = ( +/obj/item/trash/eat{ + pixel_x = 11; + pixel_y = 5 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"oDn" = ( +/obj/structure/prop/ice_colony/surveying_device{ + dir = 4; + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_ruins) +"oDR" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/podhatchfloor, +/area/bosenmori/interior_regular/engineering) +"oEm" = ( +/obj/structure/machinery/camera{ + c_tag = "Corporate - Garage"; + colony_camera_mapload = 0; + network = list("Corporate"); + dir = 1 + }, +/turf/open/asphalt, +/area/bosenmori/interior_glass/corporate) +"oEn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2; + pixel_y = 0 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"oEG" = ( +/turf/open/gm/river/desert/shallow_corner, +/area/bosenmori/outside/river) +"oEQ" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/fitness) +"oFr" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/east_barrens) +"oFt" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"oFK" = ( +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/turf/open/floor/asteroidwarning, +/area/bosenmori/outside/filtration) +"oFU" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"oGn" = ( +/obj/structure/platform/kutjevo/rock{ + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/clearing) +"oGs" = ( +/obj/structure/machinery/photocopier{ + wrenchable = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/offices) +"oGW" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"oGZ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"oHn" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/abandoned) +"oHG" = ( +/obj/structure/fence, +/turf/open/gm/grass/grass1, +/area/bosenmori/outside/cargo) +"oHO" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop2) +"oIj" = ( +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"oIu" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/item/storage/backpack, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"oIv" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/trash/hotdog{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"oIB" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/mining) +"oIH" = ( +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_barrens) +"oIN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/cm_vending/sorted/walkman, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"oJb" = ( +/obj/structure/closet/secure_closet/bar, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"oJm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bosenmori/mountain/abandoned) +"oJo" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = 7; + pixel_y = 12 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"oJr" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"oJu" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"oJw" = ( +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/living) +"oJW" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_barrens) +"oKd" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/assembly/mousetrap/armed, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"oKv" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + name = "colony exit gate shutter" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/warning/east, +/area/bosenmori/outside/east_area) +"oKy" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"oKG" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + dir = 8; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_heavy/secured_armory) +"oLz" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_regular/research) +"oLG" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/abandoned) +"oLQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"oLW" = ( +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"oLY" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"oMd" = ( +/obj/structure/tunnel/maint_tunnel/no_xeno_desc{ + pixel_x = 0; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_heavy/secured_armory) +"oMe" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"oMi" = ( +/turf/open/floor/plating/asteroidwarning/southwest, +/area/bosenmori/mountain/field_post) +"oMu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platebotc, +/area/bosenmori/outside/cargo) +"oMv" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/temple_proper) +"oMA" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/north_area) +"oMI" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"oMR" = ( +/obj/structure/reagent_dispensers/water_cooler/walk_past{ + pixel_x = 9; + pixel_y = 22 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"oNt" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/nexus) +"oNA" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/device/flashlight/lantern{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/device/flashlight/lantern{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"oNF" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/bosenmori/interior_glass/shipment) +"oOf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"oOg" = ( +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/north_area) +"oOh" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop2) +"oOA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_regular/engineering) +"oOT" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"oPp" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"oPr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"oPG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"oPH" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platebot, +/area/bosenmori/mountain/abandoned) +"oPI" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/folder/blue{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/folder/blue{ + pixel_x = 12; + pixel_y = -3 + }, +/obj/item/folder/black_random{ + pixel_x = -7; + pixel_y = 2 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"oPY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/interior_glass/nexus) +"oQN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"oQU" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"oRg" = ( +/turf/closed/wall/solaris, +/area/bosenmori/interior_regular/store) +"oRm" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 + }, +/turf/open/floor/plating, +/area/bosenmori/mountain/mining) +"oRq" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/structure/prop/server_equipment/laptop, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/nexus) +"oRU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"oSU" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/bosenmori/outside/north_barrens) +"oUe" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/east_barrens) +"oUl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research/colony, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Research Complex Shutter"; + id = "science_blast" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/research) +"oUp" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"oVd" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"oVZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/abandoned) +"oWQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"oWW" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/field_post) +"oXp" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_heavy/secured_armory) +"oXW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_x = -2; + pixel_y = 15 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"oXX" = ( +/obj/structure/prop/ice_colony/soil_net, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"oYv" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/bosenmori/outside/north_barrens) +"oYB" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/void, +/area/bosenmori/mountain/clearing) +"oZj" = ( +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"oZA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/abandoned) +"oZL" = ( +/obj/structure/flora/tree/jungle/bigtreeTR, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/abandoned) +"pab" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/interior_glass/cargo) +"pae" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"paw" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/xenos_claw{ + pixel_x = 12; + pixel_y = -8 + }, +/obj/item/tool/pickaxe, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_ruins) +"paC" = ( +/turf/open/asphalt, +/area/bosenmori/outside/west_barrens) +"paI" = ( +/obj/item/clothing/accessory/health/scrap, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/abandoned) +"paQ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"pbe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/weapon/gun/smg/m39{ + pixel_x = 0; + pixel_y = 9 + }, +/obj/structure/machinery/door/window/southright, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/gun/shotgun/merc, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/store) +"pbD" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/void, +/area/bosenmori/mountain/temple_proper) +"pbW" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/obj/structure/machinery/cell_charger, +/turf/open/floor/prison/darkbrown2/east, +/area/bosenmori/interior_glass/shipment) +"pcd" = ( +/obj/structure/machinery/door_control/brbutton{ + pixel_y = 25; + id = "garage_blast"; + name = "Garage One Shutters" + }, +/turf/open/asphalt, +/area/bosenmori/interior_glass/corporate) +"pcE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/interior_regular/engineering) +"pcR" = ( +/obj/structure/prop/dam/truck{ + pixel_x = 0; + pixel_y = 4; + layer = 2.9 + }, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = 9; + pixel_y = -9 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_barrens) +"pcW" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + desc = "A small desktop computer. Someone has switched to personal emails and disabled the inventory sort system."; + icon_state = "alert:2"; + name = "inventory computer"; + dir = 8 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/shipment) +"pdC" = ( +/turf/open/gm/coast/east, +/area/bosenmori/mountain/river) +"pdH" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"pek" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 18; + pixel_x = 0 + }, +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/bosenmori/interior_glass/cargo) +"per" = ( +/obj/structure/prop/rock, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/pilgrim) +"peQ" = ( +/obj/structure/tent_curtain{ + pixel_x = 0; + layer = 5.09; + color = "#993300"; + name = "curtain" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"pfP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"pgd" = ( +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bosenmori/interior_glass/fitness) +"pgi" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"pgY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/west_area) +"phL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 17 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"pib" = ( +/turf/open/auto_turf/sand/layer2, +/area/bosenmori/outside/cargo) +"piM" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + name = "colony exit gate shutter"; + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/outside/west_barrens) +"piX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1; + pixel_y = 3; + pixel_x = 4 + }, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"pjf" = ( +/turf/open/gm/grass/grassbeach/west, +/area/bosenmori/mountain/river) +"pjY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"pki" = ( +/obj/structure/machinery/camera{ + c_tag = "Nexus - East Hall"; + colony_camera_mapload = 0; + network = list("Corporate") + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_glass/nexus) +"pkI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"pkJ" = ( +/obj/structure/platform/kutjevo/smooth/stair_plate{ + pixel_x = 0; + pixel_y = -1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"pkT" = ( +/turf/open/floor/filtrationside/northwest, +/area/bosenmori/interior_glass/filtration) +"pla" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/shuttles/drop1) +"plU" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/shotgun/combat/riot{ + color = "#7094db"; + name = "M120-R shotgun" + }, +/obj/item/weapon/gun/shotgun/combat/riot{ + color = "#7094db"; + name = "M120-R shotgun" + }, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/suit/armor/riot/marine/vintage_riot, +/obj/item/clothing/suit/armor/riot/marine/vintage_riot, +/obj/item/clothing/suit/armor/riot/marine/vintage_riot, +/obj/item/clothing/head/helmet/riot/vintage_riot, +/obj/item/clothing/head/helmet/riot/vintage_riot, +/obj/item/clothing/head/helmet/riot/vintage_riot, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_regular/security_armory) +"pmd" = ( +/obj/structure/machinery/vending/cigarette, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/corporate) +"pmh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/tree) +"pmw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_x = -4; + pixel_y = 0 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"pmN" = ( +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/turf/open/gm/river/desert/shallow, +/area/bosenmori/outside/river) +"pmX" = ( +/obj/structure/flora/tree/jungle/bigtreeBOT, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/abandoned) +"pnA" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/mountain/field_post) +"pnG" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "Bosenmori Site"; + phone_id = "Research Dome"; + dir = 4; + pixel_x = -18 + }, +/obj/structure/surface/table/reinforced, +/obj/item/clothing/accessory/health/research_plate, +/obj/item/reagent_container/hypospray/autoinjector/adrenaline_concentrated, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"pop" = ( +/obj/structure/kitchenspike, +/turf/open/floor/strata/white_cyan1, +/area/bosenmori/interior_glass/food_processing) +"poK" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"poX" = ( +/obj/structure/window/reinforced, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"ppc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"ppf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/west_area) +"ppr" = ( +/obj/structure/closet/secure_closet/miner{ + can_be_stacked = 1; + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/miner{ + can_be_stacked = 1; + pixel_x = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"ppv" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"ppB" = ( +/turf/closed/wall/wood, +/area/bosenmori/interior_glass/cargo) +"ppX" = ( +/turf/open/floor/plating, +/area/bosenmori/mountain/river) +"ppZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Bosenmori Site"; + phone_color = "red"; + phone_id = "Marshal Office - A" + }, +/turf/open/floor/prison/west, +/area/bosenmori/interior_regular/security) +"pqD" = ( +/turf/open/floor/plating, +/area/bosenmori/mountain/field_post) +"prb" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"prh" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/vehicle/powerloader/ft, +/turf/open/floor/mech_bay_recharge_floor, +/area/bosenmori/interior_glass/shipment) +"prm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/fitness) +"prt" = ( +/obj/structure/prop/dam/truck/mining, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"prH" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/bosenmori/outside/river) +"psf" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/outside/west_area) +"psk" = ( +/obj/structure/surface/rack{ + color = "#424a50" + }, +/obj/item/ammo_box/magazine/shotgun/beanbag, +/obj/item/ammo_magazine/shotgun/beanbag{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/ammo_magazine/shotgun/beanbag{ + pixel_x = -6; + pixel_y = -5 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_regular/security_armory) +"psp" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/floor/podhatchfloor, +/area/bosenmori/interior_regular/telecommunication) +"ptc" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/blue/east, +/area/bosenmori/interior_regular/kitchen) +"ptw" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/bosenmori/interior_glass/cargo) +"ptC" = ( +/obj/structure/stairs/perspective{ + color = "#8B7B5B"; + icon_state = "p_stair_full" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"puq" = ( +/turf/open/floor/kutjevo/fake_wood, +/area/bosenmori/mountain/river) +"puH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/kutjevo/tan, +/area/bosenmori/interior_glass/fitness) +"pvv" = ( +/obj/structure/inflatable, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/north_barrens) +"pvx" = ( +/obj/structure/tent/big, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/structure/barricade/handrail/strata{ + can_buckle = 1 + }, +/turf/open/floor/wood, +/area/bosenmori/outside/west_barrens) +"pvB" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/mountain/clearing) +"pwe" = ( +/turf/closed/wall/solaris, +/area/bosenmori/interior_glass/living) +"pwo" = ( +/turf/open/floor/sandstone/runed, +/area/bosenmori/outside/east_barrens) +"pwq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"pxE" = ( +/obj/structure/bed/chair{ + dir = 1; + pixel_x = -4; + pixel_y = 12 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"pxM" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/outside/north_area) +"pxS" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"pyb" = ( +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0; + pixel_x = 6; + pixel_y = 17 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/bosenmori/mountain/temple_proper) +"pyt" = ( +/turf/open/gm/coast/beachcorner2/south_east, +/area/bosenmori/mountain/river) +"pzt" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"pzI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"pzW" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/server_equipment/laptop, +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_regular/telecommunication) +"pAi" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1; + color = "#9494b8" + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/pilgrim) +"pAp" = ( +/obj/structure/prop{ + name = "\improper seat-like case"; + desc = "It's a case made into an impromptu seat."; + icon_state = "case"; + icon = 'icons/obj/structures/crates.dmi'; + can_buckle = 1; + pixel_y = 1; + layer = 3.6; + pixel_x = -2 + }, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/clearing) +"pAy" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/item/reagent_container/syringe/drugs{ + pixel_x = -3; + pixel_y = -10 + }, +/turf/open/gm/dirt2, +/area/bosenmori/outside/north_area) +"pAT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"pBa" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"pBk" = ( +/obj/structure/machinery/prop/almayer/CICmap/table/horizontal/segment/three, +/turf/open/floor/shiva/north, +/area/bosenmori/interior_regular/operations) +"pBn" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"pBC" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/field_post) +"pBL" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/fitness) +"pBN" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/interior_glass/living) +"pCF" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"pDD" = ( +/obj/structure/prop/dam/truck/cargo{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"pEb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname{ + req_one_access = "100;200"; + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/mining) +"pEE" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = -2; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"pEF" = ( +/obj/structure/platform/stair_cut/alt, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"pEK" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/webbing{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/clothing/suit/storage/webbing{ + pixel_x = -7; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"pEN" = ( +/obj/structure/machinery/power/apc/no_power/north{ + pixel_y = 25 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_regular/telecommunication) +"pEW" = ( +/obj/item/weapon/sword/katana/replica, +/obj/item/clothing/head/headband/gray, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/fitness) +"pFc" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/watertank, +/obj/item/storage/backpack/hydroponics, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"pFf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_glass/cargo) +"pFH" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor, +/area/bosenmori/interior_glass/shipment) +"pFZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/filtration) +"pGk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/engineering) +"pGC" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"pGE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/redyellowfull, +/area/bosenmori/interior_regular/kitchen) +"pHC" = ( +/obj/structure/closet/crate/miningcar, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"pHT" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"pIh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/arcade, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_glass/nexus) +"pJb" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/north_area) +"pJk" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/glass/fertilizer{ + pixel_x = 14; + pixel_y = 15 + }, +/obj/item/reagent_container/glass/fertilizer{ + pixel_x = 10; + pixel_y = 8 + }, +/obj/item/reagent_container/glass/fertilizer{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_container/spray/plantbgone{ + pixel_x = -3; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/hatchet{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"pJp" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"pKc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"pKh" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_glass/cargo) +"pKk" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/bosenmori/interior_glass/filtration) +"pKH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"pKM" = ( +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_x = 2; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"pKO" = ( +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"pMe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 2; + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/tree) +"pMR" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"pNa" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating/platebot, +/area/bosenmori/outside/cargo) +"pNb" = ( +/obj/structure/ore_box{ + name = "wooden cargo crate" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"pNf" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/deep, +/area/bosenmori/outside/river) +"pNo" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30; + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"pNq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/food_processing) +"pNG" = ( +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"pOa" = ( +/turf/open/floor/plating/platebotc, +/area/bosenmori/outside/cargo) +"pOc" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/offices) +"pOw" = ( +/obj/structure/surface/rack, +/obj/item/prop/colony/canister{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/prop/colony/canister{ + pixel_x = -1; + pixel_y = -4 + }, +/turf/open/asphalt, +/area/bosenmori/interior_glass/corporate) +"pOC" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/abandoned) +"pOM" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/food/drinks/shaker{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"pPd" = ( +/obj/structure/prop/holidays/string_lights/corner{ + pixel_x = -24; + pixel_y = 31 + }, +/obj/structure/prop/holidays/string_lights{ + pixel_x = 8; + pixel_y = 31 + }, +/obj/structure/machinery/light/small/blue{ + dir = 8; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/living) +"pPf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"pPn" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"pPC" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Corporate Lockdown Shutter"; + dir = 4; + id = "admin_blast" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/corporate) +"pPK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"pQj" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/telecommunication) +"pQl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"pQB" = ( +/obj/structure/machinery/camera{ + c_tag = "Nexus - Cafeteria"; + colony_camera_mapload = 0; + dir = 8; + network = list("Corporate") + }, +/turf/open/floor/prison/darkredfull2, +/area/bosenmori/interior_regular/security) +"pQD" = ( +/obj/structure/surface/rack, +/obj/item/device/camera/broadcasting, +/turf/open/floor/almayer/plating, +/area/bosenmori/mountain/field_post) +"pQL" = ( +/turf/open/floor/warning/southwest, +/area/bosenmori/outside/filtration) +"pSk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/security) +"pSo" = ( +/turf/open/floor/warning, +/area/bosenmori/outside/south_area) +"pSt" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_x = 0; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"pSw" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/obj/item/tool/weldingtool/simple, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/warning/north, +/area/bosenmori/shuttles/drop1) +"pSH" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/pilgrim) +"pSY" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/item/tool/hand_labeler{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/stack/sheet/cardboard/medium_stack{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/item/device/flash, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/store) +"pTf" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"pTF" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/clothing/head/beanie/royal_marine{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/clothing/accessory/patch/royal_marines{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/item/storage/bible{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"pTJ" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = -7; + pixel_x = 0; + layer = 2.9 + }, +/turf/closed/wall/solaris/reinforced/hull, +/area/bosenmori/outside/north_area) +"pVO" = ( +/obj/item/storage/box/wy_mre{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"pWP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"pXi" = ( +/turf/open/floor, +/area/bosenmori/shuttles/drop2) +"pXE" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/item/stack/rods{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/stack/rods{ + pixel_x = 5; + pixel_y = 13 + }, +/obj/item/tool/wirecutters, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/cargo) +"pXU" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/food/snacks/boiledspagetti, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/nexus) +"pYh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"pYs" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/desert/shallow_edge/east, +/area/bosenmori/outside/river) +"pYN" = ( +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"pYT" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"pZk" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + name = "Post"; + pixel_x = 16; + pixel_y = 16; + density = 0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + name = "Post"; + pixel_x = -16; + pixel_y = 16; + density = 0 + }, +/obj/structure/sign/safety/one{ + pixel_y = 22; + pixel_x = 14; + name = "marker one" + }, +/obj/structure/sign/safety/west{ + pixel_x = 1; + pixel_y = 22 + }, +/turf/open/floor/plating/asteroidfloor, +/area/bosenmori/mountain/mining) +"pZI" = ( +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"pZQ" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"qak" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/corporate) +"qan" = ( +/obj/item/stool{ + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"qap" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/reagent_dispensers/fueltank/gas/methane, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_regular/engineering) +"qaF" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast"; + dir = 4 + }, +/turf/open/floor/vault, +/area/bosenmori/interior_glass/nexus) +"qaG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/filtration) +"qcE" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"qcH" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/facepaint/black, +/obj/structure/machinery/light/small/blue{ + dir = 4; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"qcR" = ( +/turf/open/floor/warning/east, +/area/bosenmori/mountain/clearing) +"qdr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/camera{ + c_tag = "Engineering - Reactors"; + colony_camera_mapload = 0; + dir = 4; + network = list("Corporate") + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_regular/engineering) +"qdR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"qdX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"qeb" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/filtration) +"qex" = ( +/turf/open/gm/dirt, +/area/bosenmori/mountain/field_post) +"qff" = ( +/obj/structure/ore_box{ + name = "wooden cargo crate" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"qfr" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"qft" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"qfE" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"qfN" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"qgC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Bosenmori Site"; + phone_id = "Medbay Reception" + }, +/obj/item/ashtray/plastic{ + pixel_y = 8; + pixel_x = -7 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"qho" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"qia" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"qim" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/item/notepad{ + pixel_x = -8; + pixel_y = 0 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"qio" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river/desert/shallow_edge/north, +/area/bosenmori/outside/river) +"qiM" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8; + color = "#e6ccb3" + }, +/turf/open/gm/dirt2, +/area/bosenmori/outside/east_barrens) +"qjE" = ( +/obj/structure/largecrate/random, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"qkf" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/large_holster/machete/arnold/weak{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/storage/large_holster/machete/arnold/weak{ + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"qkh" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_regular/telecommunication) +"qkk" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_barrens) +"qkW" = ( +/obj/item/prop/rock, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/pilgrim) +"qma" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"qmB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"qmN" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"qnD" = ( +/obj/structure/prop/structure_lattice, +/turf/open/gm/river/desert/shallow_edge/north, +/area/bosenmori/interior_glass/filtration) +"qol" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"qoL" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/turf/open/gm/river/desert/shallow, +/area/bosenmori/outside/river) +"qoW" = ( +/obj/item/stool{ + pixel_x = -3; + pixel_y = 15 + }, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"qpd" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/bosenmori/mountain/pilgrim) +"qpy" = ( +/turf/closed/wall/solaris, +/area/bosenmori/interior_glass/nexus) +"qql" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 8; + dir = 8; + pixel_x = -10 + }, +/obj/structure/tent_curtain{ + pixel_x = 0; + pixel_y = -6; + layer = 5.09; + color = "#993300"; + name = "curtain" + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"qqq" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"qqA" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Corporate Lockdown Shutter"; + dir = 2; + id = "admin_blast" + }, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/corporate) +"qqF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"qqK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/southwest, +/area/bosenmori/interior_regular/security) +"qqL" = ( +/obj/structure/largecrate/supply/motiondetectors, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"qqM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitepurplecorner/east, +/area/bosenmori/interior_regular/research) +"qrb" = ( +/obj/item/stool{ + pixel_x = -2; + pixel_y = 17 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"qrA" = ( +/obj/structure/bed{ + icon_state = "psychbed" + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"qrH" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"qrV" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"qsh" = ( +/obj/structure/girder/displaced, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/cargo) +"qsi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_box/magazine/misc/flashlight{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/device/flashlight/combat{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"qsj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/port_gen/pacman, +/obj/structure/cable/heavyduty{ + icon_state = "0-4" + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/shuttles/drop1) +"qtG" = ( +/obj/structure/girder/displaced, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/interior_glass/cargo) +"qtK" = ( +/obj/item/tool/pen{ + pixel_x = -9; + pixel_y = -5 + }, +/obj/item/paper_bin/wy{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/paper_bin{ + pixel_y = 9; + pixel_x = -6 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/item/tool/pen/clicky{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"qtW" = ( +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/north_barrens) +"quh" = ( +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"quu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"quW" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Vault A Lock"; + id = "v1" + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_heavy/secured_armory) +"quZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 8; + pixel_x = 7 + }, +/obj/structure/machinery/light/small/blue{ + dir = 4; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_heavy/secured_armory) +"qvg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/kutjevo, +/area/bosenmori/interior_glass/nexus) +"qvh" = ( +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"qvi" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy/bench/south, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"qvy" = ( +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.2 + }, +/obj/item/trash/wy_chips_pepper{ + pixel_x = -8; + pixel_y = -8 + }, +/turf/open/desert, +/area/bosenmori/interior_glass/nexus) +"qvF" = ( +/turf/open/floor/plating/asteroidwarning, +/area/bosenmori/mountain/field_post) +"qvI" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/ammo_magazine/flamer_tank, +/turf/open/floor/corsat, +/area/bosenmori/interior_heavy/secured_armory) +"qwm" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/bosenmori/interior_glass/cargo) +"qwr" = ( +/turf/closed/wall/mineral/sandstone/runed, +/area/bosenmori/mountain/field_post) +"qxg" = ( +/obj/structure/reagent_dispensers/pacidtank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"qxz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/telecommunication) +"qxK" = ( +/obj/structure/cargo_container/horizontal/blue/bottom{ + color = "#77b300"; + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/bot, +/area/bosenmori/shuttles/drop1) +"qxL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"qyo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"qza" = ( +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/west_barrens) +"qzj" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"qzs" = ( +/obj/structure/machinery/power/apc/no_power/north{ + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"qzB" = ( +/obj/structure/machinery/computer/rdservercontrol, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"qzH" = ( +/obj/structure/barricade/handrail/medical{ + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/structure/closet/crate/science, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"qBG" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1; + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop1) +"qBT" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/tree) +"qCE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/telecommunication) +"qCV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/interior_glass/living) +"qDa" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/pilgrim) +"qDx" = ( +/obj/structure/barricade/handrail/strata{ + can_buckle = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"qDA" = ( +/obj/structure/girder, +/turf/open/floor/plating/platebot, +/area/bosenmori/outside/cargo) +"qDP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/dispenser, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"qDR" = ( +/turf/closed/wall/solaris, +/area/bosenmori/interior_glass/cargo) +"qEk" = ( +/obj/item/trash/semki, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"qFx" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + pixel_y = 25; + pixel_x = 12 + }, +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_glass/filtration) +"qFN" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"qFS" = ( +/obj/structure/safe{ + spawnkey = 0 + }, +/obj/item/storage/fancy/cigar, +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_x = 8; + pixel_y = -3 + }, +/obj/item/spacecash/c1000{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/gift, +/obj/effect/spawner/random/attachment, +/obj/effect/spawner/random/attachment, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"qGa" = ( +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/bed/bedroll, +/obj/item/clothing/glasses/sunglasses{ + desc = "Polarized bioneural eyewear, designed to augment your vision."; + icon_state = "jensenshades"; + name = "augmented shades" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"qGi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/cargo) +"qGx" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/food/drinks/shaker{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"qGJ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "sec_armory"; + req_one_access = "104" + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/darkred2/northeast, +/area/bosenmori/interior_regular/security) +"qGU" = ( +/obj/structure/barricade/handrail/strata{ + can_buckle = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"qHk" = ( +/turf/open/floor, +/area/bosenmori/outside/south_area) +"qHv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/outside/filtration) +"qHS" = ( +/obj/structure/platform/stair_cut, +/obj/structure/stairs/perspective{ + color = "#8B7B5B"; + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/pilgrim) +"qHU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + req_one_access = "104;203" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/security) +"qHW" = ( +/obj/item/reagent_container/syringe/drugs{ + pixel_x = -3; + pixel_y = -10 + }, +/obj/item/stool{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/interior_glass/cargo) +"qIu" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"qIX" = ( +/obj/structure/machinery/power/apc{ + cell_type = /obj/item/cell/high; + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/plating, +/area/bosenmori/mountain/temple_ruins) +"qJC" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/mining) +"qJN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor, +/area/bosenmori/interior_glass/shipment) +"qJY" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/gm/coast/beachcorner/north_east, +/area/bosenmori/interior_glass/tree) +"qKl" = ( +/turf/open/floor/plating/burnt_platingdmg3/west, +/area/bosenmori/mountain/abandoned) +"qKp" = ( +/obj/structure/bed/chair/comfy/lime, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"qLy" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/reagent_scanner{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/prop/geiger_counter, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"qMF" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"qNs" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/pilgrim) +"qNF" = ( +/obj/structure/cable/heavyduty, +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/field_post) +"qNK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/tree) +"qNO" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_glass/corporate) +"qNS" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/backpack/rmc/light{ + pixel_x = 2; + pixel_y = 8; + name = "lightweight military backpack" + }, +/obj/item/storage/backpack/rmc/heavy{ + pixel_x = -4; + pixel_y = 0; + name = "heavyweight camping backpack" + }, +/obj/item/storage/backpack/general_belt/rmc, +/obj/item/storage/backpack/satchel/blue{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/item/storage/backpack/satchel/black{ + pixel_x = 3; + pixel_y = -8 + }, +/obj/item/storage/backpack/satchel{ + pixel_x = -7; + pixel_y = -6 + }, +/obj/item/storage/backpack/satchel/blue, +/obj/item/storage/backpack/satchel/hyd{ + pixel_x = -5; + pixel_y = -7 + }, +/obj/item/storage/backpack/satchel/eng{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/storage/backpack/satchel/med{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/storage/backpack/satchel/lockable, +/obj/item/storage/backpack/souto{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/storage/backpack/marine/satchel, +/obj/item/storage/backpack/marine/engineerpack/ert, +/obj/item/storage/backpack{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/storage/backpack{ + pixel_x = -6; + pixel_y = 0 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/store) +"qNY" = ( +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/obj/structure/stairs/perspective{ + color = "#8B7B5B"; + icon_state = "p_stair_full" + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_x = -1; + pixel_y = 9 + }, +/turf/open/floor/asteroidfloor, +/area/bosenmori/outside/filtration) +"qOk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/warning/north, +/area/bosenmori/shuttles/drop1) +"qOm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"qOn" = ( +/turf/open/shuttle/escapepod/west, +/area/bosenmori/interior_regular/telecommunication) +"qOK" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.6 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop2) +"qOL" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 1 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/bosenmori/interior_glass/corporate) +"qPg" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_glass/corporate) +"qPA" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/bosenmori/outside/river) +"qPU" = ( +/obj/effect/decal/remains/human, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"qQi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"qQu" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/bosenmori/mountain/field_post) +"qQC" = ( +/obj/item/storage/firstaid/regular{ + pixel_y = 28 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"qQM" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"qQN" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null; + req_one_access = "207" + }, +/obj/item/weapon/gun/pistol/heavy/co/gold, +/obj/item/ammo_magazine/pistol/heavy/super, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy/super, +/obj/item/storage/pouch/magazine/pistol, +/turf/open/floor/greengrid, +/area/bosenmori/interior_glass/corporate) +"qQO" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/tree) +"qRv" = ( +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/pilgrim) +"qSn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/darkbrown2/northwest, +/area/bosenmori/interior_glass/cargo) +"qSC" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/obj/structure/bed/stool, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"qSQ" = ( +/obj/structure/tunnel, +/turf/open/gm/dirt2, +/area/bosenmori/outside/north_area) +"qTl" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"qTz" = ( +/obj/structure/dispenser, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"qTZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname{ + dir = 2; + req_one_access = "102;104;106" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/filtration) +"qUt" = ( +/obj/structure/stairs/perspective{ + color = "#8B7B5B"; + icon_state = "p_stair_full"; + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/field_post) +"qUA" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_full"; + dir = 1 + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"qUX" = ( +/turf/open/floor/plating/plating_catwalk/aicore, +/area/bosenmori/outside/filtration) +"qVm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bookcase, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/fitness) +"qVu" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.25; + density = 0; + climb_delay = 0 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/bosenmori/interior_glass/tree) +"qVK" = ( +/turf/open/floor/plating, +/area/bosenmori/mountain/temple_ruins) +"qVM" = ( +/obj/structure/largecrate/random{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/structure/largecrate/random{ + pixel_x = -14; + pixel_y = 17 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_heavy/secured_armory) +"qVR" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"qWl" = ( +/obj/structure/largecrate/random{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"qWv" = ( +/obj/structure/largecrate/lisa, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_heavy/secured_armory) +"qWR" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/food_processing) +"qXj" = ( +/obj/structure/machinery/vending/cola, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/west, +/area/bosenmori/interior_glass/nexus) +"qXl" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/operations) +"qXv" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/greengrid, +/area/bosenmori/interior_regular/telecommunication) +"qYI" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_heavy/secured_armory) +"qYV" = ( +/obj/structure/machinery/power/apc{ + cell_type = /obj/item/cell/high; + dir = 1; + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"qZK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/warningcorner, +/area/bosenmori/shuttles/drop1) +"qZN" = ( +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"rah" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/field_post) +"raq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"rau" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/cargo) +"raP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"rbb" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"rbh" = ( +/obj/structure/machinery/power/apc{ + cell_type = /obj/item/cell/high; + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/plating, +/area/bosenmori/mountain/temple_proper) +"rbo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"rbu" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/toy/deck{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/toy/deck/uno{ + pixel_x = -10; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"rbV" = ( +/obj/structure/platform/mineral/sandstone/runed, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 4 + }, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/void, +/area/bosenmori/mountain/temple_proper) +"rbY" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"rcP" = ( +/obj/structure/cargo_container/grant/rightmid{ + pixel_x = -14; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"ret" = ( +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_ruins) +"reG" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/abandoned) +"rfa" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/weapon/gun/rifle/l42a/abr40{ + pixel_x = 0; + pixel_y = 9 + }, +/obj/structure/machinery/door/window/southleft, +/obj/item/weapon/gun/rifle/ar10, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/store) +"rfD" = ( +/obj/item/prop/rock, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"rfQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"rfU" = ( +/obj/structure/surface/table/reinforced, +/obj/item/notepad/green, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"rfW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname{ + req_one_access = "101"; + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/cargo) +"rgm" = ( +/obj/structure/prop/ice_colony/surveying_device{ + layer = 3.01; + pixel_x = -9; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_ruins) +"rgy" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop1) +"rgD" = ( +/obj/structure/ore_box{ + name = "wooden cargo crate" + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"rgV" = ( +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/field_post) +"rhn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"rhX" = ( +/obj/structure/window_frame/solaris/reinforced, +/obj/structure/foamed_metal, +/turf/open/floor/plating/platebot, +/area/bosenmori/outside/cargo) +"rib" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"rii" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bosenmori/shuttles/drop3) +"riN" = ( +/obj/structure/largecrate{ + name = "Ceramic plate crate (x6)" + }, +/obj/item/clothing/accessory/health/ceramic_plate, +/obj/item/clothing/accessory/health/ceramic_plate, +/obj/item/clothing/accessory/health/ceramic_plate, +/obj/item/clothing/accessory/health/ceramic_plate, +/obj/item/clothing/accessory/health/ceramic_plate, +/obj/item/clothing/accessory/health/ceramic_plate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_heavy/secured_armory) +"riO" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4; + pixel_y = -5 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -1; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/kitchen) +"riX" = ( +/obj/structure/cargo_container/seegson/mid, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"rjz" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_barrens) +"rjC" = ( +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"rjP" = ( +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/portadialysis{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/structure/machinery/recharger{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/item/tool/surgery/bonegel{ + pixel_x = -9; + pixel_y = 0 + }, +/obj/item/tool/surgery/bonegel, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"rkt" = ( +/turf/closed/wall/solaris, +/area/bosenmori/outside/east_area) +"rkO" = ( +/turf/open/floor/asteroidwarning/east, +/area/bosenmori/outside/river) +"rkY" = ( +/turf/closed/wall/solaris, +/area/bosenmori/interior_glass/offices) +"rlp" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/obj/item/prop/colony/proptag, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/pilgrim) +"rlx" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bosenmori/outside/filtration) +"rmu" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/clearing) +"rmQ" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/store) +"rnm" = ( +/turf/open/floor/warning/west, +/area/bosenmori/mountain/clearing) +"rnE" = ( +/turf/open/floor/kutjevo/fake_wood, +/area/bosenmori/mountain/field_post) +"rnH" = ( +/obj/structure/prop/dam/truck{ + dir = 4; + pixel_x = 0; + pixel_y = 5 + }, +/obj/structure/largecrate/random/secure{ + pixel_x = 6; + pixel_y = -9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/north_area) +"roh" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/largecrate/chick, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"roj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"roG" = ( +/turf/open/floor/warning/northwest, +/area/bosenmori/shuttles/drop1) +"rpi" = ( +/turf/open/gm/coast/beachcorner2/south_west, +/area/bosenmori/mountain/river) +"rpu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"rpF" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"rpS" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/river/desert/shallow, +/area/bosenmori/outside/river) +"rqF" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"rqM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + name = "Anti-Theft Shutters"; + id = "store_theft"; + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/store) +"rrF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails{ + pixel_y = 4 + }, +/obj/item/paper/research_notes/grant{ + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/paper/research_notes/unique{ + pixel_x = 10; + pixel_y = -1 + }, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"rsA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/outside/south_area) +"rtg" = ( +/obj/structure/platform/kutjevo/rock{ + color = "#9494b8" + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/mountain/pilgrim) +"rtu" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"rtQ" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"rtR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/abandoned) +"ruL" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"ruZ" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"rvb" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_glass/nexus) +"rvm" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/abandoned) +"rwa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/telecommunication) +"rxU" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/store) +"rxV" = ( +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/mining) +"ryF" = ( +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"ryP" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"rzG" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/frame/table/reinforced, +/obj/item/frame/table/reinforced, +/obj/item/stack/rods{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/stack/rods{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/tool/shovel, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/cargo) +"rzS" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"rAI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/living) +"rAX" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/item/xenos_claw{ + pixel_x = -4; + pixel_y = 12 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"rAY" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"rBl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/fitness) +"rBH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"rBI" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/bosenmori/interior_glass/corporate) +"rBN" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_glass/fitness) +"rCn" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/prop/almayer/computer{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"rCv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"rCM" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/temple_proper) +"rDz" = ( +/obj/structure/cargo_container/kelland/left{ + pixel_x = 0; + pixel_y = 12 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"rDX" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/podhatchfloor, +/area/bosenmori/interior_regular/engineering) +"rEb" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop1) +"rEe" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/toy/crayon{ + pixel_x = 9; + pixel_y = -3 + }, +/obj/item/toy/crayon/orange{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/toy/crayon/purple{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/paper{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/structure/machinery/light/small/blue{ + dir = 8; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"rEm" = ( +/turf/open/floor/almayer/plating, +/area/bosenmori/mountain/field_post) +"rEz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/living) +"rEO" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = -7; + pixel_x = 0 + }, +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/outside/filtration) +"rEQ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"rFj" = ( +/obj/item/device/flashlight/lamp/tripod/grey, +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/field_post) +"rFX" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/outside/north_area) +"rFY" = ( +/turf/closed/wall/mineral/sandstone/runed/decor{ + color = "#666666"; + name = "memorial wall" + }, +/area/bosenmori/mountain/pilgrim) +"rGp" = ( +/obj/item/storage/firstaid/regular{ + pixel_y = 28 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"rGB" = ( +/turf/open/floor/plating/platebotc, +/area/bosenmori/interior_glass/hospital) +"rHS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"rHU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair/comfy/bench/north, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/clothing/head/helmet/space/souto{ + pixel_x = 4; + pixel_y = -7 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"rHV" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 1; + pixel_x = 0; + pixel_y = -20 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"rIx" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/east_barrens) +"rIH" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/warning/north, +/area/bosenmori/shuttles/drop1) +"rIV" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/up{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/floor3, +/area/bosenmori/interior_regular/telecommunication) +"rJa" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_x = 0; + pixel_y = 13 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"rJB" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/bosenmori/outside/river) +"rJX" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/item/tool/hand_labeler, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/interior_glass/shipment) +"rKf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"rKg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = -13; + pixel_x = -3 + }, +/obj/item/folder/yellow{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/folder/green{ + pixel_x = 6; + pixel_y = 15 + }, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Bosenmori Site"; + phone_color = "red"; + phone_id = "Engineering Office"; + pixel_x = -5; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"rKr" = ( +/obj/structure/largecrate/random/secure{ + pixel_x = 3; + pixel_y = 15; + layer = 3.01 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"rKw" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/bosenmori/outside/north_barrens) +"rKB" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/bot, +/area/bosenmori/shuttles/drop1) +"rKW" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/void, +/area/bosenmori/mountain/clearing) +"rKZ" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/cargo) +"rLf" = ( +/turf/open/floor/warning/west, +/area/bosenmori/shuttles/drop2) +"rLr" = ( +/obj/structure/window/framed/shiva, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"rLt" = ( +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"rMi" = ( +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_regular/research) +"rMn" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/fitness) +"rMq" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/desert/desert_shore/shore_edge1, +/area/bosenmori/outside/river) +"rNb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"rNc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/offices) +"rNd" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"rNf" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/prison/blue/west, +/area/bosenmori/interior_regular/kitchen) +"rNm" = ( +/turf/open/gm/dirt2, +/area/bosenmori/mountain/clearing) +"rNy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"rOa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"rOu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1; + pixel_x = 15 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_regular/telecommunication) +"rOG" = ( +/obj/structure/cargo_container/kelland/left{ + layer = 3.1; + opacity = 0; + pixel_y = 8; + pixel_x = 7 + }, +/turf/open/floor/bot, +/area/bosenmori/shuttles/drop1) +"rPX" = ( +/obj/structure/closet/crate/miningcar{ + layer = 3.01 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/mining) +"rQs" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"rQZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_glass/food_processing) +"rRZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/shipment) +"rSr" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Armory Blastdoor"; + id = "armory_armory"; + dir = 4 + }, +/turf/open/floor/greengrid, +/area/bosenmori/interior_heavy/secured_armory) +"rTD" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"rTP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_x = 0; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/living) +"rTU" = ( +/turf/closed/wall/solaris, +/area/bosenmori/interior_glass/hospital) +"rUZ" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/pilgrim) +"rVb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/item/book/manual/detective{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/device/camera/broadcasting{ + pixel_x = 2; + pixel_y = 15 + }, +/obj/item/device/taperecorder/empty{ + pixel_x = -9; + pixel_y = 0 + }, +/obj/item/tape{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/tape, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/offices) +"rVn" = ( +/turf/open/desert/desert_shore/shore_edge1, +/area/bosenmori/outside/east_barrens) +"rVr" = ( +/turf/open/floor/plating, +/area/bosenmori/outside/north_barrens) +"rVz" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/warning, +/area/bosenmori/outside/filtration) +"rVA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"rVO" = ( +/obj/structure/flora/tree/jungle/bigtreeBOT, +/obj/structure/platform, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/gm/coast/north, +/area/bosenmori/interior_glass/tree) +"rVQ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/north_area) +"rVU" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"rWj" = ( +/obj/structure/surface/rack{ + pixel_y = 19; + color = "#424a50" + }, +/obj/item/tool/soap/syndie{ + pixel_x = -7; + pixel_y = 15 + }, +/obj/item/tool/soap/deluxe{ + pixel_x = -7; + pixel_y = 22 + }, +/obj/item/tool/soap/weyland_yutani{ + pixel_x = -7; + pixel_y = 28 + }, +/obj/item/stack/medical/ointment{ + pixel_x = 5; + pixel_y = 18 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + dir = 1; + light_color = "#dae2ff"; + light_power = 0.25; + pixel_x = 0; + pixel_y = 22 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/living) +"rWn" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = -4; + pixel_y = 0 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/prison/blue/west, +/area/bosenmori/interior_regular/kitchen) +"rWs" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_regular/store) +"rWA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt, +/area/bosenmori/interior_glass/corporate) +"rWB" = ( +/obj/structure/machinery/power/monitor, +/obj/structure/machinery/light/small/blue{ + pixel_y = -1 + }, +/turf/open/floor/shiva/floor3, +/area/bosenmori/interior_regular/telecommunication) +"rXs" = ( +/obj/item/xenos_claw{ + pixel_x = -23; + pixel_y = 8 + }, +/obj/item/weapon/unathiknife{ + desc = "A curved blade made of a strange material. It looks both old and very sharp."; + force = 30; + name = "\improper alien blade"; + throwforce = 26; + pixel_x = -22; + pixel_y = -16 + }, +/obj/effect/decal/remains/human, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"rYb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"rYn" = ( +/obj/structure/largecrate/machine/autodoc, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_heavy/secured_armory) +"rYE" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Research Complex Shutter"; + id = "science_blast"; + dir = 4 + }, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/research) +"rZi" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/corporate) +"rZu" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/effect/decal/remains/xeno, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"rZO" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"rZY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redyellowfull, +/area/bosenmori/interior_regular/kitchen) +"sak" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/clearing) +"sal" = ( +/obj/structure/bed/chair/comfy/bench/north{ + pixel_x = 9 + }, +/obj/item/toy/plush/therapy/blue{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/item/toy/deck{ + pixel_x = 7; + pixel_y = -4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"sat" = ( +/obj/structure/bed/chair{ + dir = 1; + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"saR" = ( +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"saZ" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"sbE" = ( +/obj/structure/closet/radiation{ + can_be_stacked = 1; + pixel_x = 7 + }, +/obj/structure/closet/radiation{ + can_be_stacked = 1; + pixel_x = -7; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"sbF" = ( +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"sbS" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/bosenmori/outside/river) +"scF" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"sde" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"sdC" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/turf/open/gm/river/desert/deep, +/area/bosenmori/outside/river) +"sdI" = ( +/turf/open/gm/dirtgrassborder/south, +/area/bosenmori/interior_glass/tree) +"sem" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/pilgrim) +"seE" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"sfR" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/turf/open/floor/prison/west, +/area/bosenmori/interior_regular/security) +"sfZ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = -2; + pixel_x = -26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"sge" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks{ + pixel_x = -4 + }, +/obj/item/storage/box/masks{ + layer = 3.2; + pixel_x = -7; + pixel_y = -2 + }, +/obj/item/storage/box/syringes{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/storage/box/syringes{ + pixel_x = 10; + pixel_y = -4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"sgo" = ( +/obj/structure/girder, +/obj/structure/foamed_metal, +/turf/open/floor/plating/platebot, +/area/bosenmori/outside/cargo) +"sgu" = ( +/obj/structure/platform_decoration, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"sgK" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"shk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera{ + c_tag = "Hospital - MEAT Store"; + colony_camera_mapload = 0; + network = list("Corporate"); + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_glass/food_processing) +"shQ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"sig" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"sim" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/mining) +"six" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"siL" = ( +/obj/structure/showcase{ + desc = "A stand with a plastic display of some kind of weird machine."; + icon_state = "coinpress0" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/corporate) +"siY" = ( +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/abandoned) +"sjm" = ( +/obj/structure/machinery/door/window/eastleft{ + req_one_access = "104" + }, +/turf/open/floor/prison/darkred2/east, +/area/bosenmori/interior_regular/security) +"sjo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"sjy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"sjC" = ( +/turf/open/floor/plating, +/area/bosenmori/mountain/abandoned) +"skJ" = ( +/obj/structure/machinery/computer/crew/colony{ + pixel_x = -3 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/operations) +"skP" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/abandoned) +"skZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_regular/operations) +"sla" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/temple_ruins) +"slj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/cargo) +"slq" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1; + color = "#8B7B5B" + }, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"slC" = ( +/obj/structure/girder, +/turf/open/floor/warning/northeast, +/area/bosenmori/mountain/mining) +"sma" = ( +/obj/structure/stairs/perspective{ + color = "#8B7B5B"; + icon_state = "p_stair_full"; + dir = 4 + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"smw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname{ + req_one_access = "101" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/cargo) +"smD" = ( +/obj/structure/closet/crate/hydroponics, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera{ + c_tag = "Hospital - Hydroponics"; + colony_camera_mapload = 0; + network = list("Corporate"); + dir = 4 + }, +/turf/open/floor/prison/greenblue/east, +/area/bosenmori/interior_glass/food_processing) +"smQ" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_regular/security_armory) +"snh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"snk" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bosenmori/outside/north_area) +"sns" = ( +/obj/structure/platform/kutjevo/rock{ + color = "#9494b8" + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/pilgrim) +"snH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/bosenmori/interior_glass/tree) +"snI" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.18; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/cargo) +"snS" = ( +/obj/structure/bookcase, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/fitness) +"som" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"sos" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/outside/west_area) +"soO" = ( +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/field_post) +"spk" = ( +/obj/effect/glowshroom, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"spl" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/desert/shallow_edge/east, +/area/bosenmori/outside/river) +"spz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"spB" = ( +/obj/structure/flora/tree/joshua, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"spM" = ( +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"sqT" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"srK" = ( +/obj/structure/sign/catclock{ + pixel_x = -26; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"srW" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/barricade/handrail/wire{ + layer = 3.18; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"sss" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 8 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"ssy" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/bosenmori/outside/river) +"ssD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Administrator's Office"; + req_one_access = "106" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/offices) +"ssW" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"sth" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"stw" = ( +/obj/structure/flora/tree/joshua, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"suq" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"svU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 2 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/living) +"swm" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/prison/greenblue, +/area/bosenmori/interior_glass/food_processing) +"swp" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop1) +"swC" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"swG" = ( +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"sxf" = ( +/obj/item/tool/wrench{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 11; + pixel_y = 17 + }, +/obj/item/stack/sheet/metal{ + pixel_x = 13; + pixel_y = -1 + }, +/obj/item/storage/toolkit/empty{ + pixel_x = -3; + pixel_y = -8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"sxg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera{ + c_tag = "Nexus - West Hall"; + colony_camera_mapload = 0; + network = list("Corporate") + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"sxh" = ( +/turf/closed/wall/mineral/sandstone/runed/decor, +/area/bosenmori/mountain/field_post) +"sxB" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_y = 9; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"syy" = ( +/obj/structure/machinery/colony_floodlight{ + light_color = "#dae2ff" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"syN" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"szI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname{ + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/corporate) +"sAh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"sAk" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/bosenmori/outside/north_barrens) +"sAK" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"sBR" = ( +/obj/structure/machinery/camera{ + c_tag = "Corporate - Entry"; + colony_camera_mapload = 0; + network = list("Corporate"); + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"sBT" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/bosenmori/outside/river) +"sCb" = ( +/turf/open/floor/prison/floor_plate, +/area/bosenmori/shuttles/drop2) +"sCl" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/effect/spawner/random/toolbox, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1; + pixel_x = 15 + }, +/turf/open/floor/shiva/floor3, +/area/bosenmori/interior_regular/telecommunication) +"sCm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/strata/faux_metal, +/area/bosenmori/interior_regular/store) +"sCs" = ( +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/desert, +/area/bosenmori/interior_glass/nexus) +"sCP" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"sDm" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/bosenmori/outside/north_barrens) +"sDr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/tree) +"sDt" = ( +/obj/structure/platform_decoration, +/turf/open/floor/warning, +/area/bosenmori/outside/filtration) +"sDw" = ( +/obj/structure/mirror{ + pixel_y = 35; + pixel_x = -1 + }, +/obj/item/stool{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/strata/faux_metal, +/area/bosenmori/interior_regular/store) +"sDD" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"sDN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/north_area) +"sDZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/cell_stripe/east, +/area/bosenmori/interior_glass/cargo) +"sEs" = ( +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/store) +"sEz" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"sEG" = ( +/obj/structure/machinery/power/apc{ + cell_type = /obj/item/cell/high; + dir = 4; + pixel_x = 25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"sFQ" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/weapon/dart{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/weapon/dart{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/weapon/dart{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/weapon/dart/green{ + pixel_x = -2; + pixel_y = -7 + }, +/obj/item/weapon/dart/green{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/item/weapon/dart/green{ + pixel_x = -6; + pixel_y = -3 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"sGh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor, +/area/bosenmori/interior_glass/living) +"sGG" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/item/tool/pickaxe, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/temple_ruins) +"sGI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/corporate) +"sGZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/west_area) +"sHz" = ( +/obj/item/prop/torch_frame{ + pixel_y = 34 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/bosenmori/mountain/temple_proper) +"sHY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"sIe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"sIK" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"sIM" = ( +/obj/structure/prop/ice_colony/soil_net, +/turf/open/gm/dirt/desert2, +/area/bosenmori/mountain/temple_ruins) +"sIW" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/abandoned) +"sJa" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"sJk" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8; + pixel_x = -6 + }, +/obj/structure/barricade/metal{ + layer = 3.1; + pixel_x = -1 + }, +/obj/structure/barricade/metal{ + layer = 3.1; + pixel_x = -1; + pixel_y = 10 + }, +/obj/structure/curtain/red{ + pixel_x = 4; + pixel_y = 0 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/bosenmori/interior_glass/fitness) +"sJU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"sJW" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/bosenmori/outside/east_barrens) +"sKx" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/shuttles/drop1) +"sKE" = ( +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/corporate) +"sLk" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/shuttles/drop2) +"sLN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop1) +"sLX" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/field_post) +"sMC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"sNi" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/working_joe_pda, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"sNM" = ( +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -1; + pixel_y = 14 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/kitchen) +"sNN" = ( +/turf/open/floor/warningcorner/west, +/area/bosenmori/mountain/clearing) +"sOe" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"sOy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/bosenmori/interior_glass/hospital) +"sOD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"sON" = ( +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_heavy/secured_armory) +"sPy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/vehicle/powerloader/ft{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"sPT" = ( +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/mountain/pilgrim) +"sQl" = ( +/obj/item/tool/warning_cone{ + pixel_x = -18; + pixel_y = -2 + }, +/turf/open/floor/dark, +/area/bosenmori/outside/cargo) +"sQz" = ( +/obj/structure/lz_sign/lazarus_sign{ + density = 0; + layer = 4.1; + pixel_x = -1; + pixel_y = 4 + }, +/turf/open/floor, +/area/bosenmori/shuttles/drop2) +"sRa" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"sRc" = ( +/turf/open/gm/dirtgrassborder/east, +/area/bosenmori/interior_glass/tree) +"sRo" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/stack/yautja_rope{ + pixel_x = 3; + pixel_y = 10 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/temple_proper) +"sRp" = ( +/obj/structure/bed/chair/comfy/bench/mid, +/turf/open/floor/asteroidwarning/west, +/area/bosenmori/outside/filtration) +"sRq" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"sRv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/cargo) +"sRW" = ( +/obj/structure/closet, +/obj/item/storage/pouch/flare, +/obj/item/storage/pouch/tools, +/obj/item/storage/pouch/tools, +/obj/item/storage/pouch/electronics, +/obj/item/storage/pouch/electronics, +/obj/item/storage/pouch/construction, +/obj/item/storage/pouch/construction, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"sRZ" = ( +/obj/structure/stairs/perspective{ + color = "#8B7B5B"; + icon_state = "p_stair_full" + }, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/mountain/pilgrim) +"sSf" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 3; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/corporate) +"sSO" = ( +/turf/open/floor/prison/darkbrowncorners2/southwest, +/area/bosenmori/interior_glass/cargo) +"sSR" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"sTm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/south_area) +"sTD" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_barrens) +"sTQ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"sUH" = ( +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"sVp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/w_y0, +/area/bosenmori/interior_glass/nexus) +"sVq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/telecommunication) +"sWn" = ( +/obj/structure/flora/tree/jungle/bigtreeTL, +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/abandoned) +"sXb" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"sXo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"sXC" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"sYd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/bosenmori/interior_glass/shipment) +"sYz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"sZq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitepurplecorner, +/area/bosenmori/interior_regular/research) +"sZC" = ( +/obj/structure/flora/jungle/cart_wreck{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/gm/dirtgrassborder/north, +/area/bosenmori/interior_glass/tree) +"sZT" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00" + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/north_barrens) +"taA" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop1) +"tbd" = ( +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1; + pixel_x = 4; + pixel_y = -5 + }, +/turf/open/floor/kutjevo/plate, +/area/bosenmori/mountain/temple_proper) +"tbi" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/field_post) +"tbl" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_area) +"tbB" = ( +/obj/structure/barricade/handrail/strata{ + can_buckle = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"tdJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_regular/engineering) +"tdM" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = -6; + pixel_y = -4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"tez" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/pouch/bayonet{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/storage/pouch/pistol{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/storage/pouch/radio, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"teH" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/outside/west_area) +"teJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/outside/west_area) +"teO" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 8 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"teT" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 18 + }, +/obj/item/weapon/gun/rifle/l42a/abr40{ + pixel_x = -2; + pixel_y = 18 + }, +/obj/item/ammo_magazine/rifle/l42a/abr40/holo_target{ + pixel_x = -1; + pixel_y = 11 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"tfc" = ( +/obj/structure/machinery/power/monitor, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"tfG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + dir = 4; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/corporate) +"tfQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplefull, +/area/bosenmori/interior_glass/living) +"tfW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/living) +"tgx" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + pixel_x = 10; + pixel_y = 0 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"tgJ" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/stool, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"thm" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/pilgrim) +"thL" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "This jukebox only takes quarters and you seem to be out of them at the moment."; + icon = 'icons/obj/structures/props/misc.dmi'; + icon_state = "jukebox"; + name = "Rockin Robin 2300 Jukebox"; + pixel_y = 16 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"thS" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/device/camera{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/device/camera_film{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/device/camera_film{ + pixel_x = -6; + pixel_y = 0 + }, +/obj/item/device/camera_film{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"tij" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"tjn" = ( +/obj/structure/closet, +/obj/item/clothing/under/colonist/prison_boiler, +/obj/item/clothing/under/colonist/prison_boiler, +/obj/item/clothing/shoes/white, +/obj/item/clothing/shoes/white, +/turf/open/floor/prison/west, +/area/bosenmori/interior_regular/security) +"tjz" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/desert, +/area/bosenmori/interior_glass/nexus) +"tjR" = ( +/turf/closed/wall/wood, +/area/bosenmori/mountain/pilgrim) +"tkw" = ( +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/fitness) +"tkP" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"tlf" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"tlS" = ( +/obj/structure/platform_decoration, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/pilgrim) +"tmq" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 8 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"tmz" = ( +/obj/structure/bed/chair/comfy/bench/south, +/turf/open/floor/asteroidwarning/east, +/area/bosenmori/outside/filtration) +"tmA" = ( +/turf/open/gm/river/desert/shallow, +/area/bosenmori/outside/east_barrens) +"tmB" = ( +/turf/open/gm/coast/beachcorner2/north_west, +/area/bosenmori/mountain/river) +"tmX" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/temple_proper) +"tnd" = ( +/obj/structure/barricade/metal{ + dir = 8; + pixel_x = -1 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 1 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 8; + pixel_x = -1 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 8; + pixel_x = 1 + }, +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/structure/curtain/red{ + pixel_x = 0; + pixel_y = -3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/bosenmori/interior_regular/store) +"tnC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/filtration) +"tnF" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"tnK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/interior_glass/living) +"tnU" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"toj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt{ + pixel_x = -4; + pixel_y = 0 + }, +/obj/item/storage/belt{ + pixel_x = 2; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"top" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"toC" = ( +/obj/structure/flora/tree/joshua, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_area) +"toX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"tpg" = ( +/obj/structure/cargo_container/grant/left{ + pixel_x = -14; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"tpp" = ( +/obj/structure/largecrate/supply/medicine/medivend{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/structure/largecrate/supply/medicine/medkits{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"tpJ" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1; + color = "#8B7B5B" + }, +/obj/item/tool/shovel/etool{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/tool/shovel{ + pixel_x = 0; + pixel_y = 10 + }, +/obj/item/tool/shovel{ + pixel_x = 3; + pixel_y = 1 + }, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"tpV" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/pouch/general/medium{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/storage/pouch/general/medium{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/storage/pouch/magazine{ + pixel_x = -3; + pixel_y = 0 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"tqq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/corporate) +"tqr" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = -2; + pixel_x = 26 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"tqx" = ( +/obj/structure/cargo_container/horizontal/blue/top{ + color = "#77b300"; + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/bot, +/area/bosenmori/shuttles/drop1) +"tqz" = ( +/obj/structure/flora/jungle/treeblocker, +/turf/open/gm/grass/grass1, +/area/bosenmori/interior_glass/tree) +"trd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"trk" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plating, +/area/bosenmori/mountain/field_post) +"trA" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor, +/area/bosenmori/shuttles/drop2) +"trQ" = ( +/turf/open/auto_turf/sand/layer2, +/area/bosenmori/outside/filtration) +"trU" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/up, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"tsf" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/temple_proper) +"tsx" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/abandoned) +"tsB" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/bosenmori/interior_glass/cargo) +"ttt" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + color = "#9494b8"; + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/pilgrim) +"tue" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"tun" = ( +/obj/effect/decal/siding, +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/podhatchfloor, +/area/bosenmori/interior_regular/engineering) +"tup" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"tuO" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/tool/pen, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"tvh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_glass/cargo) +"tvx" = ( +/obj/structure/prop/dam/gravestone, +/obj/structure/prop/holidays/string_lights/cap{ + pixel_x = 0; + pixel_y = -20 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"twc" = ( +/obj/structure/flora/tree/joshua, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"twF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"twW" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/temple_proper) +"tyC" = ( +/obj/structure/fence, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/field_post) +"tyH" = ( +/obj/structure/bed/chair{ + dir = 1; + pixel_x = -3; + pixel_y = 18 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"tyY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 8 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"tzo" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/effect/spawner/random/tool, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"tAx" = ( +/obj/structure/surface/rack{ + pixel_y = 19; + color = "#424a50" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + dir = 1; + light_color = "#dae2ff"; + light_power = 0.25; + pixel_x = 0; + pixel_y = 22 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/living) +"tAB" = ( +/obj/structure/window/reinforced, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/nexus) +"tBn" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"tBE" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/pouch/flare{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/storage/pouch/engikit{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/storage/pouch/flamertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"tCc" = ( +/turf/open/auto_turf/sand/layer2, +/area/bosenmori/outside/north_barrens) +"tCe" = ( +/obj/structure/stairs/perspective{ + color = "#8B7B5B"; + icon_state = "p_stair_full"; + dir = 8 + }, +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"tCC" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"tCF" = ( +/obj/structure/machinery/prop/almayer/CICmap/table/horizontal/segment/one, +/turf/open/floor/shiva/north, +/area/bosenmori/interior_regular/operations) +"tCT" = ( +/obj/structure/machinery/power/apc{ + cell_type = /obj/item/cell/high; + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_regular/store) +"tCY" = ( +/turf/open/desert/desert_shore/shore_corner1/west, +/area/bosenmori/outside/west_barrens) +"tDf" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/river/desert/shallow, +/area/bosenmori/outside/river) +"tDp" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/bosenmori/interior_glass/fitness) +"tDJ" = ( +/obj/structure/airlock_assembly/multi_tile, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/outside/cargo) +"tEf" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_barrens) +"tEA" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/kutjevo/plate, +/area/bosenmori/mountain/temple_proper) +"tFk" = ( +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"tFm" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"tFr" = ( +/obj/item/storage/surgical_tray, +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"tFZ" = ( +/turf/open/desert/desert_shore/shore_corner2, +/area/bosenmori/outside/north_area) +"tGp" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/curtain/red, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/living) +"tGU" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/xenos_claw{ + pixel_x = 0; + pixel_y = 7 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"tGZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"tHb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/living) +"tHm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bosenmori/interior_glass/living) +"tHA" = ( +/obj/structure/prop/dam/crane/cargo, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"tIe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/bosenmori/interior_glass/tree) +"tIg" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow/southeast, +/area/bosenmori/interior_glass/living) +"tIu" = ( +/obj/item/stool{ + pixel_x = 1; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"tIC" = ( +/obj/structure/largecrate/random{ + pixel_x = -7; + pixel_y = 0 + }, +/obj/structure/largecrate/random{ + pixel_x = -25; + pixel_y = 9; + layer = 3.02 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"tIY" = ( +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/offices) +"tJf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo, +/area/bosenmori/interior_glass/nexus) +"tJj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_heavy/secured_armory) +"tJr" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"tJx" = ( +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"tJy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table/almayer, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/abandoned) +"tKI" = ( +/turf/open/floor/prison/darkbrown2, +/area/bosenmori/interior_glass/shipment) +"tKK" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"tLR" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/mountain/temple_proper) +"tMu" = ( +/turf/closed/wall/huntership{ + color = "#ac7339" + }, +/area/bosenmori/mountain/temple_proper) +"tMB" = ( +/obj/structure/filingcabinet/medical{ + pixel_y = 17; + pixel_x = -8; + name = "medical records"; + density = 0 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 17 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = 11; + pixel_y = 22; + layer = 3.01 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"tMR" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/mountain/pilgrim) +"tNj" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/mining) +"tNl" = ( +/turf/open/gm/river, +/area/bosenmori/interior_glass/tree) +"tNn" = ( +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"tNu" = ( +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/mountain/temple_proper) +"tOp" = ( +/turf/open/gm/dirtgrassborder/north, +/area/bosenmori/interior_glass/tree) +"tOA" = ( +/obj/structure/largecrate/random{ + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/outside/cargo) +"tOD" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"tOU" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/kutjevo/tiles, +/area/bosenmori/mountain/temple_proper) +"tPk" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/temple_proper) +"tPC" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/desert/desert_shore/shore_edge1, +/area/bosenmori/outside/east_barrens) +"tPK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/interior_glass/nexus) +"tPX" = ( +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"tPZ" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/disk{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/item/disk{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/disk{ + pixel_x = 4; + pixel_y = -5 + }, +/turf/open/floor/corsat, +/area/bosenmori/interior_heavy/secured_armory) +"tQr" = ( +/obj/structure/largecrate/supply/supplies{ + fill_from_loc = 1; + name = "Tripod light crate (x8)" + }, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"tRf" = ( +/obj/structure/prop/souto_land/streamer{ + pixel_x = 0; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"tRi" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/north_area) +"tRo" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"tRs" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/corporate) +"tSf" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/device/binoculars/civ, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"tSk" = ( +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/bed{ + icon_state = "psychbed" + }, +/obj/item/bedsheet/blue, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"tSt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/corporate) +"tSF" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/vault, +/area/bosenmori/interior_regular/kitchen) +"tSK" = ( +/obj/structure/fence, +/turf/open/floor/plating, +/area/bosenmori/outside/east_area) +"tSM" = ( +/turf/open/gm/dirt/desert1, +/area/bosenmori/mountain/temple_ruins) +"tTc" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/fitness) +"tTe" = ( +/turf/open/auto_turf/sand/layer2, +/area/bosenmori/outside/east_barrens) +"tTu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname{ + req_one_access = "100;200"; + dir = 2 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/mining) +"tTw" = ( +/obj/structure/machinery/line_nexter{ + id = "WOline1"; + pixel_x = -5; + pixel_y = 0 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + name = "Anti-Theft Shutters"; + id = "store_theft"; + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 1; + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/store) +"tTx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/pen/clicky, +/obj/item/device/analyzer{ + pixel_x = -9; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"tUd" = ( +/turf/open/desert/desert_shore/shore_edge1, +/area/bosenmori/outside/north_area) +"tUu" = ( +/turf/open/floor/plating/platebot, +/area/bosenmori/outside/cargo) +"tUz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"tUO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"tUT" = ( +/turf/open/gm/coast/west, +/area/bosenmori/mountain/river) +"tVj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/living) +"tVw" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_glass/hospital) +"tVT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"tVV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/food_processing) +"tWr" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/desert/shallow, +/area/bosenmori/outside/river) +"tWt" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/cargo) +"tWD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/almayer/whiteboard{ + pixel_y = 19; + density = 0; + pixel_x = -13 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/corporate) +"tWO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/bosenmori/interior_regular/store) +"tWQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"tWS" = ( +/obj/structure/fence, +/turf/open/floor/plating, +/area/bosenmori/outside/south_area) +"tXd" = ( +/turf/open/desert/desert_shore/shore_corner1/west, +/area/bosenmori/outside/north_barrens) +"tXl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/whitepurplecorner/east, +/area/bosenmori/interior_regular/research) +"tXX" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/south_area) +"tYm" = ( +/turf/open/floor/warning, +/area/bosenmori/mountain/mining) +"tYy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 2; + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/fitness) +"tYM" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/interior_glass/cargo) +"uaf" = ( +/turf/closed/wall/wood, +/area/bosenmori/mountain/field_post) +"uat" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"ubv" = ( +/obj/structure/machinery/iv_drip, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"ubO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplefull, +/area/bosenmori/interior_glass/living) +"ubQ" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/field_post) +"ubS" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"ubU" = ( +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/outside/west_barrens) +"ucN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"udm" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/clearing) +"ueh" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + name = "Post"; + pixel_x = 16; + pixel_y = 16; + density = 0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + name = "Post"; + pixel_x = -16; + pixel_y = 16; + density = 0 + }, +/obj/structure/sign/safety/north{ + pixel_x = 1; + pixel_y = 22 + }, +/obj/structure/sign/safety/two{ + pixel_x = 14; + pixel_y = 22; + name = "marker two" + }, +/turf/open/floor/plating/asteroidfloor, +/area/bosenmori/mountain/pilgrim) +"uew" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + desc = "A small desktop computer. Someone has switched to personal emails and disabled the inventory sort system."; + icon_state = "alert:2"; + name = "inventory computer" + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_heavy/secured_armory) +"ueE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/warning, +/area/bosenmori/shuttles/drop1) +"ufb" = ( +/obj/structure/window_frame/solaris/reinforced, +/turf/open/floor/plating/platebot, +/area/bosenmori/outside/cargo) +"ufn" = ( +/turf/closed/wall/strata_ice/jungle, +/area/bosenmori/mountain/temple_proper) +"uft" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/kutjevo/tiles, +/area/bosenmori/mountain/temple_proper) +"ugy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Private Room"; + req_one_access = "110" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/living) +"uhh" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/bosenmori/interior_glass/nexus) +"uhi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"uhr" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/desert/deep, +/area/bosenmori/outside/river) +"uin" = ( +/obj/structure/prop/brazier/frame, +/turf/open/floor/kutjevo/plate, +/area/bosenmori/mountain/temple_proper) +"uir" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/bed/stool, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"uiI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"uiL" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 0; + pixel_y = -7 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 0; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"uiU" = ( +/obj/structure/platform/kutjevo/rock{ + color = "#9494b8" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"ujc" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"ujh" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + name = "Vault B Lock"; + id = "v2" + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_heavy/secured_armory) +"uju" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/obj/item/reagent_container/glass/rag, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/kitchen) +"ujv" = ( +/obj/structure/largecrate/supply/supplies/flares, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"ujI" = ( +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"ujK" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/filtration) +"ujS" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/ammo_box/rounds, +/obj/item/stack/sheet/wood{ + amount = 2; + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/stack/sheet/wood{ + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"uka" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"ukb" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop2) +"ukj" = ( +/obj/item/stool{ + icon_state = "stool_alt"; + pixel_x = 3; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"ukx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/glass/canister/ammonia{ + pixel_x = -3; + pixel_y = 18 + }, +/obj/item/reagent_container/glass/canister/ammonia{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/reagent_scanner{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"ukP" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_glass/food_processing) +"ull" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor, +/area/bosenmori/interior_glass/shipment) +"ulo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_glass/shipment) +"ulu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"ulx" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/obj/structure/machinery/light/small/blue{ + dir = 8; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"ulV" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device{ + dir = 8; + pixel_x = -6; + pixel_y = -15 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/temple_ruins) +"ume" = ( +/turf/open/gm/dirt2, +/area/bosenmori/outside/west_barrens) +"umg" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/cargo) +"umy" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/tree) +"umL" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"unk" = ( +/obj/structure/flora/tree/joshua, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"unz" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/clothing/head/collectable/tophat/super{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/clothing/head/cowboy{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/clothing/head/cowboy/light{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/clothing/head/pirate{ + pixel_x = -1; + pixel_y = -11 + }, +/obj/item/clothing/head/durag/black{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/clothing/head/durag/black{ + pixel_x = -3; + pixel_y = -6 + }, +/obj/item/clothing/head/cmcap/boonie/tan, +/obj/item/clothing/head/cmcap/boonie/tan{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/item/clothing/head/cmcap/boonie/tan{ + pixel_x = 7; + pixel_y = -7 + }, +/obj/item/clothing/head/cmcap/desert{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/clothing/head/cmcap/desert{ + pixel_x = -8; + pixel_y = -8 + }, +/obj/item/clothing/head/cmcap/desert{ + pixel_x = 3; + pixel_y = -10 + }, +/obj/item/clothing/head/cmcap/flap/desert{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/item/clothing/head/cmcap/flap/desert{ + pixel_x = 1; + pixel_y = -6 + }, +/obj/item/clothing/head/cmcap/flap{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/clothing/head/cmcap/reporter{ + pixel_x = -6; + pixel_y = 2; + name = "cap" + }, +/obj/item/clothing/head/cmcap/reporter{ + pixel_x = 1; + pixel_y = -8; + name = "cap" + }, +/obj/item/clothing/head/cmbandana/tan{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/item/clothing/head/cmbandana/tan{ + pixel_x = 6; + pixel_y = -7 + }, +/obj/item/clothing/head/beret/black{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/clothing/head/beret/black{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/item/clothing/head/beret/eng{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/clothing/head/beret/jan{ + pixel_x = -9; + pixel_y = -7 + }, +/obj/item/clothing/head/beanie/green{ + pixel_x = -6; + pixel_y = 0 + }, +/obj/item/clothing/head/beanie/green{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/clothing/head/beanie/gray{ + pixel_x = -10; + pixel_y = -9 + }, +/obj/item/clothing/head/beanie/gray{ + pixel_x = 4; + pixel_y = -6 + }, +/obj/item/clothing/head/CMB, +/obj/item/clothing/head/beanie/royal_marine/turban, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/store) +"unE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/interior_glass/cargo) +"unO" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = -2; + pixel_x = -26 + }, +/turf/open/floor/prison/darkredfull2, +/area/bosenmori/interior_regular/security) +"unX" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"unZ" = ( +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/offices) +"uoe" = ( +/obj/structure/platform/stair_cut/alt, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/telecommunication) +"uof" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"ups" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"upu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"uqa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"uqs" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/field_post) +"uqF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 6; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/nexus) +"uqJ" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/bosenmori/outside/north_barrens) +"uqZ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + req_access = null; + req_one_access = "104" + }, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_regular/security) +"urR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/bosenmori/interior_glass/tree) +"usf" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_ruins) +"usJ" = ( +/obj/structure/flora/tree/jungle/bigtreeTR, +/obj/structure/platform{ + dir = 1; + layer = 2.25; + density = 0; + climb_delay = 0 + }, +/turf/open/gm/coast/south, +/area/bosenmori/interior_glass/tree) +"usT" = ( +/obj/structure/machinery/landinglight/ds1/spoke, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = -2 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bosenmori/shuttles/drop3) +"utc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"utn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 2; + req_one_access = "100;200" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Corporate Lockdown Shutter"; + dir = 4; + id = "admin_blast" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/corporate) +"utr" = ( +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/filtrationside/northeast, +/area/bosenmori/interior_glass/filtration) +"utx" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/effect/decal/remains/xeno, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"uup" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_regular/store) +"uuu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"uvq" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_barrens) +"uvI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/bosenmori/interior_glass/fitness) +"uvN" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + name = "colony exit gate shutter" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/warning/west, +/area/bosenmori/outside/east_area) +"uwm" = ( +/turf/open/floor/plating/platebot, +/area/bosenmori/mountain/abandoned) +"uwB" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/bosenmori/outside/west_barrens) +"uwX" = ( +/obj/structure/closet/crate/secure/weyland, +/turf/open/floor/greengrid, +/area/bosenmori/interior_glass/corporate) +"uxq" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"uxC" = ( +/obj/structure/cargo_container/seegson/left, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"uyf" = ( +/obj/item/clothing/accessory/limb/skeleton/head/spine{ + pixel_y = -9; + pixel_x = 6 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"uyj" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"uyq" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/obj/item/tool/kitchen/rollingpin{ + pixel_x = -3; + pixel_y = 0 + }, +/obj/item/tool/kitchen/rollingpin{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/bosenmori/interior_regular/kitchen) +"uyt" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"uyy" = ( +/obj/structure/curtain/red, +/turf/open/floor/strata/faux_metal, +/area/bosenmori/interior_regular/store) +"uyK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"uyL" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/void, +/area/bosenmori/mountain/temple_proper) +"uzC" = ( +/obj/structure/machinery/landinglight/ds1/spoke, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bosenmori/shuttles/drop3) +"uzD" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_area) +"uAd" = ( +/turf/closed/wall/mineral/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"uAG" = ( +/turf/open/desert/desert_shore/shore_corner1/north, +/area/bosenmori/outside/river) +"uAQ" = ( +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/interior_glass/corporate) +"uAX" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/obj/item/device/assembly/mousetrap/armed, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"uBc" = ( +/obj/structure/surface/table/almayer, +/obj/item/cpr_dummy, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/storage/syringe_case{ + pixel_x = -6; + pixel_y = -10 + }, +/obj/item/storage/syringe_case{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"uBi" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -17; + pixel_x = 0 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"uBv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/obj/item/facepaint/skull{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/facepaint/brown{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/living) +"uBw" = ( +/obj/structure/machinery/colony_floodlight{ + light_color = "#dae2ff" + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"uBB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/clothing/glasses/welding, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/telecommunication) +"uBE" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"uBI" = ( +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"uCi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bosenmori/interior_glass/living) +"uCp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/store) +"uDm" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt{ + icon_state = "kutjevo_platform_sm_stair_alt" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"uDt" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/structure/machinery/prop/almayer/computer/PC, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"uEH" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/west_barrens) +"uEQ" = ( +/turf/open/floor/greengrid, +/area/bosenmori/interior_glass/corporate) +"uEW" = ( +/obj/effect/glowshroom, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/abandoned) +"uFf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/south_area) +"uFh" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/weapon/twohanded/yautja/glaive/damaged, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + pixel_x = -16; + pixel_y = 0 + }, +/turf/open/floor/corsat, +/area/bosenmori/interior_heavy/secured_armory) +"uFH" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"uFL" = ( +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/nexus) +"uGa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 8; + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/food_processing) +"uGz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/bosenmori/interior_glass/cargo) +"uHP" = ( +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/abandoned) +"uIk" = ( +/obj/structure/pipes/standard/manifold/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"uJJ" = ( +/obj/structure/barricade/handrail/strata{ + can_buckle = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/field_post) +"uKf" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/void, +/area/bosenmori/mountain/temple_proper) +"uKO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/cargo) +"uLf" = ( +/obj/structure/platform{ + dir = 8; + layer = 3.015 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"uLl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 2; + req_one_access = "100;200" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Corporate Lockdown Shutter"; + dir = 4; + id = "admin_blast" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/corporate) +"uLn" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"uLr" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/outside/cargo) +"uLX" = ( +/obj/structure/closet/athletic_mixed, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/bosenmori/interior_glass/fitness) +"uMj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/red, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"uNp" = ( +/obj/structure/bed/bedroll, +/turf/open/floor/carpet, +/area/bosenmori/mountain/clearing) +"uNw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 8 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"uNF" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/cargo) +"uNL" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp/on{ + pixel_y = 11; + pixel_x = 5 + }, +/obj/item/paper_bin{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/tool/pen{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/tool/pen{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"uNM" = ( +/obj/item/clothing/gloves/boxing, +/obj/item/clothing/gloves/boxing, +/obj/item/clothing/gloves/boxing/blue, +/obj/item/clothing/gloves/boxing/blue, +/obj/item/clothing/gloves/boxing/green, +/obj/item/clothing/gloves/boxing/green, +/obj/item/clothing/gloves/boxing/yellow, +/obj/item/clothing/gloves/boxing/yellow, +/obj/structure/closet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/fitness) +"uNO" = ( +/turf/open/floor/warning/northeast, +/area/bosenmori/shuttles/drop1) +"uOp" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"uOG" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + pixel_y = 25; + pixel_x = 10; + layer = 4 + }, +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/north_area) +"uPu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/offices) +"uQd" = ( +/obj/structure/tent_curtain, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/carpet, +/area/bosenmori/mountain/clearing) +"uQg" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/interior_glass/tree) +"uQm" = ( +/turf/open/floor/kutjevo/fake_wood, +/area/bosenmori/mountain/pilgrim) +"uQv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname{ + req_one_access = "101"; + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/cargo) +"uRC" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/northwest, +/area/bosenmori/interior_regular/security) +"uSh" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + name = "colony exit gate shutter" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/outside/east_area) +"uSs" = ( +/turf/open/floor/kutjevo/fake_wood, +/area/bosenmori/outside/north_barrens) +"uSu" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/bosenmori/outside/east_barrens) +"uTp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 2; + req_one_access = "100;200" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Nexus Lockdown Shutter"; + id = "nexus_blast"; + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"uTA" = ( +/obj/item/tool/warning_cone{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"uTB" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/item/device/analyzer/plant_analyzer, +/obj/item/device/analyzer/plant_analyzer{ + pixel_x = 1; + pixel_y = 13 + }, +/obj/structure/sign/banners/maximumeffort{ + pixel_x = 1; + pixel_y = 29 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"uTM" = ( +/obj/structure/platform/mineral/sandstone/runed, +/turf/open/floor/kutjevo/multi_tiles, +/area/bosenmori/mountain/temple_proper) +"uTV" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"uTX" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/corporate) +"uUj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_regular/telecommunication) +"uUD" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"uVh" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 1; + pixel_y = 7 + }, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/nexus) +"uVB" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"uWc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/space) +"uWg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"uWi" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/abandoned) +"uWj" = ( +/turf/open/floor, +/area/bosenmori/mountain/clearing) +"uWs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/offices) +"uWt" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_glass/offices) +"uWz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"uWJ" = ( +/obj/structure/closet/crate, +/turf/open/floor/bot, +/area/bosenmori/shuttles/drop1) +"uWL" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_proper) +"uXs" = ( +/turf/open/gm/river, +/area/bosenmori/mountain/river) +"uXG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"uXJ" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_ruins) +"uXN" = ( +/turf/closed/wall/mineral/sandstone/runed/decor, +/area/bosenmori/mountain/temple_ruins) +"uYz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/solaris/reinforced, +/area/space) +"uYD" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/cargo) +"uYS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"uZD" = ( +/obj/item/storage/firstaid/regular{ + pixel_y = 28 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"uZM" = ( +/obj/structure/cargo_container/grant/leftmid, +/turf/open/floor/bot, +/area/bosenmori/outside/filtration) +"uZX" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/corporate) +"vad" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_regular/operations) +"vaq" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/field_post) +"vaZ" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"vbn" = ( +/obj/structure/prop/dam/crane, +/turf/open/floor, +/area/bosenmori/shuttles/drop1) +"vbB" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"vbF" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/field_post) +"vcr" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/bosenmori/outside/river) +"vcT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"vds" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/desert/shallow_edge/west, +/area/bosenmori/outside/river) +"vdw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/north_area) +"veg" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"veG" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_glass/fitness) +"vfd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/w_y1, +/area/bosenmori/interior_glass/nexus) +"vff" = ( +/obj/structure/machinery/door/window/northleft{ + req_one_access = "101" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_glass/cargo) +"vfi" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"vfF" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"vfT" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + color = "#9494b8"; + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/pilgrim) +"vga" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"vgP" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"vhh" = ( +/obj/structure/machinery/prop/almayer/computer{ + pixel_y = 20 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"vhx" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/pilgrim) +"vhX" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/bosenmori/mountain/abandoned) +"vic" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"vjc" = ( +/turf/open/floor/bot, +/area/bosenmori/shuttles/drop1) +"vjh" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/clearing) +"vjp" = ( +/obj/structure/machinery/telecomms/relay, +/turf/open/shuttle/escapepod/floor0, +/area/bosenmori/interior_regular/telecommunication) +"vjK" = ( +/turf/open/floor/asteroidwarning/north, +/area/bosenmori/outside/river) +"vjV" = ( +/obj/structure/bed/chair/office/light{ + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/offices) +"vkp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/outside/cargo) +"vkA" = ( +/obj/structure/machinery/power/apc/fully_broken/no_cell, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/abandoned) +"vkB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"vkL" = ( +/obj/structure/flora/jungle/treeblocker, +/turf/open/gm/dirtgrassborder/south, +/area/bosenmori/interior_glass/tree) +"vlH" = ( +/turf/closed/wall/solaris, +/area/bosenmori/interior_glass/shipment) +"vmS" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/item/map, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"vnl" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/kutjevo/multi_tiles, +/area/bosenmori/mountain/temple_proper) +"vnm" = ( +/obj/structure/flora/tree/jungle/bigtreeTL, +/obj/structure/barricade/handrail/strata{ + can_buckle = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/tree) +"vnu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/store) +"vnO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"voe" = ( +/obj/effect/decal/siding, +/turf/open/shuttle/escapepod/north, +/area/bosenmori/interior_regular/engineering) +"vog" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/structure/machinery/door_control{ + dir = 1; + id = "corpo_exec"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = 6; + pixel_y = -2; + req_one_access = "207" + }, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Bosenmori Site"; + phone_color = "red"; + phone_id = "Corporate Liaison Office"; + pixel_x = -4; + pixel_y = 1 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/corporate) +"vok" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"vov" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/paper_bin, +/obj/item/tool/pen/clicky, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/fitness) +"voT" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/bosenmori/outside/river) +"voU" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"vpp" = ( +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"vpu" = ( +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"vqe" = ( +/turf/open/floor/prison/blue/east, +/area/bosenmori/interior_regular/kitchen) +"vqu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/food_processing) +"vqA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"vqI" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/shiva/floor3, +/area/bosenmori/interior_regular/telecommunication) +"vqV" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_ruins) +"vqY" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"vrh" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"vrt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/north, +/area/bosenmori/interior_glass/shipment) +"vrw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"vrL" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/bosenmori/interior_glass/cargo) +"vsf" = ( +/obj/item/stool{ + icon_state = "stool_alt"; + pixel_x = -1; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"vsI" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/turf/open/floor/prison/west, +/area/bosenmori/interior_glass/nexus) +"vsZ" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/warningcorner/north, +/area/bosenmori/shuttles/drop2) +"vtd" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"vtF" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/temple_proper) +"vtM" = ( +/turf/open/gm/coast/beachcorner/north_east, +/area/bosenmori/mountain/river) +"vtN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 16 + }, +/turf/open/floor/prison/west, +/area/bosenmori/interior_regular/security) +"vuh" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/gm/grass/grass1, +/area/bosenmori/interior_glass/tree) +"vuA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/warning, +/area/bosenmori/shuttles/drop1) +"vvD" = ( +/obj/structure/platform, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/bosenmori/interior_glass/tree) +"vvG" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"vvO" = ( +/obj/structure/machinery/computer/telecomms/traffic{ + pixel_y = 26; + pixel_x = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_regular/telecommunication) +"vwc" = ( +/turf/open/auto_turf/sand/layer2, +/area/bosenmori/outside/west_barrens) +"vxu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pickaxe{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/item/tool/pickaxe{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/tool/pickaxe{ + pixel_x = -2; + pixel_y = -6 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"vxw" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device{ + dir = 8; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_ruins) +"vza" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"vzb" = ( +/turf/open/floor/almayer/w_y1, +/area/bosenmori/interior_glass/corporate) +"vzi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/engineering) +"vzl" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"vzv" = ( +/obj/structure/prop/invuln/minecart_tracks, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/mining) +"vzA" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"vzF" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/west_area) +"vzS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "wallpipe_2"; + pixel_y = 11; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 4; + layer = 5.0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -19 + }, +/obj/structure/prop/invuln/overhead{ + icon_state = "flammable_pipe_2"; + pixel_y = -7; + name = "dense fuel line"; + desc = "Likely to be incredibly flammable."; + density = 0; + pixel_x = -9 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"vzZ" = ( +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/fitness) +"vAw" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop1) +"vAx" = ( +/obj/item/prop/torch_frame{ + pixel_x = 32 + }, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"vAI" = ( +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"vBC" = ( +/turf/open/floor/warning/west, +/area/bosenmori/shuttles/drop1) +"vCh" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/hop, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"vCm" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/mountain/pilgrim) +"vCv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"vCw" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/auto_turf/sand/layer2, +/area/bosenmori/outside/west_area) +"vCW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/fitness) +"vDf" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1; + color = "#8B7B5B" + }, +/obj/item/ammo_box/magazine/misc/flashlight{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/ammo_box/magazine/misc/flashlight{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/ammo_box/magazine/misc/flashlight/combat/empty{ + pixel_x = 4; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"vDA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_regular/telecommunication) +"vEa" = ( +/obj/structure/machinery/power/apc/no_power/north{ + pixel_y = 25 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_regular/engineering) +"vEc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"vEA" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/nexus) +"vFF" = ( +/obj/structure/machinery/fermenter, +/turf/open/floor/kutjevo/fake_wood, +/area/bosenmori/mountain/pilgrim) +"vFQ" = ( +/obj/item/storage/firstaid/regular{ + pixel_y = 28 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"vFR" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"vGr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"vHt" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_heavy/secured_armory) +"vIn" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/closed/wall/rock{ + color = "#967e73" + }, +/area/bosenmori/mountain/temple_proper) +"vIB" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_full"; + dir = 6 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/bosenmori/mountain/temple_proper) +"vIT" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop1) +"vIZ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"vJj" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"vJl" = ( +/obj/structure/barricade/handrail/medical{ + dir = 4 + }, +/obj/structure/closet/crate/secure, +/turf/open/floor/interior/plastic/alt, +/area/bosenmori/mountain/field_post) +"vJt" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/outside/east_area) +"vJU" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt, +/area/bosenmori/interior_glass/corporate) +"vKz" = ( +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"vKI" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/clearing) +"vLj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"vLm" = ( +/obj/structure/largecrate/black_market/confiscated_weaponry, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_heavy/secured_armory) +"vLx" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/box/zipcuffs{ + pixel_y = -2; + pixel_x = 4 + }, +/turf/open/floor/prison/darkred2/southwest, +/area/bosenmori/interior_regular/security) +"vMl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"vMJ" = ( +/obj/structure/platform/kutjevo/smooth/stair_plate{ + pixel_x = 0; + pixel_y = -1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/bosenmori/outside/west_barrens) +"vNm" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/obj/structure/machinery/computer/telecomms/traffic{ + density = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/dark, +/area/bosenmori/interior_regular/telecommunication) +"vNv" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap"; + color = "#8B7B5B" + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/pilgrim) +"vOb" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"vOr" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bosenmori/outside/cargo) +"vOy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/almayer/whiteboard{ + pixel_y = 25; + density = 0; + pixel_x = -5 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"vOH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"vOR" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/outside/north_barrens) +"vPy" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/mining) +"vPB" = ( +/obj/structure/bed{ + icon_state = "abed"; + pixel_y = 8 + }, +/obj/structure/bed{ + icon_state = "abed"; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/security) +"vPG" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"vQQ" = ( +/obj/structure/reagent_dispensers/water_cooler/walk_past{ + pixel_x = -13; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/fitness) +"vRz" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/bot/north, +/area/bosenmori/shuttles/drop1) +"vRO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"vRP" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/nsg23/no_lock/stripped, +/obj/item/weapon/gun/rifle/nsg23/no_lock/stripped, +/obj/item/ammo_magazine/rifle/nsg23{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/ammo_magazine/rifle/nsg23{ + current_rounds = 0; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/ammo_magazine/rifle/nsg23{ + pixel_x = -5; + pixel_y = 0 + }, +/obj/item/ammo_magazine/rifle/nsg23{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/item/weapon/gun/pistol/es4, +/obj/item/weapon/gun/pistol/es4, +/obj/item/ammo_magazine/pistol/es4, +/obj/item/ammo_magazine/pistol/es4, +/obj/item/ammo_magazine/pistol/es4, +/obj/item/ammo_magazine/pistol/es4, +/obj/item/weapon/stunprod, +/obj/item/weapon/stunprod, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"vRT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/cargo) +"vSm" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/pilgrim) +"vSw" = ( +/obj/structure/machinery/colony_floodlight{ + light_color = "#dae2ff" + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"vSx" = ( +/obj/structure/bed/stool, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/nexus) +"vSV" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/bosenmori/interior_glass/tree) +"vTk" = ( +/obj/item/stack/sandbags/large_stack{ + pixel_x = 3; + pixel_y = 11 + }, +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1; + color = "#8B7B5B" + }, +/obj/item/stack/sandbags/small_stack{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/north, +/area/bosenmori/interior_glass/cargo) +"vTF" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"vVf" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"vVr" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/plating/platebotc, +/area/bosenmori/interior_glass/hospital) +"vVs" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"vVu" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/temple_proper) +"vWc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"vWM" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/bosenmori/mountain/pilgrim) +"vXm" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/south_area) +"vXr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/living) +"vXx" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"vXB" = ( +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"vXE" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/kutjevo, +/obj/item/clothing/glasses/kutjevo{ + pixel_x = 8; + pixel_y = -7 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"vXM" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/magazine{ + pixel_x = -4; + pixel_y = -8 + }, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/bosenmori/interior_regular/kitchen) +"vXP" = ( +/obj/effect/glowshroom, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/abandoned) +"vXY" = ( +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/shuttles/drop1) +"vYo" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + pixel_y = -7; + pixel_x = 0 + }, +/turf/open/floor/asteroidwarning/west, +/area/bosenmori/outside/filtration) +"vYp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"vYv" = ( +/turf/open/floor/prison/whitepurplecorner, +/area/bosenmori/interior_regular/research) +"vYO" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/void, +/area/bosenmori/mountain/clearing) +"vZf" = ( +/turf/open/floor/warning/southwest, +/area/bosenmori/outside/west_barrens) +"vZk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"wbA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/prison/blue/east, +/area/bosenmori/interior_regular/kitchen) +"wbB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"wbN" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"wcw" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/bosenmori/outside/north_barrens) +"wcF" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/shuttle/escapepod/floor1, +/area/bosenmori/interior_regular/engineering) +"wcM" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut{ + icon_state = "kutjevo_platform_sm_stair" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_barrens) +"wdi" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/filtration) +"wdp" = ( +/obj/structure/cargo_container/horizontal/blue/top{ + pixel_x = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/shipment) +"wdB" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"wdP" = ( +/turf/closed/wall/solaris, +/area/bosenmori/interior_regular/kitchen) +"wer" = ( +/turf/open/asphalt, +/area/bosenmori/oob) +"wfj" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/tree) +"wfw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/hospital) +"wfC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "armory_wy"; + dir = 8; + name = "Armory Blastdoor" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_heavy/secured_armory) +"wfE" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/living) +"wfZ" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/southeast, +/area/bosenmori/interior_glass/shipment) +"wgu" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_area) +"wgz" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"wgL" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_proper) +"wgU" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"whb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Bosenmori Site"; + phone_color = "red"; + phone_id = "Marshal Office - B" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/security) +"whf" = ( +/obj/item/coin/diamond, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"whi" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/corporate) +"whM" = ( +/turf/open/floor/warning, +/area/bosenmori/shuttles/drop2) +"wih" = ( +/obj/structure/machinery/still, +/turf/open/floor/kutjevo/fake_wood, +/area/bosenmori/mountain/pilgrim) +"wiY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 4; + pixel_x = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/offices) +"wjv" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/stack/medical/splint/nano/research, +/obj/item/oldresearch/Chitin, +/obj/item/oldresearch/Chitin, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/shard/shrapnel/bone_chips, +/obj/item/shard/shrapnel/bone_chips, +/obj/item/shard/shrapnel/bone_chips, +/obj/item/weapon/broken_glass, +/obj/item/weapon/broken_glass, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"wkO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/warning/east, +/area/bosenmori/outside/filtration) +"wlm" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Corporate Lockdown Shutter"; + dir = 4; + id = "admin_blast" + }, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/corporate) +"wls" = ( +/obj/item/storage/firstaid/regular{ + pixel_y = 28 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"wme" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"wmz" = ( +/turf/closed/wall/shiva/prefabricated, +/area/bosenmori/mountain/field_post) +"wmL" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/structure/phone_base/colony_net/rotary{ + pixel_x = 7; + pixel_y = 2; + phone_category = "Bosenmori Site"; + phone_id = "Public Offices" + }, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/offices) +"wmS" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8; + color = "#9494b8" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"wnh" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/cargo) +"wnq" = ( +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_regular/research) +"wns" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"woF" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_barrens) +"wpq" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/temple_ruins) +"wpz" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/mountain/temple_proper) +"wqe" = ( +/obj/structure/prop/ice_colony/flamingo, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"wqp" = ( +/obj/structure/machinery/computer/operating{ + pixel_y = 17; + density = 0 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"wqx" = ( +/turf/open/floor/kutjevo/plate, +/area/bosenmori/mountain/temple_proper) +"wqX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/weldingtool, +/turf/open/asphalt, +/area/bosenmori/interior_glass/corporate) +"wrM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"wrP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"wrZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"wsc" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + name = "Post"; + pixel_x = 16; + pixel_y = 16; + density = 0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + name = "Post"; + pixel_x = -16; + pixel_y = 16; + density = 0 + }, +/obj/structure/sign/safety/three{ + pixel_x = 14; + pixel_y = 22 + }, +/obj/structure/sign/safety/east{ + pixel_x = 1; + pixel_y = 22 + }, +/turf/open/floor/plating/asteroidfloor, +/area/bosenmori/mountain/clearing) +"wsg" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"wsm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Press Office"; + req_one_access = "110" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/offices) +"wsn" = ( +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"wsu" = ( +/obj/structure/prop/tower{ + density = 0 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/test_floor4, +/area/bosenmori/mountain/mining) +"wsE" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/corporate) +"wtm" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/coast/beachcorner2/north_east, +/area/bosenmori/mountain/river) +"wtF" = ( +/obj/item/stool{ + pixel_y = 11; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"wtQ" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8; + pixel_x = -6 + }, +/obj/structure/barricade/metal{ + layer = 3.1; + pixel_x = -1 + }, +/obj/structure/barricade/metal{ + layer = 3.1; + pixel_x = -1; + pixel_y = 10 + }, +/obj/effect/glowshroom, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/bosenmori/interior_glass/living) +"wtX" = ( +/turf/open/floor/warningcorner, +/area/bosenmori/outside/filtration) +"wtZ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth/stair_plate{ + pixel_x = 0; + pixel_y = -1; + layer = 2.99 + }, +/turf/open/gm/river/desert/deep, +/area/bosenmori/outside/river) +"wup" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"wuD" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/temple_proper) +"wvr" = ( +/obj/item/prop/torch_frame{ + pixel_x = -32 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/mountain/temple_proper) +"wvw" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating, +/area/bosenmori/outside/west_barrens) +"wvU" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"wwt" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/operations) +"wxi" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/shipment) +"wyn" = ( +/turf/open/floor/plating/asteroidwarning/northeast, +/area/bosenmori/mountain/field_post) +"wyA" = ( +/obj/structure/platform/kutjevo/rock{ + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/field_post) +"wyE" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/bosenmori/outside/river) +"wyI" = ( +/obj/structure/tent/reqs, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/carpet, +/area/bosenmori/mountain/clearing) +"wzf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/bosenmori/interior_glass/shipment) +"wzk" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop2) +"wzx" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/turf/open/floor/warning/north, +/area/bosenmori/shuttles/drop1) +"wAm" = ( +/turf/closed/wall/strata_ice/jungle, +/area/bosenmori/mountain/pilgrim) +"wAv" = ( +/obj/structure/sink{ + layer = 3.1; + dir = 8; + pixel_x = -16 + }, +/obj/structure/mirror{ + pixel_x = -31; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/living) +"wAB" = ( +/turf/open/floor/plating/asteroidwarning/northwest, +/area/bosenmori/mountain/field_post) +"wAJ" = ( +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/cargo) +"wAS" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/kitchen) +"wBE" = ( +/turf/open/floor/kutjevo/multi_tiles, +/area/bosenmori/mountain/temple_proper) +"wCv" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/east_barrens) +"wCw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/cargo) +"wDY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/south_area) +"wEu" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/engineering) +"wEw" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/bosenmori/outside/river) +"wEM" = ( +/obj/item/storage/firstaid/regular{ + pixel_y = 28 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/mining) +"wFd" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"wFD" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/weapon/gun/flare, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/megaphone, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"wFT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/kutjevo, +/area/bosenmori/interior_glass/nexus) +"wFV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/mountain/abandoned) +"wGP" = ( +/obj/structure/prop/ice_colony/surveying_device{ + dir = 1; + pixel_x = -5; + pixel_y = 1 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"wGZ" = ( +/obj/structure/fence, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/warning/west, +/area/bosenmori/outside/south_area) +"wHd" = ( +/obj/structure/bed/chair, +/turf/open/floor/interior/tatami, +/area/bosenmori/interior_glass/nexus) +"wHy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/retrosquareslight, +/area/bosenmori/interior_glass/fitness) +"wHF" = ( +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/clearing) +"wHP" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/warning/southeast, +/area/bosenmori/outside/filtration) +"wHU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/south_area) +"wIs" = ( +/turf/open/floor/prison/darkred2/west, +/area/bosenmori/interior_regular/security) +"wIz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/research) +"wJa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + dir = 1; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/corporate) +"wJg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/bosenmori/interior_regular/engineering) +"wJs" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/asphalt, +/area/bosenmori/interior_glass/corporate) +"wJu" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bosenmori/outside/filtration) +"wJE" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "armory_wy"; + dir = 8; + name = "Armory Blastdoor" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_heavy/secured_armory) +"wKN" = ( +/obj/structure/cargo_container/kelland/right{ + opacity = 0; + pixel_y = 8; + layer = 3.1; + pixel_x = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"wLk" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"wLB" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"wLQ" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/prop/almayer/computer{ + pixel_y = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/southwest, +/area/bosenmori/interior_glass/shipment) +"wMb" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 5 + }, +/turf/open/auto_turf/sand/layer2, +/area/bosenmori/outside/north_area) +"wMm" = ( +/obj/structure/machinery/computer/telecomms/monitor{ + pixel_y = 26; + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_regular/telecommunication) +"wMo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data{ + dir = 8; + req_access = null; + req_one_access = "104" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/security) +"wNe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"wNr" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"wNX" = ( +/turf/open/gm/dirt2, +/area/bosenmori/outside/north_barrens) +"wOo" = ( +/obj/structure/machinery/iv_drip, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"wOq" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_glass/corporate) +"wPb" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/prison/blue/west, +/area/bosenmori/interior_regular/kitchen) +"wPM" = ( +/mob/living/simple_animal/cow{ + name = "Irene" + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_area) +"wPU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/tree) +"wQo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitepurplecorner/east, +/area/bosenmori/interior_regular/research) +"wQK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/south_area) +"wQS" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "colonial operations terminal" + }, +/obj/structure/machinery/door_control/brbutton/alt{ + pixel_x = 8; + pixel_y = -2; + name = "Remote Research Complex Lockdown"; + id = "science_blast" + }, +/obj/structure/machinery/door_control/brbutton/alt{ + pixel_y = -2; + pixel_x = -7; + id = "admin_blast"; + name = "Remote Administration Lockdown" + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/operations) +"wRb" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/pilgrim) +"wRc" = ( +/obj/item/clothing/suit/storage/marine/veteran/royal_marine, +/obj/item/clothing/suit/storage/marine/veteran/royal_marine/light, +/obj/item/clothing/suit/storage/marine/veteran/royal_marine/light, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/shield/riot/metal, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_regular/security_armory) +"wRm" = ( +/turf/open/floor/warning/north, +/area/bosenmori/shuttles/drop1) +"wRq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"wRv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"wSj" = ( +/obj/structure/dartboard{ + pixel_x = -26; + pixel_y = 1 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"wSL" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/clearing) +"wTc" = ( +/obj/structure/largecrate/random{ + pixel_x = -2; + pixel_y = -3 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/north_area) +"wTr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname{ + req_one_access = "101"; + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/shipment) +"wTZ" = ( +/obj/structure/stairs/perspective{ + color = "#8B7B5B"; + icon_state = "p_stair_full"; + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/mountain/pilgrim) +"wUg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/west_area) +"wUj" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/closed/wall/strata_ice/jungle, +/area/bosenmori/outside/east_barrens) +"wUC" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/abandoned) +"wUU" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"wVe" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/obj/item/ashtray/plastic{ + pixel_y = -2; + pixel_x = 3 + }, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/shipment) +"wVh" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Research Complex Shutter"; + id = "science_blast"; + dir = 4 + }, +/turf/open/floor/vault, +/area/bosenmori/interior_regular/research) +"wVw" = ( +/obj/item/clothing/glasses/eyepatch, +/obj/item/clothing/glasses/eyepatch{ + pixel_x = 8; + pixel_y = -5 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"wVL" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 10 + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/bosenmori/outside/north_barrens) +"wWs" = ( +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"wWG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"wXf" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_regular/operations) +"wXv" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/bosenmori/mountain/temple_ruins) +"wXH" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/obj/structure/machinery/computer/telecomms/server{ + density = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2; + pixel_y = 0 + }, +/turf/open/floor/dark, +/area/bosenmori/interior_regular/telecommunication) +"wXM" = ( +/obj/structure/girder, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/interior_glass/cargo) +"wXZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_regular/engineering) +"wYv" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/nexus) +"wYS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/food_processing) +"wZv" = ( +/obj/structure/platform_decoration, +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/north, +/area/bosenmori/interior_glass/tree) +"xaJ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"xaL" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/item/storage/toolkit/empty, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/cargo) +"xaO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"xaS" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/interior_glass/living) +"xbc" = ( +/obj/structure/bed/chair{ + dir = 1; + pixel_x = 1; + pixel_y = 14 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"xcg" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/corporate) +"xcy" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"xcD" = ( +/turf/open/floor/warning, +/area/bosenmori/outside/filtration) +"xcQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_regular/engineering) +"xcS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_glass/shipment) +"xdc" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"xdA" = ( +/obj/structure/machinery/door/window/eastright{ + req_one_access = "104" + }, +/turf/open/floor/prison/darkred2/east, +/area/bosenmori/interior_regular/security) +"xdG" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/item/prop/almayer/flight_recorder/colony, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_regular/telecommunication) +"xdO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/outside/west_area) +"xem" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/void, +/area/bosenmori/mountain/clearing) +"xeq" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/bosenmori/outside/north_barrens) +"xer" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/nexus) +"xeP" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/west, +/area/bosenmori/interior_regular/security) +"xeR" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/gm/river/desert/shallow, +/area/bosenmori/outside/river) +"xff" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/item/storage/firstaid/regular/empty, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"xfF" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/west_barrens) +"xgI" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device{ + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"xgN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"xgV" = ( +/turf/open/gm/dirt/desert3, +/area/bosenmori/mountain/temple_ruins) +"xhc" = ( +/obj/item/stack/sheet/mineral/uranium{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/structure/surface/rack, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"xho" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/offices) +"xhJ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"xhT" = ( +/obj/item/storage/surgical_tray, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"xig" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/mining) +"xiC" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 8 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"xiG" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/engineering) +"xiJ" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" + }, +/obj/item/clothing/accessory/stethoscope, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"xjh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/corporate) +"xjm" = ( +/obj/structure/ore_box, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/river) +"xjA" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/weapon/gun/smartgun/rmc, +/turf/open/floor/corsat, +/area/bosenmori/interior_heavy/secured_armory) +"xkJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"xlj" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 8 + }, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/temple_proper) +"xlK" = ( +/turf/open/desert/desert_shore/shore_corner2, +/area/bosenmori/outside/west_barrens) +"xlY" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/outside/west_area) +"xmP" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_regular/operations) +"xmT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/bosenmori/interior_glass/nexus) +"xmU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/northwest, +/area/bosenmori/interior_regular/security) +"xng" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/bosenmori/outside/river) +"xog" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/bot, +/area/bosenmori/outside/filtration) +"xol" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1; + pixel_y = 2; + pixel_x = -9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/living) +"xoo" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "Corporate Lockdown Shutter"; + dir = 4; + id = "admin_blast" + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + name = "Garage Shutter"; + id = "garage_blast"; + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/corporate) +"xov" = ( +/turf/closed/wall/solaris, +/area/bosenmori/outside/east_barrens) +"xoz" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/north_barrens) +"xoO" = ( +/obj/structure/platform/stair_cut/alt, +/obj/structure/stairs/perspective{ + color = "#8B7B5B"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/pilgrim) +"xoT" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/item/tool/shovel/spade, +/turf/open/gm/dirt, +/area/bosenmori/mountain/temple_ruins) +"xps" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/living) +"xpE" = ( +/obj/item/tool/crowbar/red, +/turf/open/asphalt, +/area/bosenmori/interior_glass/corporate) +"xqd" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes{ + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"xqp" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1; + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/mountain/pilgrim) +"xqq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"xrh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"xrp" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/shuttles/drop1) +"xrU" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/shuttle/escapepod/north, +/area/bosenmori/interior_regular/engineering) +"xrV" = ( +/obj/structure/stairs/perspective{ + color = "#8B7B5B"; + dir = 4; + icon_state = "p_stair_sn_full_cap"; + layer = 2.5 + }, +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"xrX" = ( +/obj/item/coin/gold, +/turf/open/gm/dirt2, +/area/bosenmori/mountain/mining) +"xsm" = ( +/obj/structure/window_frame/solaris/reinforced, +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bosenmori/mountain/abandoned) +"xsn" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"xsP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/west_area) +"xsY" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/abandoned) +"xtF" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/field_post) +"xtG" = ( +/obj/structure/cargo_container/kelland/right{ + pixel_x = 5; + layer = 2.99 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/bosenmori/interior_glass/shipment) +"xtY" = ( +/obj/structure/fence, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"xuc" = ( +/turf/open/floor/asteroidwarning/west, +/area/bosenmori/outside/river) +"xuo" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/pouch/survival{ + pixel_x = 2; + pixel_y = 0 + }, +/obj/item/storage/pouch/first_responder{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/storage/pouch/syringe{ + pixel_x = 0; + pixel_y = -4 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"xuI" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_area) +"xvk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/offices) +"xvt" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/bot, +/area/bosenmori/outside/filtration) +"xvJ" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = -7; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/bosenmori/interior_glass/filtration) +"xww" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/bosenmori/interior_regular/operations) +"xxs" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkbrown2/east, +/area/bosenmori/interior_glass/shipment) +"xxv" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/void, +/area/bosenmori/mountain/temple_proper) +"xyU" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"xzt" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "armory_colo"; + dir = 8; + name = "Armory Blastdoor" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_heavy/secured_armory) +"xzx" = ( +/obj/structure/cargo_container/seegson/mid{ + pixel_y = 10 + }, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"xzz" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/interior_glass/cargo) +"xzA" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/weapon/gun/rifle/rmc_f90/scope, +/turf/open/floor/corsat, +/area/bosenmori/interior_heavy/secured_armory) +"xzF" = ( +/obj/structure/machinery/telecomms/relay/preset/ice_colony{ + density = 0; + layer = 6 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/outside/river) +"xzG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/bosenmori/interior_glass/nexus) +"xzM" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_barrens) +"xzQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 2 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/kitchen) +"xzR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/stunprod, +/obj/structure/machinery/recharger{ + pixel_x = 0; + pixel_y = 3 + }, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"xzT" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/pilgrim) +"xAv" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river/desert/shallow, +/area/bosenmori/outside/river) +"xAZ" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bosenmori/outside/river) +"xBg" = ( +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/plate, +/area/bosenmori/interior_glass/fitness) +"xBj" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"xBk" = ( +/obj/structure/platform/kutjevo/rock{ + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/pilgrim) +"xBL" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/bosenmori/outside/west_barrens) +"xBN" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/desert/shallow_edge/east, +/area/bosenmori/outside/river) +"xCd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/operations) +"xCe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/processor, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/blue, +/area/bosenmori/interior_regular/kitchen) +"xCh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"xCt" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5; + dir = 1; + pixel_x = 0; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/warning/north, +/area/bosenmori/shuttles/drop1) +"xCw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/cargo) +"xCY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1; + pixel_y = 3; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/food_processing) +"xDc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"xDn" = ( +/turf/closed/wall/strata_ice/jungle, +/area/bosenmori/mountain/temple_ruins) +"xDr" = ( +/obj/structure/prop/invuln/minecart_tracks, +/turf/open/floor/dark, +/area/bosenmori/mountain/mining) +"xDE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"xDU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/telecommunication) +"xDX" = ( +/turf/open/auto_turf/sand/layer2, +/area/bosenmori/outside/east_area) +"xEX" = ( +/obj/item/prop/torch_frame{ + pixel_x = -32 + }, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_proper) +"xFc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/robotics, +/turf/open/floor/mech_bay_recharge_floor, +/area/bosenmori/interior_glass/living) +"xFu" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/bosenmori/outside/river) +"xFL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/living) +"xFN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2, +/area/bosenmori/interior_glass/cargo) +"xGa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/prop/server_equipment/laptop/closed, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/bosenmori/interior_regular/engineering) +"xGw" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 3; + pixel_y = 9 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"xGy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/living) +"xGz" = ( +/obj/structure/platform/kutjevo, +/turf/open/auto_turf/strata_grass/layer1, +/area/bosenmori/mountain/pilgrim) +"xGB" = ( +/turf/open/gm/dirt, +/area/bosenmori/mountain/clearing) +"xGC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/bedsheetbin{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/effect/spawner/random/facepaint, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/living) +"xGL" = ( +/turf/open/floor/plating/asteroidwarning/east, +/area/bosenmori/mountain/field_post) +"xGQ" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_x = 16 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/shipment) +"xGV" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/weapon/twohanded/yautja/glaive, +/turf/open/floor/corsat, +/area/bosenmori/interior_heavy/secured_armory) +"xHf" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 2; + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/corporate) +"xHR" = ( +/obj/structure/machinery/colony_floodlight{ + light_color = "#dae2ff" + }, +/turf/open/floor/asteroidplating, +/area/bosenmori/outside/filtration) +"xHU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/north, +/area/bosenmori/interior_glass/cargo) +"xIe" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/nexus) +"xIq" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/fitness) +"xIr" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/hunting_trap{ + desc = "A bizarre alien device used for trapping and killing prey."; + name = "Alien Mine"; + pixel_x = 1; + pixel_y = 0 + }, +/obj/item/hunting_trap{ + desc = "A bizarre alien device used for trapping and killing prey."; + name = "Alien Mine"; + pixel_x = -5; + pixel_y = 8 + }, +/turf/open/floor/corsat, +/area/bosenmori/interior_heavy/secured_armory) +"xIR" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/turf/open/floor/kutjevo/plate, +/area/bosenmori/mountain/temple_proper) +"xJi" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/mountain/field_post) +"xKd" = ( +/obj/structure/flora/grass/tallgrass/desert{ + color = "#bfff00" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/west_barrens) +"xKr" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + name = "Post"; + pixel_x = 16; + pixel_y = 16; + density = 0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + name = "Post"; + pixel_x = -16; + pixel_y = 16; + density = 0 + }, +/obj/structure/sign/safety/three{ + pixel_x = 14; + pixel_y = 22 + }, +/obj/structure/sign/safety/north{ + pixel_x = 1; + pixel_y = 22 + }, +/turf/open/floor/plating/asteroidfloor, +/area/bosenmori/mountain/field_post) +"xLq" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 2; + req_one_access = "101" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/shipment) +"xLB" = ( +/obj/structure/flora/tree/joshua, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/shuttles/drop2) +"xLD" = ( +/obj/structure/bed/chair{ + dir = 1; + pixel_x = 0; + pixel_y = 16 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"xMf" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/bosenmori/interior_regular/security) +"xMB" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/bosenmori/outside/east_barrens) +"xMC" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/engineering) +"xML" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/cell_stripe, +/area/bosenmori/interior_regular/research) +"xND" = ( +/obj/structure/platform{ + dir = 4; + layer = 3.015 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/desert, +/area/bosenmori/interior_glass/nexus) +"xNE" = ( +/mob/living/simple_animal/cow{ + name = "Arryn" + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"xNP" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/bosenmori/outside/west_barrens) +"xOb" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small/blue{ + dir = 1; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/asphalt, +/area/bosenmori/interior_glass/corporate) +"xOt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/living) +"xOI" = ( +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/bosenmori/interior_glass/nexus) +"xOM" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"xOU" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/mountain/mining) +"xPA" = ( +/obj/effect/decal/remains/xeno, +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/temple_ruins) +"xPJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/nexus) +"xPS" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/carpet, +/area/bosenmori/mountain/clearing) +"xQm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/bosenmori/interior_regular/kitchen) +"xQv" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/bosenmori/outside/east_barrens) +"xQE" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"xQI" = ( +/obj/structure/platform_decoration, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/operations) +"xQJ" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/east_area) +"xRb" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ3 - Cave Entry"; + id = "dropship-lz3" + }, +/turf/open/floor/asteroid, +/area/bosenmori/shuttles/drop3) +"xRJ" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/engineering) +"xSd" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"xSG" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + color = "#9494b8" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/bosenmori/mountain/mining) +"xSK" = ( +/turf/closed/wall/solaris/reinforced, +/area/bosenmori/interior_glass/shipment) +"xTb" = ( +/obj/structure/largecrate, +/obj/item/clothing/accessory/health/scrap, +/obj/item/clothing/accessory/health/scrap, +/obj/item/clothing/accessory/health/scrap, +/obj/item/clothing/accessory/health/scrap, +/obj/item/clothing/accessory/health/scrap, +/obj/item/clothing/accessory/health/scrap, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/cargo) +"xTt" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 2; + req_one_access = "102" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_regular/telecommunication) +"xTX" = ( +/obj/structure/platform{ + layer = 3.01 + }, +/turf/open/gm/river/desert/shallow_edge/west, +/area/bosenmori/outside/river) +"xVf" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/filtration) +"xVo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"xVH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/nanopaste, +/obj/item/stack/nanopaste{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/tool/weldingtool/simple{ + pixel_x = 8; + pixel_y = 13 + }, +/obj/item/maintenance_jack, +/obj/item/tool/extinguisher/mini{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/prop/colony/game, +/turf/open/floor/vault2/west, +/area/bosenmori/interior_glass/living) +"xWp" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/living) +"xWI" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/plating, +/area/bosenmori/outside/east_area) +"xXb" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"xXA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + color = "#bfff00"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/bosenmori/outside/north_area) +"xXU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/bosenmori/interior_glass/tree) +"xYa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bosenmori/outside/cargo) +"xYg" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = list(7,23,27) + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/cargo) +"xZK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff" + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_regular/store) +"xZX" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/store) +"yaQ" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/gm/coast/east, +/area/bosenmori/interior_glass/tree) +"yaU" = ( +/obj/item/tool/pickaxe, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/sandstone/runed, +/area/bosenmori/mountain/temple_ruins) +"ybs" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + name = "colony exit gate shutter"; + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/asphalt, +/area/bosenmori/outside/east_area) +"ybu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair/comfy/bench/mid, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/tree) +"ybK" = ( +/obj/structure/closet/crate/miningcar{ + layer = 3.01 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"ybR" = ( +/turf/open/floor/bot, +/area/bosenmori/outside/filtration) +"ycc" = ( +/obj/item/trash/barcardine{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/trash/barcardine{ + pixel_x = 8; + pixel_y = -10 + }, +/turf/open/auto_turf/strata_grass, +/area/bosenmori/mountain/pilgrim) +"ycq" = ( +/obj/structure/window/framed/wood, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"yct" = ( +/obj/structure/platform{ + dir = 1; + density = 0; + climb_delay = 0; + layer = 3.01 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"ycu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"ycx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/living) +"ycB" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#ffe6e6" + }, +/obj/structure/machinery/computer/emails{ + pixel_x = 0; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_glass/offices) +"ycG" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bosenmori/shuttles/drop2) +"ycN" = ( +/obj/structure/bed/chair/office/light{ + dir = 4; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/offices) +"ycV" = ( +/obj/structure/machinery/light/small/blue{ + light_color = "#dae2ff"; + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/research) +"ydb" = ( +/obj/structure/surface/rack, +/obj/item/device/binoculars/range/monocular{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/device/flashlight/tnr{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/device/flashlight/tnr{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/device/flashlight/tnr{ + pixel_x = -4; + pixel_y = -5 + }, +/obj/item/device/flashlight/tnr{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/floor/almayer/plating, +/area/bosenmori/mountain/field_post) +"yde" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_regular/store) +"ydA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/bosenmori/interior_regular/telecommunication) +"ydP" = ( +/turf/open/floor/plating/asteroidwarning/north, +/area/bosenmori/mountain/field_post) +"yec" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/wy{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/tool/pen, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/interior_glass/corporate) +"yeh" = ( +/obj/item/stool{ + icon_state = "stool_alt"; + pixel_x = -1; + pixel_y = 11 + }, +/turf/open/floor/strata/faux_wood, +/area/bosenmori/mountain/pilgrim) +"yeA" = ( +/obj/structure/closet/crate/construction, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bosenmori/outside/cargo) +"yeY" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_glass/shipment) +"yff" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/bosenmori/mountain/mining) +"yfh" = ( +/obj/structure/closet/crate/construction, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/plasteel/small_stack, +/turf/open/floor/plating/platebotc, +/area/bosenmori/outside/cargo) +"yfr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/bosenmori/interior_regular/operations) +"yfC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/hospital) +"yfQ" = ( +/obj/structure/machinery/landinglight/ds1/spoke, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 6; + pixel_y = -7 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bosenmori/shuttles/drop3) +"yfZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/bosenmori/outside/west_area) +"ygc" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/auto_turf/sand/layer0, +/area/bosenmori/outside/east_barrens) +"yhu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/outside/west_area) +"yhv" = ( +/obj/structure/prop/ice_colony/tiger_rug, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small/blue{ + dir = 8; + light_color = "#dae2ff"; + light_power = 0.25 + }, +/turf/open/floor/dark, +/area/bosenmori/interior_glass/corporate) +"yhA" = ( +/turf/open/shuttle/escapepod/floor1, +/area/bosenmori/interior_regular/engineering) +"yiu" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"yiF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor, +/area/bosenmori/outside/filtration) +"yji" = ( +/turf/open/gm/dirt/desert_dug, +/area/bosenmori/mountain/field_post) +"yjj" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/interior_glass/hospital) +"ykw" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/floor_marked, +/area/bosenmori/interior_heavy/secured_armory) +"ykW" = ( +/obj/structure/prop/invuln/joey, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/north, +/area/bosenmori/interior_glass/cargo) +"ykX" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera{ + c_tag = "Nexus - Operations Center"; + colony_camera_mapload = 0; + dir = 1; + network = list("Corporate") + }, +/turf/open/floor/shiva/multi_tiles, +/area/bosenmori/interior_regular/operations) +"ylb" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/corporate) +"yli" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/dirt2, +/area/bosenmori/outside/east_barrens) +"ylo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/working_joe_pda, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_heavy/secured_armory) +"ylq" = ( +/obj/structure/vehicle_locker/cabinet/cups{ + pixel_y = 27; + pixel_x = -8; + color = "#ffb84d" + }, +/obj/structure/vehicle_locker/cabinet/cups/flip{ + pixel_x = 7; + pixel_y = 27; + color = "#ffb84d" + }, +/obj/structure/surface/table/reinforced/almayer_B{ + color = "#ffb84d"; + pixel_x = 0; + pixel_y = 5 + }, +/obj/item/storage/firstaid/softpack/toxin{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/item/device/healthanalyzer{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/floor/prison/sterile_white, +/area/bosenmori/mountain/pilgrim) +"ylt" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/rmc_f90, +/obj/item/ammo_magazine/rifle/rmc_f90, +/obj/item/ammo_magazine/rifle/rmc_f90, +/obj/item/ammo_magazine/rifle/rmc_f90, +/turf/open/floor/almayer/plating, +/area/bosenmori/interior_regular/security_armory) +"ylv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/phone_base/colony_net{ + phone_category = "Bosenmori Site"; + phone_id = "Filtration"; + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/bosenmori/interior_glass/filtration) +"ylK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/glass/autoname{ + dir = 2; + req_one_access = "100;200" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/bosenmori/interior_glass/food_processing) +"ylT" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/ammo_magazine/rifle/rmc_f90/marksman/heap{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/ammo_magazine/rifle/rmc_f90/marksman{ + pixel_x = -5; + pixel_y = -7 + }, +/turf/open/floor/corsat, +/area/bosenmori/interior_heavy/secured_armory) + +(1,1,1) = {" +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +ofZ +ofZ +wer +wer +wer +ofZ +ofZ +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +nuv +nuv +nuv +nuv +"} +(2,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +cRX +cRX +cRX +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +gwF +gwF +gwF +gwF +gwF +gwF +gwF +gwF +gwF +gwF +gwF +gwF +gwF +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +iFx +iFx +piM +piM +piM +iFx +iFx +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +emr +emr +emr +emr +emr +emr +emr +emr +emr +bJY +nuv +nuv +nuv +nuv +"} +(3,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +bvS +bvS +cRX +cRX +cRX +cRX +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +uWi +uWi +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +vPy +vPy +cfe +cfe +cfe +cfe +cfe +cfe +cfe +cfe +cfe +cfe +cfe +cfe +cfe +cfe +cfe +cfe +cfe +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oCg +sUH +sUH +sUH +sUH +oIH +oIH +qkk +jEJ +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +xAv +los +iut +oIH +oIH +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +sUH +sUH +sUH +sUH +oCg +sUH +sUH +sUH +sUH +sUH +sUH +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +oCg +oCg +oCg +jxI +jxI +iFx +iFx +paC +paC +paC +iFx +iFx +oCg +oCg +oCg +sUH +sUH +oIH +oIH +oIH +oCg +oCg +oCg +oCg +emr +emr +uWi +uWi +emr +emr +emr +emr +emr +bJY +nuv +nuv +nuv +nuv +"} +(4,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +emr +emr +uWi +uWi +uWi +emr +bvS +uEW +bvS +cRX +cRX +cRX +cRX +cRX +cRX +cRX +emr +emr +emr +emr +emr +emr +emr +uWi +uWi +uWi +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +bKV +bKV +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +cfe +nLU +vPy +vPy +hTO +iMU +bKd +ecT +pEK +cfe +mvf +fJJ +cfe +ppr +mvf +mvf +srK +mvf +dmG +mvf +cfe +vPy +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oCg +sUH +sUH +sUH +sUH +sUH +oIH +oIH +jEJ +bDA +oEG +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +ggD +qza +oIH +oIH +oIH +sUH +sUH +sUH +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +oCg +sUH +sUH +vwc +sUH +sUH +sUH +oCg +sUH +sUH +sUH +jxp +sUH +sUH +oCg +oCg +oCg +oCg +oCg +oCg +xKd +xKd +xKd +xKd +kDo +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +vwc +sUH +sUH +rpF +sUH +sUH +sUH +jxI +jxI +xtY +kZf +paC +paC +paC +nVE +oCg +oCg +oCg +sUH +sUH +sUH +oCg +oIH +sUH +sUH +oCg +oCg +oCg +emr +uWi +uWi +kjz +kjz +emr +emr +emr +emr +bJY +nuv +nuv +nuv +nuv +"} +(5,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +uWi +uWi +uWi +bvS +bvS +bvS +bvS +cRX +cRX +cRX +cRX +cRX +cRX +cRX +emr +emr +emr +emr +uWi +uWi +uWi +uWi +uWi +uWi +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +gKB +gKB +pNb +pNb +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +nLU +nLU +nLU +cXO +nLU +vPy +vPy +hTO +mvf +kyg +kyg +kyg +pEb +kyg +jvb +cfe +cfe +mvf +kyg +lPJ +bwE +epd +mvf +cfe +vPy +vPy +nLU +nLU +nLU +hzn +hzn +hzn +hzn +oCg +oCg +oCg +sUH +jxp +sUH +sUH +sUH +oIH +oIH +jvx +tCY +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +nXM +wEw +los +iut +oIH +oIH +oIH +sUH +sUH +sUH +dwH +oCg +oCg +oCg +oCg +oCg +oCg +sUH +sUH +sUH +sUH +stw +sUH +sUH +sUH +oCg +oCg +oCg +sUH +sUH +sUH +sUH +sUH +oCg +oCg +oCg +oCg +oCg +rEQ +xKd +xKd +xKd +teO +gxb +sUH +sUH +sUH +sUH +sUH +oCg +oCg +sUH +jxp +sUH +sUH +sUH +sUH +oIH +oIH +sUH +sUH +lbD +ciT +xtY +kZf +paC +paC +paC +nVE +oIH +oIH +sUH +sUH +sUH +oCg +oCg +oCg +sUH +sUH +oCg +oCg +oCg +uWi +uWi +kjz +kjz +kjz +kjz +emr +emr +emr +bJY +nuv +nuv +nuv +nuv +"} +(6,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +emr +emr +uWi +uWi +uWi +bvS +tsx +bvS +bvS +bvS +bvS +cRX +cRX +cRX +cRX +cRX +cRX +emr +emr +emr +uWi +uWi +uWi +uWi +cai +bvS +uWi +uWi +emr +emr +cRX +cRX +emr +emr +emr +emr +emr +emr +emr +cRX +cRX +cRX +cRX +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +ftt +ftt +nLU +cfe +hzn +hzn +hzn +hzn +hzn +hzn +cfe +nLU +nLU +ftt +nLU +nLU +nLU +cXO +nLU +vPy +vPy +hTO +mvf +kyg +kyg +kyg +gKB +kyg +bOc +cfe +ppr +mvf +kyg +gXJ +oXW +nEA +mvf +cfe +jiF +vPy +gKB +nLU +nLU +hzn +hzn +hzn +hzn +oCg +oCg +oCg +sUH +sUH +vwc +sUH +gCy +sUH +sUH +oIH +jEJ +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +hhm +ggD +qza +oIH +oIH +oIH +oIH +sUH +vwc +sUH +oiZ +xKd +oCg +oCg +oCg +oCg +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +oCg +oCg +oCg +sUH +sUH +sUH +sUH +sUH +oCg +oCg +oCg +oCg +sUH +sUH +rEQ +teO +gxb +sUH +sUH +sUH +sUH +sUH +sUH +stw +sUH +sUH +sUH +sUH +sUH +sUH +sUH +oIH +oIH +oIH +oIH +oIH +jxp +sUH +sUH +kZf +paC +paC +paC +nVE +oIH +oIH +jxp +sUH +oIH +oCg +oCg +sUH +oIH +oCg +oCg +oCg +oCg +bvS +bvS +gWL +kjz +kjz +kjz +kjz +emr +emr +bJY +nuv +nuv +nuv +nuv +"} +(7,1,1) = {" +bJY +emr +emr +emr +emr +emr +cRX +emr +bvS +bvS +uWi +bvS +bvS +bvS +bvS +bvS +bvS +bvS +rvm +bvS +cRX +cRX +cRX +cRX +kjz +kjz +bvS +bvS +bvS +tsx +bvS +bvS +bvS +bvS +bvS +uWi +uWi +bvS +cRX +cRX +cRX +cRX +emr +emr +emr +emr +emr +dqY +dqY +bvS +bvS +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +nLU +nLU +nLU +cXO +nLU +vPy +vPy +hTO +oBJ +bNz +ffG +exn +cfe +kyg +kyg +cfe +cfe +wEM +kyg +cqW +asd +rQs +mvf +cfe +nLU +gKB +wsu +gKB +nLU +nLU +hzn +hzn +hzn +oCg +oCg +oCg +sUH +sUH +sUH +sUH +sUH +sUH +oIH +oIH +jEJ +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +ggD +qza +oIH +oIH +oIH +oIH +sUH +dwH +cJL +xKd +xKd +gxb +oCg +oCg +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +sUH +sUH +oCg +oCg +eFC +sUH +sUH +vwc +sUH +sUH +sUH +oCg +oCg +eFC +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +sUH +xtY +kZf +paC +paC +paC +nVE +oIH +oIH +oIH +oIH +oIH +oCg +oCg +sUH +oIH +oIH +oCg +oCg +oCg +emr +bvS +bvS +gWL +kjz +kjz +kjz +kjz +emr +bJY +nuv +nuv +nuv +nuv +"} +(8,1,1) = {" +bJY +emr +emr +emr +emr +cRX +cRX +cRX +cRX +bvS +uEW +bvS +kHo +kHo +uwm +oPH +kKw +uwm +uwm +kHo +cRX +cRX +cRX +kjz +kjz +kjz +kjz +bvS +bvS +bvS +bvS +bvS +dqY +dqY +dqY +bvS +bvS +bvS +bvS +cRX +cRX +cRX +cRX +emr +emr +bvS +dqY +dqY +dqY +tsx +tsx +bvS +emr +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +ftt +ftt +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +ftt +nLU +nLU +cXO +nLU +vPy +vPy +cfe +cfe +cfe +cfe +cfe +cfe +iFa +kyg +kyg +kyg +kyg +kyg +jhP +hfR +xOU +mvf +cfe +nLU +vPy +gKB +vPy +nLU +nLU +hzn +hzn +hzn +oCg +oCg +oCg +sUH +sUH +sUH +rpF +oIH +oIH +oIH +aNE +kjc +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +los +iut +oIH +oIH +oIH +oCg +oCg +xKd +xKd +xKd +gxb +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +oCg +sUH +sUH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +sUH +dwH +oCg +kDo +sUH +sUH +sUH +sUH +sUH +oCg +oCg +xKd +kDo +sUH +sUH +sUH +sUH +sUH +oIH +oIH +oIH +oIH +qkk +oIH +oIH +oIH +oIH +oIH +oIH +oIH +kme +kZf +paC +paC +paC +nVE +oIH +oCg +oIH +oIH +oIH +oCg +oCg +sUH +oIH +oIH +oCg +oCg +oCg +emr +emr +dqY +bvS +bvS +gWL +oHn +emr +emr +bJY +nuv +nuv +nuv +nuv +"} +(9,1,1) = {" +bJY +emr +uWi +uWi +uWi +cRX +bvS +bvS +cRX +cRX +bvS +kHo +kHo +bvS +hvA +rtR +hDa +rtR +odM +uHP +cRX +cRX +cRX +kjz +kjz +kjz +kjz +kjz +kjz +kjz +bvS +bvS +bvS +bvS +bvS +tsx +tsx +dqY +bvS +bvS +cRX +cRX +cRX +emr +bvS +uWi +bvS +dqY +bvS +bvS +uWi +uWi +emr +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +ftt +ftt +ftt +nLU +nLU +hzn +hzn +hzn +nLU +ftt +ftt +ftt +ftt +ftt +nLU +nLU +cXO +nLU +nLU +vPy +vPy +vPy +vPy +vPy +vPy +cfe +qqL +kyg +kyg +kyg +kyg +kyg +dxv +kyg +kyg +mvf +cfe +vPy +vPy +vPy +nLU +nLU +hzn +hzn +hzn +hzn +oCg +oCg +oCg +oCg +sUH +sUH +oIH +oIH +oIH +oIH +jEJ +ggD +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +nXM +wEw +qza +oIH +oIH +oIH +oIH +oCg +oCg +oCg +xKd +gxb +sUH +sUH +sUH +sUH +sUH +jxp +sUH +sUH +oCg +sUH +sUH +qkk +oIH +aNE +xBL +xBL +xBL +xBL +xBL +mez +oIH +oIH +oIH +rEQ +teO +gxb +sUH +sUH +rpF +sUH +sUH +sUH +rEQ +teO +gxb +sUH +sUH +sUH +sUH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +aNE +xBL +xBL +xBL +xBL +xBL +jxI +wvw +paC +paC +paC +nVE +oCg +oCg +oCg +sUH +oIH +rpF +oCg +sUH +oIH +oCg +oCg +oCg +oCg +emr +emr +dqY +dqY +dqY +bvS +bvS +emr +emr +bJY +nuv +nuv +nuv +nuv +"} +(10,1,1) = {" +bJY +emr +uWi +uWi +bvS +bvS +bvS +bvS +cRX +cRX +cRX +kHo +xsY +bvS +mpK +cvh +kvF +oVZ +kvF +rtR +fii +cRX +cRX +cRX +cRX +kjz +kjz +kjz +kjz +kjz +bvS +bvS +emr +cRX +bvS +bvS +tsx +dqY +dqY +bvS +bvS +emr +emr +uWi +uWi +uWi +bvS +bvS +bvS +uWi +uWi +uWi +emr +hzn +hzn +hzn +hzn +cfe +nLU +ftt +ftt +ftt +gKB +ftt +ftt +ftt +ftt +nLU +lgT +nLU +nLU +nLU +ftt +ftt +gKB +ftt +ftt +ftt +nLU +cfe +nLU +nLU +nLU +nLU +nLU +nLU +vPy +vPy +cfe +cfe +hTO +hTO +cfe +gKB +tTu +cfe +hTO +hTO +cfe +cfe +vPy +vPy +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +sUH +sUH +oIH +oIH +oIH +oIH +jEJ +xAv +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +los +iut +oIH +oIH +oIH +oIH +oCg +oCg +oCg +oCg +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +oCg +sUH +sUH +oIH +oIH +aNE +kjc +ggD +prH +xng +xng +ces +xlK +xBL +lTc +oIH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +aNE +xBL +xBL +kzX +prH +xng +xng +xng +xng +xTX +lBL +paC +paC +paC +nVE +oCg +oCg +oCg +sUH +oIH +sUH +sUH +sUH +oIH +oCg +oCg +oCg +oCg +emr +uWi +uWi +uWi +dqY +dqY +dqY +emr +emr +bJY +nuv +nuv +nuv +nuv +"} +(11,1,1) = {" +bJY +emr +uWi +bvS +bvS +tsx +bvS +cRX +cRX +cRX +uHP +kHo +bvS +bvS +bvS +siY +igT +kvF +kvF +bvS +bvS +cRX +cRX +cRX +cRX +cRX +bvS +fTd +djo +kjz +kjz +bvS +bvS +emr +cRX +bvS +bvS +bvS +dqY +dqY +tsx +bvS +uWi +uWi +uWi +uWi +cai +bvS +uWi +uWi +uWi +uWi +emr +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +ftt +gKB +gKB +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +nLU +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +vPy +vPy +enB +gON +mvf +mvf +kyg +kyg +mvf +mvf +fLZ +nUH +vPy +vPy +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +sUH +sUH +oIH +oIH +oIH +oIH +jEJ +ggD +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +qza +qkk +oIH +oIH +oIH +oCg +oCg +oCg +oCg +oCg +oCg +oCg +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +oIH +aNE +xBL +kjc +prH +xng +haP +iPA +iPA +fVh +xng +ces +qza +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +aNE +xBL +xBL +kzX +prH +xng +xng +haP +iPA +iPA +iPA +iPA +sdC +lBL +paC +paC +paC +nVE +jfF +mJO +vZf +sUH +sUH +oCg +oCg +oIH +oIH +sUH +oCg +oCg +oCg +oIH +uWi +uWi +uWi +uWi +emr +emr +emr +emr +bJY +nuv +nuv +nuv +nuv +"} +(12,1,1) = {" +bJY +emr +uWi +bvS +bvS +bvS +bvS +cRX +cRX +oLG +rtR +kHo +tsx +bvS +bvS +bvS +kvF +kvF +kvF +paI +bvS +kHo +cRX +cRX +cRX +cRX +bvS +kjz +kjz +kjz +kjz +bvS +bvS +emr +emr +uWi +uWi +bvS +bvS +dqY +dqY +tsx +bvS +uWi +uWi +uWi +bvS +bvS +uWi +uWi +lHe +aRt +hzn +cfe +hzn +hzn +nLU +nLU +ftt +ftt +ftt +gKB +ftt +ftt +ftt +ftt +ftt +ftt +ftt +gKB +gKB +ftt +ftt +ftt +ftt +ftt +ftt +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +nLU +nLU +kzd +gON +uBw +kyg +kyg +kyg +kyg +uBw +fLZ +yct +nLU +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +sUH +sUH +oIH +oIH +qkk +aNE +kjc +ggD +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +qza +oIH +oIH +oIH +oIH +oCg +oCg +oCg +oCg +oCg +oCg +sUH +sUH +sUH +sUH +oIH +oIH +oIH +oIH +oIH +oIH +jEJ +ggD +xFu +haP +iPA +iPA +iPA +iPA +iPA +iPA +irC +xlK +mez +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +qkk +oIH +oIH +aNE +xBL +xBL +xBL +xBL +xBL +kzX +prH +xng +xng +haP +iPA +iPA +iPA +iPA +iPA +iPA +iPA +sdC +lBL +paC +paC +paC +nVE +lBL +ubU +nVE +sUH +sUH +oCg +oCg +oIH +oIH +sUH +sUH +oIH +oIH +oIH +oIH +uWi +uWi +emr +emr +emr +emr +emr +bJY +nuv +nuv +nuv +nuv +"} +(13,1,1) = {" +bJY +emr +uWi +bvS +bvS +uEW +bvS +cRX +cRX +rtR +rtR +bPs +bvS +bvS +bvS +bvS +bvS +bvS +bvS +bvS +uEW +bPs +dDa +cDQ +aLv +aLv +aAp +uEW +kjz +kjz +kjz +bvS +bvS +emr +emr +uWi +uWi +uWi +bvS +bvS +tsx +bvS +bvS +bvS +tsx +uWi +bvS +bvS +uWi +uWi +nbZ +vPy +lgT +bfv +nLU +nLU +nLU +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +gKB +ftt +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +cfe +nLU +nLU +nLU +ftt +ftt +ftt +olQ +aMe +bxO +pgi +sma +ljN +aMe +bxO +pgi +yct +hzn +hzn +nLU +nLU +cfe +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +sUH +sUH +oIH +oIH +oIH +jEJ +ggD +ggD +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +qza +oIH +oIH +oIH +oCg +oCg +oCg +oCg +oCg +oCg +sUH +sUH +sUH +sUH +oIH +oIH +oIH +oIH +oIH +aNE +xBL +kjc +ggD +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +fVh +ces +xlK +xBL +xBL +xBL +xBL +xBL +xBL +xBL +xBL +xBL +xBL +xBL +kzX +prH +xng +xng +xng +xng +xng +haP +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +sdC +lBL +paC +paC +paC +nVE +lBL +ubU +nVE +sUH +sUH +oCg +oCg +oCg +sUH +sUH +sUH +oIH +oIH +oIH +oIH +oIH +uWi +emr +emr +emr +emr +emr +bJY +nuv +nuv +nuv +nuv +"} +(14,1,1) = {" +bJY +emr +cai +tsx +bvS +bvS +cRX +cRX +rtR +dKn +rtR +bPs +bvS +bvS +sWn +bvS +uEW +bvS +tsx +bvS +bvS +bPs +oLG +uHP +skP +edN +aLv +bvS +kjz +kjz +kjz +bvS +bvS +emr +emr +emr +emr +emr +uWi +uWi +bvS +bvS +dqY +dqY +bvS +tsx +bvS +bvS +uWi +lHe +sim +vPy +vPy +bfv +nLU +ftt +ftt +ftt +ftt +ftt +ftt +ftt +nLU +nLU +nLU +nLU +nLU +nLU +lgT +ftt +ftt +ftt +ftt +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +nLU +nLU +lgT +ftt +ftt +ftt +ftt +ftt +ose +hmp +hmp +hmp +kbU +ose +hmp +oOT +hmp +swC +hzn +hzn +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +sUH +oIH +oIH +oIH +oIH +jEJ +ggD +prH +haP +iPA +iPA +iPA +iPA +iPA +iPA +nXM +wEw +qza +oIH +oIH +oIH +oCg +oCg +oCg +oCg +oCg +sUH +sUH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +aNE +kjc +ggD +ggD +cKK +haP +iPA +iPA +iPA +bIE +uhr +uhr +uhr +pNf +fVh +xng +xng +xng +xng +xng +xng +xng +xng +xng +xng +xng +xng +xng +haP +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +sdC +lBL +paC +paC +paC +nVE +lBL +ubU +nVE +sUH +oIH +oCg +oCg +oCg +sUH +vwc +sUH +sUH +sUH +sUH +sUH +oIH +oIH +oCg +oCg +oCg +oCg +oCg +bJY +nuv +nuv +nuv +nuv +"} +(15,1,1) = {" +bJY +cRX +uWi +bvS +bvS +bvS +kHo +uHP +oZA +kvF +rtR +vhX +uHP +bvS +uEW +bvS +kTP +kTP +eCE +bvS +uHP +qKl +cDQ +siY +dKn +cDQ +edN +aAp +bvS +kjz +kjz +kjz +bvS +cRX +cRX +emr +emr +emr +emr +uWi +uWi +bvS +dqY +dqY +dqY +bvS +bvS +bvS +uWi +nbZ +vPy +vPy +vPy +nbc +nLU +ftt +ftt +ftt +ftt +ftt +ftt +nLU +nLU +hzn +hzn +cfe +hzn +hzn +nLU +nLU +ftt +ftt +ftt +nLU +hzn +hzn +hzn +cfe +hzn +nLU +nLU +nLU +ftt +ftt +ftt +ftt +gKB +cHA +cHA +ftt +ftt +ftt +ftt +ftt +ftt +ftt +rNd +gPk +nLU +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oCg +oCg +oIH +oIH +oIH +jEJ +ggD +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +los +iut +oIH +oIH +oCg +oCg +oCg +oCg +oCg +oCg +oIH +oIH +oIH +oIH +oIH +oIH +aNE +xBL +xBL +kjc +ggD +cKK +xng +haP +iPA +iPA +iPA +iPA +jzE +ewF +ewF +ewF +wtZ +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +sdC +lBL +paC +paC +paC +nVE +ivR +mJO +nAI +oIH +oIH +oIH +oCg +oCg +oCg +sUH +sUH +sUH +sUH +lVN +sUH +sUH +sUH +sUH +oCg +oCg +oCg +oCg +bJY +nuv +nuv +nuv +nuv +"} +(16,1,1) = {" +bJY +cRX +uWi +bvS +bvS +bvS +kHo +oLG +siY +siY +uHP +oJm +uHP +siY +bvS +kTP +kTP +vXP +kTP +bvS +uHP +sjC +uHP +kvF +kvF +uHP +aLv +aAp +bvS +fTd +kjz +kjz +bvS +bvS +cRX +emr +emr +emr +emr +emr +emr +cRX +bvS +bvS +bvS +cRX +cRX +bvS +uWi +nbZ +vPy +vPy +vPy +nbc +nLU +ftt +ftt +gKB +ftt +ftt +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +nLU +nLU +hzn +hzn +nLU +nLU +nLU +nLU +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +iFT +ftt +ftt +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oCg +oCg +oIH +oIH +aNE +kjc +xAv +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +qza +oIH +oIH +oCg +oCg +oCg +oCg +oCg +oCg +oIH +oIH +oIH +oIH +oIH +qkk +aNE +kjc +ggD +prH +xng +ieA +haP +iPA +iPA +iPA +iPA +iPA +iPA +jzE +ewF +ewF +ewF +aHW +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +nXM +ssy +ssy +ssy +lRr +lBL +paC +paC +paC +nVE +oCg +oCg +oCg +oIH +oIH +hJw +oCg +oCg +oIH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +oCg +oCg +oCg +bJY +nuv +nuv +nuv +nuv +"} +(17,1,1) = {" +bJY +cRX +uWi +bvS +bvS +bvS +kHo +gMt +siY +bvS +siY +aZp +siY +bvS +bvS +kTP +bvS +cJi +pmX +bvS +siY +aBf +siY +kvF +bEX +bvS +kHo +aAp +tsx +kjz +kjz +kjz +kjz +bvS +cRX +cRX +cRX +emr +emr +emr +cRX +cRX +cRX +bvS +bvS +cRX +cRX +bvS +uWi +nbZ +vPy +vPy +vPy +nbc +nLU +ftt +ftt +gKB +ftt +ftt +nLU +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +nLU +hzn +hzn +nLU +nLU +nLU +ftt +ftt +ftt +ftt +ftt +fhI +iwu +jhS +iwu +wNr +wNr +wNr +wNr +aVR +wNr +wNr +wNr +dya +olS +ftt +ftt +lgT +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oCg +oCg +oIH +aNE +kjc +ggD +prH +haP +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +qza +oIH +oIH +oCg +oCg +oCg +oCg +oCg +oIH +oIH +oIH +oIH +aNE +xBL +xBL +kjc +prH +xng +haP +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +jzE +ewF +ewF +ewF +hyr +ssy +ssy +ssy +ssy +ssy +ssy +ssy +oEG +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +nXM +ssy +ssy +wEw +los +xNP +xNP +jxI +wvw +paC +paC +paC +nVE +oCg +oCg +oCg +hJw +hJw +hJw +hJw +oIH +oIH +oCg +sUH +sUH +sUH +sUH +sUH +vwc +sUH +oIH +oCg +oCg +oCg +oCg +bJY +nuv +nuv +nuv +nuv +"} +(18,1,1) = {" +bJY +cRX +uWi +bvS +bvS +bvS +kHo +gMt +bvS +kvF +kvF +ciu +bvS +bvS +oZL +kTP +jAH +bfu +gRW +bvS +siY +loH +kvF +kvF +siY +bvS +kHo +emr +emr +emr +kjz +kjz +kjz +bvS +bvS +bvS +cRX +emr +emr +emr +cRX +cRX +cRX +bvS +bvS +cRX +cRX +bvS +uWi +jdF +knj +vPy +lgT +bfv +nLU +ftt +ftt +gKB +ftt +ftt +nLU +hzn +hzn +hzn +hzn +hzn +vPy +vPy +nLU +ftt +ftt +ftt +nLU +hzn +nLU +nLU +nLU +ftt +ftt +ftt +ftt +ftt +fhI +vVf +gzV +lgT +nLU +nLU +hzn +vPy +vPy +vPy +vPy +hzn +ybK +lgT +kds +ftt +ftt +ftt +nLU +nLU +cfe +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oCg +oCg +oIH +jEJ +ggD +prH +haP +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +qza +oIH +oIH +oIH +oCg +oCg +oCg +oCg +oIH +oIH +oIH +aNE +kjc +prH +xng +xng +haP +iPA +iPA +iPA +iPA +iPA +iPA +iPA +nXM +ssy +ssy +ssy +pYs +xBN +oDg +oDg +gWk +xNP +xNP +xNP +xNP +xNP +xNP +tCY +voT +iPA +iPA +iPA +iPA +iPA +iPA +nXM +ssy +ssy +ssy +ssy +ssy +ssy +ssy +ssy +ssy +wEw +los +xNP +xNP +iut +oIH +oIH +kme +kZf +paC +paC +paC +nVE +oCg +oCg +oIH +hJw +ume +hJw +hJw +hJw +oCg +oCg +oCg +sUH +sUH +sUH +sUH +sUH +oIH +oIH +oIH +oCg +sUH +oCg +bJY +nuv +nuv +nuv +nuv +"} +(19,1,1) = {" +bJY +cRX +uWi +uWi +bvS +bvS +kHo +gMt +eCE +bvS +siY +aBf +bvS +bvS +kTP +azv +jAH +iCm +bvS +uEW +kvF +aBf +kvF +siY +bvS +tsx +kHo +emr +emr +emr +emr +kjz +kjz +kjz +bvS +bvS +cRX +cRX +emr +emr +emr +cRX +cRX +bvS +dqY +bvS +bvS +bvS +uWi +uWi +jdF +knj +hzn +cfe +nLU +nLU +ftt +ftt +ftt +ftt +nLU +hzn +hzn +hzn +hzn +vPy +vPy +vPy +nLU +nLU +nLU +nLU +nLU +nLU +nLU +nLU +ftt +ftt +ftt +gKB +ftt +fhI +vVf +ftt +nLU +nLU +hzn +hzn +hzn +vPy +nLU +nLU +vPy +hzn +cfe +pZk +yff +ftt +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oCg +oCg +oIH +jEJ +prH +haP +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +nXM +wEw +qza +oIH +tEf +oIH +oIH +oCg +oCg +oIH +oIH +aNE +xBL +kjc +ggD +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +nXM +ssy +ssy +wEw +los +xNP +xNP +xNP +uwB +oDg +oDg +vMJ +qkk +oIH +oIH +oIH +oIH +oIH +jEJ +bDA +ssy +ssy +ssy +ssy +ssy +ssy +wEw +los +xNP +xNP +xNP +xNP +xNP +xNP +xNP +xNP +xNP +iut +oIH +qkk +oIH +tEf +oIH +kme +kZf +paC +paC +paC +nVE +oIH +oIH +hJw +hJw +ume +ume +hJw +hJw +oCg +oCg +oCg +oCg +sUH +sUH +oIH +oIH +daX +sUH +sUH +sUH +sUH +oCg +bJY +nuv +nuv +nuv +nuv +"} +(20,1,1) = {" +bJY +cRX +cRX +uWi +bvS +bvS +kHo +bvS +tsx +bvS +uHP +kHo +bvS +bvS +kTP +vXP +jAH +kTP +bvS +sIW +rtR +sjC +acC +siY +eCE +uEW +kHo +emr +emr +emr +emr +kjz +kjz +kjz +bvS +dqY +dqY +cRX +cRX +emr +uWi +uWi +bvS +bvS +bvS +dqY +dqY +bvS +uWi +uWi +uWi +jdF +hzn +hzn +hzn +nLU +ftt +ftt +gKB +ftt +nLU +hzn +hzn +hzn +hzn +kFF +vPy +vPy +nLU +nLU +nLU +hzn +nLU +nLU +ftt +ftt +ftt +ftt +gKB +ftt +ftt +jgI +ftt +nLU +nLU +cfe +hzn +hzn +hzn +nLU +nLU +nLU +nLU +hzn +hzn +hzn +yff +ftt +gKB +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oCg +xfF +oIH +jEJ +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +los +iut +oIH +oIH +oIH +oIH +oIH +oCg +oIH +aNE +kjc +prH +xng +xng +haP +iPA +iPA +iPA +iPA +nXM +ssy +ssy +wEw +los +xNP +xNP +nKM +sUH +sUH +sUH +dlH +oDg +oDg +ddh +sUH +sUH +sUH +sUH +sUH +oIH +jvx +xNP +xNP +xNP +xNP +xNP +xNP +xNP +xNP +iut +qkk +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +sUH +sUH +kZf +paC +paC +paC +nVE +oIH +hJw +hJw +ume +ume +ume +ume +hJw +sUH +sUH +sUH +sUH +oCg +sUH +sUH +sUH +sUH +sUH +rpF +sUH +oCg +oCg +bJY +bJY +bJY +bJY +bJY +"} +(21,1,1) = {" +bJY +emr +cRX +cRX +bvS +bvS +kHo +hak +bvS +kvF +rtR +kHo +uEW +bvS +kTP +kTP +kTP +kTP +bvS +kvF +rtR +qKl +rtR +lNj +rvm +bvS +kHo +cRX +cRX +emr +emr +emr +kjz +kjz +bvS +dqY +dqY +dqY +cRX +cRX +uWi +bvS +bvS +bvS +tsx +dqY +dqY +dqY +bvS +uWi +uWi +uWi +hzn +hzn +hzn +nLU +ftt +ftt +ftt +ftt +nLU +hzn +hzn +hzn +hzn +hzn +vPy +vPy +vPy +nLU +nLU +nLU +nLU +ftt +ftt +ftt +ftt +ftt +gKB +ftt +fhI +vVf +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +yff +ftt +gKB +ftt +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oCg +oCg +oIH +jEJ +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +qza +oCg +oCg +oIH +oIH +oIH +oIH +oIH +oIH +jEJ +prH +haP +iPA +iPA +iPA +iPA +iPA +iPA +nXM +wEw +los +xNP +xNP +iut +sUH +sUH +sUH +sUH +sUH +sUH +rAY +oDg +oDg +pkJ +sUH +sUH +sUH +jxp +sUH +sUH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +sUH +sUH +sUH +sUH +sUH +iPO +oIH +oIH +oIH +sUH +sUH +sUH +sUH +xtY +kZf +paC +paC +paC +nVE +hJw +hJw +ume +ume +ume +ume +ume +hJw +sUH +sUH +lVN +sUH +sUH +sUH +sUH +sUH +sUH +oIH +oIH +vwc +sUH +oCg +oCg +oCg +oCg +oCg +fqJ +"} +(22,1,1) = {" +bJY +emr +cRX +cRX +bvS +bvS +kHo +kHo +rvm +uHP +skP +xsm +cDQ +bvS +bvS +kTP +vXP +bvS +bvS +kvF +rtR +bPs +uHP +bvS +bvS +bvS +cRX +cRX +cRX +cRX +emr +emr +kjz +kjz +bvS +bvS +dqY +dqY +bvS +bvS +bvS +bvS +dqY +bvS +bvS +bvS +bvS +bvS +bvS +bvS +uWi +uWi +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +nLU +nLU +cfe +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +fhI +iwu +jhS +iwu +iwu +vVf +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +yff +ftt +ftt +ftt +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oCg +oCg +oIH +jEJ +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +qza +oCg +oCg +oCg +oIH +oIH +oIH +oIH +oIH +jEJ +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +los +iut +sUH +sUH +sUH +sUH +sUH +sUH +sUH +gnM +gnM +pvx +oDg +oDg +rjz +woF +woF +sUH +sUH +sUH +sUH +dwH +cJL +cJL +eFC +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +jxp +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +xtY +kZf +paC +paC +paC +nVE +hJw +hJw +ume +ume +ume +hJw +hJw +hJw +oCg +oIH +oIH +oIH +sUH +sUH +sUH +sUH +oIH +oIH +oIH +oIH +sUH +sUH +oCg +oCg +oCg +oCg +fqJ +"} +(23,1,1) = {" +bJY +emr +cRX +cRX +bvS +bvS +aAp +aAp +bvS +bvS +uHP +xsm +rtR +reG +bvS +bvS +bvS +bvS +wUC +nut +rtR +bPs +oLG +bvS +bvS +cRX +cRX +cRX +cRX +cRX +emr +emr +kjz +kjz +kjz +bvS +uWi +uWi +uWi +dqY +dqY +dqY +dqY +bvS +uWi +uWi +bvS +bvS +bvS +emr +emr +emr +hzn +hzn +hzn +hzn +pNb +pNb +nLU +ftt +ftt +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +cfe +nLU +ftt +ftt +gKB +gKB +rNd +ftt +ftt +ftt +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +yff +ftt +gKB +ftt +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oCg +oCg +oIH +jEJ +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +qza +oCg +oCg +oIH +oIH +oIH +oIH +aNE +xBL +kjc +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +qza +sUH +sUH +sUH +oIH +oIH +oIH +oIH +sUH +oDg +oDg +kan +oDg +oDg +dbJ +woF +woF +oIH +sUH +ism +ism +ism +xKd +xKd +kDo +sUH +vwc +ism +ism +ism +sUH +sUH +sUH +sUH +sUH +ism +ism +ism +sUH +vwc +sUH +sUH +sUH +ism +ism +ism +onR +kZf +paC +paC +paC +nVE +onR +ism +ism +ism +oCg +hJw +hJw +sUH +oCg +oIH +jxI +oIH +oIH +dLQ +sUH +sUH +oIH +oIH +jxI +oIH +oIH +sUH +sUH +oCg +oCg +oCg +fqJ +"} +(24,1,1) = {" +bJY +emr +emr +cRX +bvS +bvS +bvS +hxX +aLv +bvS +tsx +bvS +rtR +kvF +bvS +paI +bvS +bvS +kvF +tJy +rtR +kHo +rtR +tsx +cRX +cRX +cRX +cRX +cRX +cRX +emr +emr +kjz +kjz +kjz +bvS +uWi +uWi +uWi +dqY +dqY +dqY +bvS +uWi +uWi +uWi +uWi +bvS +bvS +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +cfe +wls +ftt +ftt +ftt +nLU +nLU +nLU +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +gKB +gKB +rNd +ftt +nLU +nLU +nLU +hzn +cfe +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +yff +ftt +ftt +ftt +nLU +nLU +nLU +cfe +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oCg +oCg +oIH +jEJ +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +xlK +mez +oIH +oIH +qkk +oIH +aNE +kjc +prH +xng +haP +iPA +iPA +iPA +iPA +nXM +ssy +ssy +wEw +qza +sUH +sUH +oIH +oIH +hJw +hJw +oIH +sUH +mVR +oDg +kan +oDg +oDg +wcM +woF +oIH +oIH +oCg +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +ism +onR +cLe +cLe +cLe +cLe +cLe +onR +ism +ism +ism +hJw +hJw +sUH +sUH +oIH +jxI +jxI +jxI +oIH +sUH +sUH +sUH +oIH +jxI +jxI +jxI +oIH +sUH +sUH +oCg +oCg +oCg +fqJ +"} +(25,1,1) = {" +bJY +emr +emr +cRX +bvS +uEW +bvS +hxX +edN +dKn +bvS +pOC +bvS +kvF +siY +bvS +tsx +uEW +gMt +gKG +vkA +kHo +rtR +bvS +cRX +cRX +cRX +cRX +cRX +cRX +emr +cRX +kjz +kjz +kjz +bvS +bvS +uWi +uWi +bvS +bvS +bvS +emr +cRX +cRX +uWi +uWi +bvS +cai +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +ftt +ftt +ftt +nLU +nLU +nLU +nLU +nLU +nLU +nLU +ftt +ftt +fhI +jhS +iwu +vVf +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +jgI +ftt +ftt +nLU +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oCg +oCg +oIH +jEJ +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +fVh +ces +xlK +xBL +xBL +xBL +xBL +kjc +prH +haP +iPA +iPA +iPA +iPA +iPA +nXM +wEw +los +xNP +xNP +iut +sUH +sUH +oIH +hJw +hJw +hJw +oIH +oIH +sUH +sUH +nVh +sTD +gcf +oJW +woF +oIH +sUH +gzZ +ism +ism +ism +eVQ +eVQ +eVQ +eVQ +eVQ +ism +ism +ism +eVQ +eVQ +eVQ +eVQ +eVQ +ism +ism +ism +eVQ +eVQ +eVQ +eVQ +eVQ +ism +ism +ism +onR +jMi +jMi +jMi +jMi +jMi +onR +ism +ism +ism +oCg +sUH +sUH +tEf +oIH +oIH +jxI +oIH +oIH +sUH +sUH +sUH +oIH +oIH +jxI +oIH +oIH +sUH +oIH +oIH +oCg +oCg +fqJ +"} +(26,1,1) = {" +bJY +emr +emr +cRX +cRX +bvS +bvS +bvS +kHo +aLv +aLv +bvS +bvS +uHP +siY +bvS +bvS +bvS +tsx +rtR +ceN +kHo +kHo +cRX +cRX +cRX +cRX +cRX +cRX +cRX +emr +cRX +kjz +kjz +kjz +kjz +bvS +bvS +dqY +bvS +bvS +uWi +emr +cRX +cRX +uWi +bvS +bvS +cRX +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +ftt +ftt +ftt +ftt +nLU +lgT +nLU +nLU +nLU +ftt +ftt +ftt +rNd +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +rNd +ftt +nLU +nLU +hzn +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oCg +oCg +qkk +jEJ +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +fVh +xng +xng +xng +xng +xng +xng +haP +iPA +iPA +iPA +iPA +iPA +iPA +irC +los +iut +oIH +sUH +sUH +sUH +sUH +oIH +hJw +hJw +hJw +hJw +oIH +oIH +sUH +oIH +woF +woF +woF +oIH +oIH +sUH +gzZ +hIk +eVQ +eVQ +eVQ +eVQ +eVQ +eVQ +eVQ +eVQ +iXJ +eVQ +eVQ +eVQ +eVQ +eVQ +eVQ +eVQ +hIk +eVQ +eVQ +eVQ +eVQ +eVQ +eVQ +eVQ +hIk +eVQ +iXJ +jMi +jMi +jMi +jMi +jMi +iXJ +eVQ +wzk +gzZ +gzZ +ohX +ohX +sUH +oIH +oIH +oIH +oIH +oCg +sUH +sUH +oCg +oCg +oIH +oIH +oIH +sUH +sUH +oIH +hJw +oCg +oCg +fqJ +"} +(27,1,1) = {" +bJY +emr +emr +cRX +cRX +bvS +tsx +bvS +uWi +uWi +hxX +edN +kHo +wFV +rtR +rtR +rtR +bvS +bvS +bvS +kHo +kHo +bvS +cRX +cRX +cRX +cRX +cRX +cRX +cRX +emr +cRX +emr +kjz +kjz +kjz +tsx +bvS +dqY +dqY +bvS +emr +emr +emr +cRX +cRX +bvS +cRX +cRX +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +rPX +gKB +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +gKB +gKB +kIa +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +lQY +ftt +rNd +ftt +nLU +cfe +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oIH +oIH +oIH +jEJ +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +nXM +ssy +wEw +qza +oIH +oIH +sUH +sUH +sUH +sUH +oIH +hJw +hJw +hJw +hJw +hJw +oIH +sUH +oIH +woF +woF +woF +oIH +vwc +sUH +czP +eVQ +eVQ +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +eVQ +eVQ +eVQ +eVQ +eVQ +ohX +sUH +sUH +oCg +oCg +oIH +oCg +oCg +sUH +sUH +oCg +oCg +sUH +sUH +sUH +oCg +oIH +hJw +hJw +oCg +fqJ +"} +(28,1,1) = {" +bJY +emr +emr +cRX +cRX +cRX +bvS +bvS +bvS +rvm +uWi +hxX +kHo +kHo +kHo +kHo +kHo +kHo +kHo +kHo +kHo +bvS +bvS +bvS +cRX +cRX +cRX +cRX +cRX +emr +emr +cRX +emr +kjz +djo +kjz +bvS +bvS +dqY +dqY +emr +emr +emr +emr +cRX +cRX +cRX +cRX +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +gKB +dcS +iwu +iwu +iwu +iwu +iwu +iwu +iwu +jhS +iwu +dya +dGa +ftt +nLU +pNb +cfe +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +whf +acS +hzn +hzn +hzn +hzn +hzn +hzn +hzn +pNb +ftt +rNd +ftt +lgT +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +oIH +oIH +oIH +jEJ +bDA +oEG +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +nXM +wEw +los +xNP +iut +oIH +qkk +oIH +sUH +sUH +sUH +oIH +oIH +hJw +hJw +hJw +oIH +oIH +oIH +oIH +woF +woF +oIH +oIH +sUH +oCg +czP +iXJ +eVQ +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +sLk +sLk +sLk +eVQ +eVQ +ohX +sUH +oCg +oCg +oCg +oCg +oCg +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +oCg +oCg +oCg +hJw +hJw +fqJ +"} +(29,1,1) = {" +bJY +emr +emr +emr +cRX +cRX +bvS +uWi +bvS +bvS +bvS +uEW +emr +uWi +uWi +uWi +bvS +bvS +bvS +bvS +bvS +bvS +uEW +bvS +tsx +cRX +cRX +cRX +cRX +emr +emr +cRX +emr +emr +kjz +kjz +kjz +bvS +dqY +dqY +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +ftt +ftt +nLU +lgT +nLU +nLU +ftt +ftt +ftt +ftt +iFT +nLU +nLU +pNb +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +aTV +ftt +ftt +acS +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +rNd +ftt +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +oCg +oCg +sUH +oIH +oIH +jEJ +ggD +voT +iPA +iPA +iPA +iPA +iPA +iPA +nXM +ssy +ssy +ssy +ssy +ssy +oEG +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +los +iut +sUH +sUH +oIH +oIH +oIH +sUH +vwc +sUH +sUH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +oIH +woF +woF +oIH +sUH +sUH +oCg +czP +iXJ +eVQ +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +sLk +sLk +sLk +sLk +eVQ +iXJ +sUH +sUH +oCg +oCg +oIH +sUH +sUH +sUH +oIH +oIH +sUH +sUH +sUH +oCg +oCg +oCg +hJw +hJw +oCg +fqJ +"} +(30,1,1) = {" +bJY +emr +emr +emr +cRX +cRX +bvS +bvS +uWi +bvS +uWi +bvS +emr +emr +emr +uWi +uWi +bvS +tsx +bvS +bvS +uWi +uWi +uWi +bvS +bvS +cRX +cRX +cRX +emr +emr +emr +cRX +cRX +kjz +kjz +kjz +bvS +cai +bvS +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +ftt +ftt +nLU +nLU +nLU +nLU +nLU +nLU +nLU +ftt +ftt +rNd +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +ftt +acS +ftt +ftt +hzn +hzn +hzn +hzn +hzn +cfe +lgT +ftt +fUT +ftt +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +dez +dez +dez +dez +aaM +ctd +ctd +xeq +ggD +bDA +oEG +iPA +iPA +iPA +iPA +nXM +wEw +jDS +aGL +aGL +aGL +mdA +bDA +oEG +iPA +iPA +iPA +iPA +iPA +iPA +irC +qza +oIH +sUH +sUH +sUH +dwH +eFC +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +sUH +oIH +oIH +woF +woF +woF +oCg +sUH +sUH +sUH +czP +iXJ +eVQ +jMi +jMi +jMi +aVE +hBb +hBb +hBb +hBb +hBb +hBb +hBb +hBb +hBb +hBb +hBb +hBb +hBb +hBb +hBb +hBb +hBb +hBb +hBb +hBb +hBb +hBb +hBb +onR +trA +jMi +jMi +jMi +sLk +sLk +sLk +sLk +eVQ +iXJ +czZ +czZ +czZ +czZ +czZ +czZ +czZ +czZ +czZ +oIH +oIH +sUH +sUH +sUH +oCg +oCg +oCg +uEH +oCg +fqJ +"} +(31,1,1) = {" +bJY +emr +emr +emr +cRX +emr +bvS +bvS +bvS +uWi +uWi +bvS +cRX +emr +emr +emr +emr +emr +bvS +bvS +bvS +bvS +uWi +uWi +uWi +bvS +cRX +cRX +cRX +emr +emr +emr +cRX +cRX +kjz +kjz +kjz +bvS +bvS +tsx +bvS +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +nLU +ftt +ftt +ftt +ftt +ftt +nLU +nLU +nLU +nLU +cfe +hzn +nLU +nLU +nLU +ftt +jgI +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +acS +ftt +xrX +ftt +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +fUT +ftt +ftt +ftt +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +dez +dez +dez +aaM +uvq +aaM +ctd +sAk +tXd +ggD +voT +iPA +iPA +iPA +iPA +irC +jDS +vcr +bcT +bcT +ihJ +mjb +mdA +bDA +oEG +iPA +iPA +iPA +iPA +iPA +irC +eOw +ctd +aaM +aaM +iPz +sRa +sRa +jEv +pBa +aaM +aaM +aaM +aaM +aaM +aaM +aaM +ctd +ctd +jgA +jgA +woF +oCg +oCg +oCg +sUH +cPd +iXJ +eVQ +jMi +jMi +jMi +whM +vpp +lIu +xXb +xsn +sCP +lIu +xXb +xsn +sCP +lIu +xXb +xsn +sCP +lIu +xXb +xsn +sCP +lIu +xXb +xsn +sCP +lIu +vpp +irz +pXi +jMi +jMi +jMi +sLk +sLk +sLk +eVQ +eVQ +czZ +czZ +czZ +czZ +czZ +czZ +czZ +czZ +czZ +czZ +czZ +oIH +oIH +sUH +sUH +oCg +oCg +oCg +oCg +oCg +fqJ +"} +(32,1,1) = {" +bJY +emr +emr +emr +emr +emr +uWi +uWi +uWi +uWi +bvS +tsx +cRX +cRX +emr +emr +emr +emr +emr +emr +bvS +bvS +uWi +uWi +uWi +bvS +bvS +cRX +cRX +emr +emr +emr +cRX +emr +bvS +kjz +kjz +bvS +bvS +bvS +bvS +bvS +emr +emr +emr +emr +emr +emr +emr +emr +emr +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +ftt +nLU +nLU +nLU +nLU +nLU +hzn +hzn +wmS +nhN +nLU +nLU +yff +ftt +ftt +ftt +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +ftt +whf +ftt +aTV +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +rNd +ftt +ftt +ftt +nLU +cfe +hzn +hzn +hzn +hzn +hzn +hzn +hzn +dez +dez +dez +aaM +aaM +aaM +aaM +ctd +sAk +tXd +voT +iPA +iPA +iPA +iPA +irC +jxE +cxM +xzF +iad +fbZ +bcT +dHG +tDf +bDA +oEG +iPA +iPA +iPA +nXM +wEw +eOw +ctd +aaM +aaM +pjY +sRa +sRa +mxw +bIn +aaM +aaM +aaM +uvq +aaM +aaM +aaM +ctd +ctd +jgA +jgA +jgA +dez +dez +dez +gzZ +eVQ +iXJ +eVQ +jMi +jMi +jMi +whM +wUU +vpp +uOp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +uOp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +uOp +vpp +uyt +irz +pXi +jMi +jMi +jMi +sLk +sLk +eVQ +eVQ +czZ +czZ +vLm +bWn +ePV +ykw +oKG +riN +czZ +czZ +czZ +czZ +czZ +oIH +sUH +sUH +oIH +oCg +oCg +oCg +oCg +fqJ +"} +(33,1,1) = {" +bJY +emr +emr +emr +emr +uWi +uWi +uWi +uWi +bvS +bvS +tsx +emr +cRX +cRX +cRX +emr +emr +emr +emr +emr +emr +emr +uWi +uWi +uWi +emr +cRX +cRX +emr +emr +emr +emr +emr +bvS +kjz +kjz +kjz +bvS +tsx +tsx +bvS +emr +emr +emr +emr +emr +emr +emr +emr +hzn +hzn +hzn +hzn +cfe +lgT +ftt +ftt +ftt +lgT +nLU +nLU +nLU +nLU +vPy +vPy +vPy +lql +vPy +lVp +wmS +mWw +ewO +ftt +ftt +ftt +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +aTV +acS +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +jgI +ftt +gKB +ftt +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +dez +dez +dez +aaM +tCc +aaM +aaM +aaM +ctd +xeq +bDA +oEG +iPA +iPA +nXM +ljd +jxE +cxM +bcT +bcT +bcT +bcT +mjb +mdA +ggD +voT +iPA +iPA +nXM +ljd +ggD +eOw +ctd +aaM +aaM +pjY +mxw +bIn +eRn +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +ctd +saZ +jgA +jgA +jgA +ctd +dez +dez +gzZ +eVQ +iXJ +eVQ +jMi +jMi +jMi +whM +top +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +tnF +vpp +ycG +irz +pXi +jMi +jMi +jMi +onR +sLk +eVQ +czZ +czZ +czZ +oBy +qVM +efx +bXq +qWv +rYn +ikp +xzA +cQF +xjA +czZ +czZ +sUH +jxp +oIH +oCg +oCg +oCg +oCg +fqJ +"} +(34,1,1) = {" +bJY +emr +emr +emr +emr +emr +bvS +bvS +bvS +bvS +bvS +bvS +bvS +bvS +cRX +cRX +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +cRX +cRX +tsx +kjz +kjz +kjz +bvS +bvS +bvS +bvS +bvS +emr +emr +emr +emr +emr +emr +emr +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +nLU +cfe +nLU +hzn +hzn +vPy +vPy +vPy +vPy +vPy +vPy +nLU +uiU +yff +nLU +ftt +ftt +oxk +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +pZk +yff +ftt +gKB +ftt +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +dez +dez +aaM +aaM +aaM +aaM +qcE +aaM +ctd +hqa +iNt +sbS +spl +spl +aXe +mno +jOV +cxM +bcT +cZP +tzo +aSK +jMb +dHG +ggD +bDA +oEG +nXM +wEw +ggD +wcw +bFx +aaM +aaM +iPz +rVA +dPi +eRn +eRn +eRn +hFI +aaM +aaM +aaM +aaM +aaM +aaM +ctd +ctd +jgA +jgA +ctd +ctd +dez +dez +gzZ +eVQ +iXJ +eVQ +jMi +jMi +jMi +whM +pZQ +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +aEi +irz +pXi +jMi +jMi +jMi +onR +iXJ +iXJ +czZ +czZ +czZ +ylo +dgi +dgi +dgi +dgi +dgi +ujh +gwM +gwM +gwM +jor +czZ +sUH +sUH +oIH +eTj +oCg +oCg +oCg +fqJ +"} +(35,1,1) = {" +bJY +emr +emr +emr +emr +emr +bvS +bvS +kjz +kjz +kjz +kjz +kjz +bvS +bvS +cai +bvS +uWi +uWi +cRX +cRX +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +cRX +emr +tsx +kjz +kjz +kjz +bvS +bvS +bvS +bvS +bvS +cai +emr +emr +emr +emr +emr +emr +hzn +hzn +hzn +hzn +nLU +ftt +ftt +ftt +nLU +nLU +nLU +hzn +hzn +hzn +nLU +nLU +vPy +vPy +vPy +vPy +xSG +cJg +yff +nLU +ftt +ftt +jRq +bKV +hzn +hzn +hzn +hzn +hzn +hzn +hzn +ftt +ftt +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +cfe +yff +ftt +ftt +ftt +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +dez +dez +aaM +aaM +aaM +aaM +aaM +aaM +ctd +uSs +uSs +hZQ +hZQ +hZQ +hZQ +hZQ +hZQ +hZQ +fST +xuc +jHQ +bcT +bcT +dHG +xAv +ggD +bDA +wEw +tDf +wcw +bFx +aaM +aaM +aaM +jse +bIn +aaM +aaM +eRn +ctd +aaM +aaM +aaM +aaM +aaM +aaM +ctd +ctd +jgA +jgA +jgA +ctd +aaM +dez +dez +gzZ +eVQ +iXJ +eVQ +jMi +jMi +jMi +whM +pBn +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +npW +irz +pXi +jMi +jMi +jMi +iXJ +eVQ +czP +czZ +czZ +lII +dgi +dgi +izd +izd +dgi +dgi +ujh +gwM +gwM +gwM +gwM +czZ +sUH +sUH +oIH +oIH +oCg +oCg +oCg +fqJ +"} +(36,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +bvS +kjz +cRX +kjz +kjz +kjz +kjz +kjz +kjz +bvS +bvS +uWi +uWi +cRX +cRX +cRX +emr +emr +emr +emr +emr +emr +emr +emr +cRX +cRX +uWi +bvS +kjz +kjz +kjz +bvS +bvS +uWi +uWi +uWi +uWi +uWi +emr +emr +emr +emr +emr +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +bKV +cHA +nLU +vPy +iMZ +hzn +hzn +nLU +yff +nLU +ftt +ftt +gKB +bKV +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +ftt +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +yff +ftt +ftt +ftt +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +dez +dez +ctd +aaM +aaM +aaM +aaM +aaM +ctd +uSs +uSs +hZQ +hZQ +hZQ +hZQ +hZQ +hZQ +hZQ +vjK +mZw +ikI +bcT +bcT +lVa +mno +mno +mno +mno +iZE +bFx +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +nSH +mLo +ctd +aaM +iPz +pBa +aaM +aaM +ctd +ctd +jgA +jgA +jgA +ctd +aaM +dez +dez +gzZ +eVQ +eVQ +eVQ +jMi +jMi +jMi +whM +wUU +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +uyt +irz +pXi +jMi +jMi +jMi +iXJ +eVQ +oyj +czZ +czZ +ijx +akV +dEm +tJj +oXp +dgi +dgi +ikp +ylT +qvI +oyZ +czZ +czZ +sUH +sUH +oIH +oCg +oCg +oCg +oCg +fqJ +"} +(37,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +bvS +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +bvS +bvS +uWi +uWi +cRX +cRX +emr +emr +emr +emr +emr +cRX +cRX +cRX +cRX +emr +uWi +bvS +kjz +kjz +kjz +bvS +uWi +uWi +uWi +uWi +uWi +uWi +emr +emr +emr +emr +emr +hzn +hzn +nLU +nLU +ftt +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +bKV +cHA +vPy +vPy +pNb +hzn +cfe +nLU +yff +ftt +ftt +ftt +ybK +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +ftt +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +yff +ftt +ftt +ftt +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +dez +ctd +ctd +ctd +aaM +twc +aaM +aaM +ctd +uqJ +ijt +eMg +dZZ +vds +sBT +rpS +tWr +dGK +vjK +mZw +ikI +hZQ +hZQ +hZQ +hZQ +hZQ +uSs +uSs +uSs +aaM +aaM +aaM +aaM +qcE +tCc +aaM +aaM +aaM +rzS +mvk +ctd +ctd +jse +sRa +pBa +ctd +ctd +ctd +jgA +jgA +jgA +dez +tCc +dez +dez +gzZ +gzZ +hIk +eVQ +jMi +jMi +jMi +whM +top +vpp +vpp +vpp +vpp +vpp +vpp +vpp +tnF +vpp +vpp +eOn +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +ycG +irz +pXi +jMi +jMi +jMi +iXJ +czP +xLB +czZ +czZ +mgL +akV +iON +qYI +fOt +dgi +dkF +ikp +ikp +ikp +ikp +czZ +czZ +sUH +sUH +oCg +oCg +oCg +oCg +oCg +fqJ +"} +(38,1,1) = {" +bJY +emr +emr +emr +emr +emr +bvS +bvS +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +bvS +bvS +bvS +uWi +uWi +emr +emr +emr +cRX +cRX +cRX +cRX +cRX +uWi +uWi +uWi +bvS +kjz +kjz +kjz +uWi +uWi +uWi +uWi +lHe +aRt +aRt +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +ftt +ftt +ftt +nLU +hzn +hzn +hzn +hzn +hzn +hzn +nLU +vPy +vPy +vPy +nLU +nLU +nLU +nLU +jgI +ftt +ftt +ftt +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +jay +nLU +hzn +hzn +hzn +hzn +hzn +hzn +cfe +oxk +yff +ftt +ftt +ftt +prt +oxk +cfe +hzn +hzn +hzn +hzn +hzn +hzn +nyH +nyH +ctd +ctd +ctd +aaM +aaM +aaM +ctd +tBn +xeq +prH +haP +iPA +fVh +ces +jDS +vcr +hSy +rkO +xAZ +hZQ +hZQ +hZQ +hZQ +hZQ +uSs +uSs +uSs +aaM +aaM +aaM +aaM +aaM +uvq +aaM +aaM +aaM +dez +dez +ctd +ctd +fTi +pjY +mvk +ctd +ctd +ctd +jgA +jgA +jgA +dez +dez +dez +dez +gzZ +gzZ +cht +eVQ +jMi +jMi +jMi +whM +pZQ +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +aEi +irz +pXi +jMi +jMi +jMi +iXJ +czP +czP +czZ +czZ +bMp +akV +uew +kkL +vHt +dgi +lFl +ikp +iVH +gNn +xIr +czZ +czZ +sUH +sUH +oCg +oCg +oCg +oCg +oCg +fqJ +"} +(39,1,1) = {" +bJY +emr +emr +emr +emr +emr +bvS +bvS +kjz +kjz +kjz +kjz +kjz +uWi +uWi +kjz +kjz +kjz +kjz +kjz +bvS +bvS +bvS +emr +cRX +cRX +cRX +cRX +emr +uWi +uWi +uWi +uWi +cai +bvS +kjz +kjz +kjz +uWi +uWi +lHe +aRt +lzS +vPy +vPy +hzn +hzn +hzn +hzn +hzn +cfe +nLU +nLU +ftt +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +nLU +vPy +vPy +nLU +nLU +nLU +lgT +ftt +rNd +ftt +ftt +ftt +oxk +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +rNd +nLU +hzn +hzn +bKV +bKV +hzn +hzn +oxk +wsn +iFT +wsn +wsn +wsn +wsn +wsn +oxk +hzn +hzn +hzn +cfe +cfe +cfe +gtk +nyH +nyH +ctd +ctd +aaM +aaM +aaM +aaM +ctd +xeq +bDA +oEG +iPA +nXM +wEw +jxE +bcT +jjO +bcT +ihJ +wyE +tWr +tWr +tWr +tWr +bZN +ioV +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +dez +dez +ctd +ctd +ctd +pjY +mvk +ctd +ctd +ctd +jgA +jgA +jgA +dez +uBE +dez +dez +gzZ +gzZ +nbB +cht +jMi +jMi +jMi +whM +pBn +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +tnF +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +npW +irz +pXi +jMi +jMi +jMi +iXJ +eVQ +czP +czZ +czZ +oMd +ofz +ofz +ofz +ofz +jFV +izd +quW +gwM +gwM +gwM +xGV +czZ +rpF +sUH +oCg +oCg +eIo +eIo +oCg +fqJ +"} +(40,1,1) = {" +bJY +emr +emr +emr +emr +emr +bvS +tsx +bvS +kjz +kjz +kjz +uWi +emr +emr +uWi +uWi +kjz +kjz +kjz +kjz +bvS +bvS +emr +cRX +emr +uWi +uWi +uWi +uWi +uWi +uWi +bvS +bvS +bvS +kjz +kjz +kjz +uWi +uWi +nbZ +vPy +vPy +vPy +nLU +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +nLU +nLU +nLU +ftt +ftt +fUT +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +cfe +ftt +rNd +nLU +nLU +nLU +gKB +gKB +nLU +nLU +nLU +wsn +tNj +dya +xDr +jwr +bhU +sAK +ftt +rgD +rgD +rgD +joL +mBD +gRV +lFQ +pvv +pvv +qff +ctd +aaM +aaM +aaM +aaM +ctd +sAk +tXd +voT +iPA +irC +jDS +vcr +gPd +paQ +bcT +qPA +uAG +ggD +ggD +ggD +ggD +eOw +ioV +aaM +aaM +aaM +eRn +iuH +aaM +aaM +aaM +ctd +dez +dez +dez +ctd +ctd +iPz +sRa +bIn +ctd +ctd +ctd +jgA +jgA +jgA +rzS +uBE +dez +dez +gzZ +gzZ +nbB +jwQ +jMi +jMi +jMi +whM +wUU +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +uyt +irz +pXi +jMi +jMi +jMi +onR +iXJ +iXJ +czZ +czZ +czZ +dgi +izd +izd +dgi +nXH +dgi +quW +gwM +gwM +gwM +uFh +czZ +sUH +sUH +oCg +oCg +eIo +exI +oCg +fqJ +"} +(41,1,1) = {" +bJY +emr +emr +emr +emr +emr +bvS +bvS +bvS +kjz +kjz +kjz +uWi +uWi +emr +emr +emr +uWi +kjz +kjz +kjz +djo +kjz +kjz +uWi +uWi +uWi +uWi +uWi +bvS +bvS +bvS +bvS +kjz +kjz +djo +kjz +kjz +uWi +uWi +nbZ +vPy +vPy +nLU +nLU +nLU +lgT +cfe +nLU +nLU +nLU +ftt +ftt +ftt +ftt +nLU +cfe +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +nLU +nLU +ftt +gKB +rNd +ftt +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +nLU +nLU +lgT +ftt +rNd +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +wsn +iFT +gKB +gKB +gKB +iFT +wsn +ftt +ftt +ftt +ftt +lhd +gKB +tYm +wNX +nyH +dvz +nyH +ctd +aaM +pDD +aaM +aaM +ctd +ctd +xeq +voT +iPA +irC +jxE +aSK +xjm +nhs +bcT +dHG +tDf +prH +ces +xAv +ggD +eOw +ioV +aaM +dPi +eRn +eRn +eRn +hFI +aaM +ctd +ctd +nyH +nyH +dez +ctd +aaM +jse +bIn +aaM +aaM +ctd +ctd +jgA +jgA +jgA +enI +dez +dez +dez +gzZ +gzZ +jwQ +eVQ +jMi +jMi +jMi +whM +top +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +tnF +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +ycG +irz +pXi +jMi +jMi +jMi +onR +eVQ +eVQ +czZ +czZ +czZ +fas +cCq +quZ +ebT +cEG +sON +ikp +tPZ +kRf +dPu +czZ +czZ +sUH +sUH +oCg +oCg +eIo +eIo +oCg +fqJ +"} +(42,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +bvS +bvS +bvS +kjz +kjz +kjz +uWi +emr +emr +uWi +kjz +kjz +kjz +kjz +kjz +kjz +bvS +bvS +bvS +bvS +tsx +bvS +bvS +bvS +kjz +kjz +kjz +kjz +kjz +kjz +uWi +uWi +nbZ +vPy +nLU +nLU +nLU +nLU +ftt +hYE +ftt +nLU +nLU +ftt +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +nLU +fhI +iwu +aqU +vVf +nLU +nLU +hzn +hzn +hzn +hzn +hzn +cfe +nLU +nLU +ftt +ftt +ftt +rNd +ftt +ftt +ftt +ftt +ftt +gKB +gKB +ftt +wsn +kWa +gKB +gKB +gKB +kds +wsn +ftt +ftt +ftt +ftt +lhd +gKB +tYm +wNX +wNX +dvz +nyH +ctd +ctd +aaM +aaM +aaM +aaM +ctd +xeq +voT +iPA +irC +jxE +gFP +xjm +bcT +bcT +dHG +prH +haP +fVh +ces +wcw +bFx +ioV +aaM +aaM +hNV +eRn +aaM +aaM +ctd +ctd +nyH +nyH +nyH +ctd +ctd +aaM +aaM +aaM +aaM +hNV +ctd +ctd +jgA +jgA +jgA +ctd +dez +dez +dez +gzZ +czP +eVQ +eVQ +jMi +jMi +jMi +whM +pZQ +vpp +uOp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +uOp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +vpp +uOp +vpp +aEi +irz +pXi +jMi +jMi +jMi +eVQ +eVQ +czP +oIj +czZ +czZ +czZ +czZ +czZ +wJE +wfC +wJE +czZ +czZ +czZ +czZ +czZ +mlY +oIj +oIj +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(43,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +uWi +bvS +bvS +kjz +kjz +kjz +kjz +uWi +uWi +emr +uWi +kjz +kjz +cRX +kjz +bvS +bvS +bvS +tsx +bvS +bvS +bvS +bvS +kjz +kjz +kjz +kjz +kjz +kjz +kjz +uWi +uWi +nbZ +vPy +nLU +nLU +ftt +ftt +ftt +qfE +ftt +ftt +ftt +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +nLU +nLU +ftt +rNd +ftt +ftt +ftt +nLU +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +gKB +gKB +iFT +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +sAK +gFe +gKB +gKB +gKB +iFT +wsn +ftt +ftt +ftt +ftt +lhd +gKB +tYm +wNX +wNX +dvz +nyH +ctd +ctd +aaM +aaM +aaM +aaM +ctd +xeq +voT +iPA +irC +jxE +bcT +bcT +qPA +gRH +uAG +voT +iPA +nXM +wEw +eOw +ctd +ctd +aaM +aaM +aaM +twc +aaM +aaM +ctd +nyH +nyH +nyH +nyH +ctd +aaM +aaM +aaM +iPz +pBa +aaM +ctd +ctd +jgA +jgA +jgA +ctd +dez +dez +dez +gzZ +czP +eVQ +eVQ +jMi +jMi +jMi +whM +vpp +lcc +wns +jGg +exj +lcc +wns +jGg +exj +lcc +wns +jGg +exj +lcc +wns +jGg +exj +lcc +wns +jGg +exj +lcc +vpp +irz +pXi +jMi +jMi +jMi +eVQ +ukb +eVQ +mlY +oIj +czZ +czZ +czZ +czZ +rSr +hkl +rSr +czZ +czZ +czZ +czZ +mlY +mlY +oIj +oIj +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(44,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +uWi +uWi +bvS +bvS +kjz +kjz +kjz +kjz +kjz +uWi +uWi +kjz +kjz +kjz +kjz +kjz +tsx +bvS +bvS +bvS +bvS +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +uWi +uWi +nbZ +vPy +nLU +nLU +ftt +ftt +ftt +qfE +ftt +ftt +ftt +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +nLU +ftt +ftt +rNd +ftt +lgT +nLU +nLU +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +gKB +fhI +dya +iYs +dya +wNr +wNr +wNr +wNr +wNr +wNr +wNr +dya +iYs +dya +xDr +jwr +kob +wsn +ftt +ftt +ftt +ftt +slC +mBD +iJp +lFQ +pvv +pvv +nyH +ctd +ctd +aaM +aaM +aaM +aaM +ctd +xeq +voT +iPA +irC +lun +gRH +eVU +uAG +prH +xng +haP +iPA +irC +ggD +eOw +ctd +aaM +uvq +aaM +aaM +aaM +aaM +aaM +ctd +nyH +nyH +nyH +ctd +ctd +aaM +aaM +iPz +mxw +bIn +ctd +ctd +ctd +jgA +jgA +jgA +ctd +dez +dez +dez +gzZ +czP +oOh +eVQ +jMi +jMi +jMi +vsZ +rLf +rLf +rLf +rLf +rLf +rLf +rLf +rLf +rLf +rLf +rLf +rLf +rLf +rLf +rLf +rLf +rLf +rLf +rLf +rLf +rLf +rLf +rLf +onR +trA +jMi +jMi +jMi +sLk +sLk +sLk +jTj +mlY +oIj +czZ +czZ +czZ +xzt +iBx +xzt +czZ +czZ +czZ +mlY +mlY +oIj +oIj +oIj +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(45,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +emr +uWi +bvS +bvS +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +emr +emr +emr +uWi +uWi +kjz +kjz +kjz +kjz +uWi +uWi +uWi +kjz +kjz +uWi +uWi +nbZ +vPy +nLU +nLU +ftt +ftt +ftt +hYE +ftt +ftt +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +ftt +jgI +nLU +nLU +cfe +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +ftt +ftt +fhI +vVf +nLU +lgT +nLU +hzn +hzn +hzn +hzn +hzn +hzn +oxk +wsn +wsn +wsn +sAK +wsn +wsn +wsn +oxk +hzn +hzn +hzn +cfe +cfe +cfe +gtk +nyH +nyH +ctd +qff +ctd +aaM +aaM +aaM +aaM +ctd +xeq +voT +iPA +fVh +xng +xng +xng +xng +haP +iPA +iPA +iPA +irC +wcw +bFx +nIX +aaM +aaM +aaM +aaM +aaM +aaM +aaM +dez +dez +nyH +ctd +ctd +aaM +aaM +dez +bIn +ctd +ctd +ctd +ctd +ctd +jgA +jgA +jgA +ctd +dez +dez +dez +gzZ +gzZ +oyj +eVQ +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +sLk +sLk +sLk +eKR +mlY +mlY +dea +oIj +vXm +eKR +six +eKR +vXm +mlY +mlY +mlY +oIj +oIj +oIj +dea +oIj +nCF +nCF +nCF +nCF +fqJ +"} +(46,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +emr +uWi +uWi +cai +bvS +djo +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +emr +emr +emr +uWi +kjz +kjz +kjz +uWi +uWi +uWi +uWi +uWi +kjz +kjz +uWi +uWi +nbZ +vPy +vPy +nLU +nLU +nLU +ftt +cfe +ftt +ftt +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +nLU +ftt +ftt +ftt +ftt +ftt +rNd +nLU +hzn +hzn +hzn +hzn +hzn +hzn +cfe +wls +nLU +ftt +gKB +fhI +vVf +nLU +nLU +cfe +hzn +hzn +hzn +hzn +hzn +hzn +hzn +cfe +oxk +nLU +ehG +ftt +ftt +nLU +oxk +cfe +hzn +hzn +hzn +hzn +dez +dez +nyH +nyH +ctd +ctd +ctd +ctd +aaM +aaM +aaM +fTi +ctd +xeq +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +nXM +wEw +mKd +ctd +ctd +aaM +aaM +aaM +aaM +aaM +aaM +dez +dez +dez +dez +mLo +aaM +aaM +qcE +aaM +ctd +ctd +ctd +ctd +jgA +jgA +jgA +jgA +jgA +ctd +dez +dez +dez +gzZ +gzZ +czP +eVQ +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +sLk +sLk +sLk +eKR +eKR +mlY +faD +oIj +vXm +eKR +six +eKR +vXm +mlY +mlY +oIj +oIj +oIj +oIj +oIj +oIj +nCF +nCF +nCF +nCF +fqJ +"} +(47,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +emr +uWi +uWi +bvS +bvS +kjz +kjz +kjz +cRX +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +uWi +uWi +bvS +uWi +uWi +uWi +kjz +kjz +uWi +uWi +nbZ +vPy +vPy +vPy +nLU +nLU +lgT +hzn +nLU +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +rgD +rgD +ftt +ftt +rNd +nLU +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +fhI +vVf +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +ftt +ftt +ftt +pNb +hzn +hzn +hzn +hzn +hzn +hzn +dez +dez +nyH +ctd +ctd +ctd +ctd +aaM +uvq +aaM +aaM +ctd +ctd +xeq +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +wcw +bFx +ctd +aaM +eRn +aaM +aaM +iPz +pBa +dez +dez +dez +dez +dez +sRa +jEv +pBa +ctd +ctd +ctd +ctd +jgA +jgA +jgA +jgA +jgA +ctd +ctd +ctd +dez +dez +gzZ +czP +czP +czP +eVQ +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +jMi +eVQ +eVQ +sLk +eKR +eKR +mlY +mlY +mlY +vXm +eKR +six +eKR +vXm +mlY +mlY +oIj +jpA +ecb +vIZ +oIj +mlY +nCF +iDc +iDc +nCF +fqJ +"} +(48,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +emr +emr +uWi +uWi +bvS +tsx +kjz +kjz +cRX +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +kjz +uWi +bvS +bvS +uWi +uWi +kjz +kjz +kjz +uWi +uWi +jdF +knj +vPy +vPy +vPy +nLU +nLU +hzn +nLU +nLU +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +cfe +cfe +ftt +ftt +rNd +nLU +hzn +hzn +hzn +nLU +nLU +nLU +nLU +ftt +ftt +ftt +rNd +nLU +nLU +hzn +nIl +gwc +gwc +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +pZk +ftt +ftt +ftt +pNb +hzn +hzn +hzn +hzn +hzn +hzn +dez +dez +ctd +ctd +nSH +pBa +aaM +aaM +aaM +aaM +ctd +ctd +jTm +hfI +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +nXM +wEw +mKd +ctd +rtQ +eRn +eRn +eRn +dez +jse +bIn +aaM +aaM +dez +dez +dez +mxw +mxw +sRa +mLo +ctd +ctd +jgA +jgA +jgA +jgA +jgA +jgA +ctd +dez +dez +dez +gzZ +wzk +czP +czP +eVQ +iXJ +sLk +sLk +iXJ +oHO +eVQ +eVQ +eVQ +kDS +elz +gom +sLk +sLk +sLk +hIk +iXJ +iXJ +iXJ +iXJ +iXJ +eVQ +sCb +sCb +bjS +bjS +bjS +abI +bjS +sCb +sCb +iXJ +iXJ +iXJ +eVQ +eVQ +eVQ +eKR +eKR +eKR +eKR +eKR +eKR +eKR +bKW +eKR +mlY +mlY +mlY +jpA +caz +caz +caz +tOD +mlY +nCF +iDc +iDc +nCF +fqJ +"} +(49,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +uWi +bvS +bvS +cRX +kjz +kjz +kjz +kjz +bvS +bvS +tsx +bvS +bvS +uWi +uWi +kjz +geI +kjz +bvS +tsx +bvS +bvS +uWi +kjz +kjz +kjz +kjz +uWi +uWi +uWi +jdF +knj +vPy +vPy +nLU +hzn +hzn +hzn +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +lql +nLU +ftt +ftt +lWK +gKB +gKB +mvf +ftt +rNd +oxk +hzn +oxk +nLU +lgT +fhI +iwu +jhS +hCo +dya +vzv +vVf +nLU +hzn +gwc +opz +opz +opz +opz +hzn +hzn +hzn +hzn +hzn +hzn +hzn +cBh +rDz +ftt +ftt +lQY +hzn +hzn +oIB +oIB +hzn +hzn +dez +ctd +ctd +nSH +uBE +uBE +pBa +aaM +aaM +aaM +ctd +jTm +hfI +ggD +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +ggD +eOw +ctd +aaM +aaM +eRn +dez +dez +aaM +gxA +aaM +dez +dez +dez +rVA +aaM +aaM +jse +bIn +ctd +jgA +jgA +jgA +jgA +jgA +ctd +nSH +nwk +dez +dez +dez +lsA +lsA +tGp +tGp +lsA +lsA +wfE +svU +lsA +mZk +dcn +czP +czP +buh +sQz +qOK +sLk +sLk +sLk +iXJ +eVQ +eVQ +czP +oyj +czP +czP +qPg +qPg +lKX +xoo +lKX +lKX +xoo +qPg +qPg +gzZ +gzZ +gzZ +gzZ +czP +eVQ +vgP +eKR +eKR +eKR +eKR +eKR +eKR +bKW +eKR +jTj +mlY +mlY +oPp +caz +tyY +caz +bRD +mlY +tXX +tXX +iDc +iDc +fqJ +"} +(50,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +cRX +cRX +bvS +tsx +bvS +kjz +bvS +bvS +bvS +tsx +bvS +uWi +uWi +kjz +kjz +kjz +bvS +bvS +bvS +uWi +uWi +kjz +kjz +kjz +kjz +kjz +uWi +uWi +uWi +jdF +qJC +qJC +hzn +hzn +hzn +hzn +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +nLU +nLU +nLU +ftt +ftt +lWK +gKB +gKB +mvf +ftt +jgI +cfe +cfe +cfe +ftt +ftt +rNd +gKB +gKB +ftt +ftt +ftt +nLU +nLU +hzn +opz +opz +opz +jqi +opz +hzn +hzn +hzn +nLU +nLU +nLU +oxk +wKN +cVV +ftt +ftt +lgT +oxk +oIB +oIB +xig +hzn +hzn +dez +ctd +ctd +enI +uBE +uBE +mvk +nSH +pBa +ctd +ctd +xeq +ggD +prH +haP +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +wcw +bFx +nSH +pBa +aaM +aaM +dez +aaM +aaM +aaM +aaM +dez +sRa +sRa +bIn +aaM +iPz +dez +dez +ctd +jgA +pcR +jgA +ctd +ctd +nSH +uBE +dez +dez +dez +lsA +lsA +pJp +pmw +bpJ +ofH +lsA +mRw +mRw +lsA +lsA +lPV +czP +oyj +buh +pXi +qOK +sLk +sLk +sLk +iXJ +eVQ +oOh +czP +czP +czP +qPg +qPg +pcd +nqs +nqs +nqs +nqs +xpE +iKA +qPg +qPg +gzZ +gzZ +gzZ +gzZ +czP +mlY +mlY +eKR +eKR +eKR +eKR +eKR +six +eKR +vXm +mlY +mlY +oPp +hOS +kWQ +oPp +bRD +mlY +tXX +tXX +tXX +iDc +fqJ +"} +(51,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +cRX +cRX +bvS +bvS +emr +emr +emr +emr +emr +emr +bvS +bvS +kjz +kjz +kjz +kjz +bvS +bvS +uWi +uWi +kjz +kjz +kjz +kjz +kjz +kjz +kjz +uWi +uWi +uWi +uWi +uWi +emr +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +lgT +nLU +ftt +ftt +fEf +eVb +eVb +eVb +eVb +eVb +oRm +eVb +dya +iwu +iwu +iwu +vVf +ftt +ftt +ftt +ftt +nLU +nLU +hzn +gwc +opz +opz +opz +opz +opz +hzn +hzn +hzn +hzn +nLU +oIB +oIB +ftt +ftt +ftt +ftt +oIB +oIB +oIB +rxV +rxV +rxV +hzn +dez +dez +dez +ctd +enI +sss +bnW +rzS +mvk +ctd +jTm +hfI +prH +haP +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +nXM +wEw +eOw +ctd +rzS +sRa +jEv +dez +dez +dez +dez +aaM +aaM +jse +mxw +bIn +aaM +iPz +sRa +dez +dez +ctd +jgA +aSG +jgA +ctd +xoz +dez +dez +lsA +lsA +lsA +lsA +lsA +nJQ +kBI +pYN +cEh +lsA +mRw +fmV +xps +lsA +iyL +iyL +lsA +ifW +htR +cav +sLk +sLk +sLk +iXJ +eVQ +czP +qPg +wlm +wlm +qPg +qPg +xOb +nqs +dkG +nqs +nqs +nxI +iKA +qPg +qPg +qPg +qPg +qPg +gzZ +czP +oIj +mlY +mlY +vXm +vXm +mlY +eKR +six +eKR +vXm +oqu +mlY +oPp +hOS +oIj +oPp +bRD +mlY +tXX +tXX +tXX +iDc +fqJ +"} +(52,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +bvS +kjz +kjz +kjz +kjz +emr +emr +uWi +uWi +kjz +kjz +kjz +kjz +kjz +kjz +kjz +uWi +uWi +uWi +uWi +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +nLU +ftt +ftt +ftt +gKB +ftt +ftt +gPk +ftt +ftt +ftt +ftt +ftt +jbW +ftt +ftt +ftt +ftt +nLU +nLU +nLU +nLU +nLU +cfe +hzn +jqi +gwc +jqi +qkW +opz +nIl +hzn +hzn +hzn +hzn +nLU +hzS +oIB +ftt +ftt +ftt +oIB +oIB +hzS +oIB +rxV +rxV +rxV +hzn +dez +dez +dez +ctd +ctd +nIX +nSH +uBE +mvk +ctd +xeq +prH +haP +iPA +iPA +iPA +iPA +iPA +iPA +iPA +nXM +ssy +wEw +wcw +bFx +nSH +uBE +sRa +sRa +dez +dez +dez +bIn +aaM +aaM +aaM +aaM +iPz +jEv +sRa +sRa +dez +dez +ctd +jgA +jgA +ctd +rVr +vOR +dez +dez +lsA +wtQ +ljE +wAv +lsA +lsA +tGp +tGp +ugy +lsA +jww +fmV +cVK +lsA +jpq +xVH +iyL +czP +gRu +eVQ +sLk +sLk +sLk +iXJ +eVQ +czP +qqA +hHi +sSf +kBL +qPg +pOw +rWA +nqs +nqs +nqs +nqs +oEm +qPg +qQN +kuW +uwX +qPg +gzZ +gzZ +oIj +oIj +oIj +oIj +nCF +mlY +eKR +six +eKR +vXm +mlY +mlY +ppv +caz +ecb +caz +bRD +mlY +mlY +tXX +tXX +iDc +fqJ +"} +(53,1,1) = {" +bJY +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +emr +kjz +kjz +kjz +kjz +emr +emr +emr +uWi +uWi +kjz +kjz +djo +kjz +kjz +kjz +uWi +uWi +uWi +uWi +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +rgD +rgD +ftt +ftt +ftt +ftt +jbW +ftt +ftt +ftt +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +jqi +jqi +opz +opz +opz +gwc +hzn +hzn +hzn +hzn +oIB +oIB +oIB +ftt +ftt +ftt +oIB +hzn +hzn +oIB +oIB +hzn +hzn +hzn +dez +dez +dez +dez +ctd +ctd +rzS +uBE +mvk +ctd +xeq +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +ggD +ggD +eOw +ctd +rzS +uBE +mxw +sRa +dez +dez +rVA +aaM +aaM +aaM +iPz +dez +sRa +sRa +dez +dez +dez +dez +ctd +jgA +jgA +ctd +bpV +vOR +dez +dez +lsA +tAx +vXr +vXr +xFL +pPd +xol +vXr +oJw +lsA +jww +fmV +mRw +lsA +jov +iVE +iyL +czP +eVQ +eVQ +sLk +sLk +sLk +iXJ +oyj +czP +qqA +sKE +iGh +ooD +szI +dht +nqs +dht +nqs +wqX +dht +wJs +qPg +lMQ +uEQ +uEQ +qPg +gzZ +gzZ +nCF +nCF +ecb +vIZ +oIj +mlY +mlY +oOf +uhi +fHl +fHl +ups +mlY +oPp +caz +caz +caz +tOD +mlY +tXX +tXX +tXX +fqJ +"} +(54,1,1) = {" +bJY +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +opz +opz +opz +gwc +opz +jqi +jqi +emr +uWi +uWi +uWi +kjz +kjz +kjz +uWi +uWi +uWi +uWi +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +nLU +ftt +ftt +gKB +gKB +gKB +ftt +ftt +ftt +ftt +nLU +nLU +nLU +nLU +cfe +cfe +cfe +nLU +nLU +lgT +hzn +hzn +opz +opz +opz +jqi +jqi +jqi +jqi +jqi +opz +opz +jqi +jqi +jqi +jqi +jqi +oIB +oIB +oIB +ftt +rfD +ftt +oIB +hzn +hzn +hzn +hzn +hzn +hzn +hzn +dez +dez +dez +dez +ctd +ctd +rzS +uBE +bnW +jTm +hfI +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +ggD +wcw +bFx +ctd +enI +bnW +aaM +jse +sRa +dez +rVA +aaM +aaM +ctd +dez +nyH +dez +dez +dez +dez +tCc +dez +ctd +jgA +jgA +ctd +aaM +aIg +dez +lsA +lsA +nCT +nCT +uBv +lsA +dsz +vXr +oJw +oJw +lsA +lsA +ocR +mRw +lsA +mQb +iVE +lsA +lsA +hIk +eVQ +sLk +sLk +sLk +eVQ +czP +qPg +qPg +tWD +mtI +sKE +xcg +rBI +rBI +vJU +vJU +vJU +rBI +rBI +qPg +mVI +uEQ +aqg +qPg +qPg +gzZ +nCF +nCF +nCF +caz +ecb +vIZ +mlY +eKR +eKR +eKR +mlY +mnw +mlY +oPp +caz +tyY +caz +hOS +mlY +mlY +tXX +tXX +fqJ +"} +(55,1,1) = {" +bJY +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jJX +gwc +gwc +gwc +gwc +gwc +gwc +gwc +cmE +jxA +gwc +gYm +gwc +gwc +gwc +opz +opz +gwc +gwc +opz +opz +jqi +jqi +emr +emr +uWi +uWi +kjz +kjz +uWi +uWi +uWi +emr +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +hzn +bKV +gKB +nLU +nLU +ftt +ftt +ftt +ftt +ftt +ftt +ftt +ftt +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +cfe +hzn +jqi +rUZ +opz +opz +opz +rUZ +jqi +gwc +gwc +gwc +opz +opz +jqi +jqi +jqi +jqi +jqi +oIB +oIB +nLU +ftt +ftt +cfe +cfe +cfe +cfe +cfe +cfe +cfe +hzn +hzn +dez +dez +dez +dez +dez +dez +dez +bnW +ctd +xeq +prH +haP +iPA +iPA +iPA +iPA +iPA +iPA +nXM +ssy +wEw +wcw +bFx +ctd +eRn +ctd +aaM +aaM +aaM +jse +mxw +bIn +aaM +ctd +ctd +nyH +nyH +dez +dez +dez +dez +aaM +ctd +ctd +jgA +jgA +ctd +aaM +iPz +lsA +pwe +pwe +pwe +pwe +pwe +pwe +vOy +aDx +aKe +mRw +lvj +lsA +qmB +jww +lsA +fmu +jYy +kAy +lsA +lsA +hIR +jZG +jZG +jZG +hIR +qPg +qPg +qPg +whi +eHP +ooD +lLc +lLc +wsE +wsE +lLc +wsE +wsE +lLc +lLc +lLc +gsD +lLc +lLc +qPg +qPg +nCF +nCF +nCF +nCF +caz +caz +tOD +mlY +eKR +eKR +eKR +mnw +mlY +ppv +hOS +gMB +oPp +hOS +mlY +mlY +mlY +tXX +fqJ +"} +(56,1,1) = {" +bJY +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +gwc +gwc +gwc +gwc +gYm +gYm +gwc +jqi +gwc +lfN +gYm +kZt +gwc +gwc +opz +opz +gwc +gwc +opz +opz +jqi +jqi +jqi +emr +emr +uWi +uWi +uWi +uWi +emr +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +bKV +gKB +nLU +ftt +ftt +ftt +cfe +hzn +ftt +ftt +ftt +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +jqi +rUZ +opz +opz +opz +jqi +jqi +rUZ +gwc +gwc +opz +opz +jqi +jqi +jqi +jqi +jqi +oMI +oIB +nLU +ftt +ftt +cfe +jHh +maC +wsn +ghH +kAs +cfe +hzn +hzn +dez +dez +dez +dez +dez +dez +dez +ctd +ctd +xeq +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +ggD +wcw +gxu +rtQ +eRn +eRn +eRn +hFI +aaM +aaM +aaM +aaM +aaM +aaM +ctd +nyH +nyH +wNX +aUx +dez +dez +dez +dez +ctd +ctd +jgA +jgA +ctd +iPz +sRa +tGp +vCh +rEe +xWp +lqE +xWp +pwe +jww +pYN +pYN +kBI +tVj +bhR +jxH +hJu +tfW +xaS +iRd +ibg +ctX +lsA +hIR +jZG +jZG +jZG +hIR +qPg +pmd +jkH +hRt +diI +qNO +lLc +ulx +oPI +wOq +gVl +wOq +lDm +nCa +lLc +qFS +xDc +yhv +iBg +cJv +qPg +xlY +oCn +oCn +oCn +nCF +caz +hOS +mlY +mlY +eKR +eKR +six +mlY +mlY +oPp +ecb +caz +hOS +mlY +mlY +mlY +nCF +fqJ +"} +(57,1,1) = {" +bJY +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jJX +gwc +gwc +gwc +nIl +gYm +kZt +gwc +rUZ +lfN +lfN +lfN +gYm +gYm +gwc +gwc +gwc +opz +opz +gwc +opz +opz +gwc +jqi +jqi +jqi +emr +emr +emr +emr +emr +emr +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +lgT +ftt +ftt +ftt +gzV +hzn +cfe +ftt +ftt +ftt +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +jqi +jqi +rUZ +opz +opz +opz +rUZ +wAm +wAm +opz +opz +opz +jJX +jqi +jqi +rUZ +rUZ +ftt +oIB +nLU +ftt +ftt +jbW +wsn +wsn +wsn +tgx +osY +cfe +hzn +hzn +dez +dez +dez +dez +dez +dez +dez +ctd +ctd +sDm +voT +iPA +iPA +iPA +iPA +iPA +iPA +iPA +irC +ggD +eOw +ctd +ctd +ctd +eRn +aaM +aaM +aaM +dez +aaM +aaM +aaM +aaM +dez +nyH +wNX +wNX +wNX +wNX +nyH +aaM +uvq +ctd +ctd +jgA +jgA +ctd +pjY +sRa +tGp +kbp +jzV +lWI +tHm +xOt +nYt +rpu +gcw +gcw +xqq +fvl +xGy +cNj +rEz +wfE +tnK +anM +sGh +tHb +gkU +dZU +wRv +sYz +jZG +hIR +qPg +wJa +lZn +pEF +uLn +uLn +lLc +cNk +aQp +ksQ +fzz +cNk +sNi +ksQ +lLc +ePy +nDq +nDq +lIb +lIb +qqA +xlY +xlY +oCn +oCn +nCF +caz +hOS +oIj +mlY +eKR +eKR +bKW +vXm +mlY +oPp +caz +caz +hOS +oIj +oIj +mlY +nCF +fqJ +"} +(58,1,1) = {" +bJY +jqi +jqi +jqi +jqi +jqi +gYm +gYm +gYm +gYm +gwc +gwc +dKl +gwc +gwc +rUZ +rUZ +rUZ +rUZ +gwc +gwc +gYm +gwc +gfm +bJS +gwc +opz +qkW +opz +opz +sem +gwc +gwc +wAm +wAm +wAm +wAm +wAm +jqi +emr +emr +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +gKB +ftt +gzV +ftt +ftt +ftt +nLU +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +jqi +jqi +gwc +sem +opz +opz +jJX +wAm +wAm +opz +opz +opz +gwc +jqi +jqi +rUZ +opz +oIB +oIB +ftt +ftt +ftt +jbW +wsn +wsn +wsn +vXE +xqd +cfe +hzn +hzn +dez +dez +dez +dez +dez +dez +ctd +ctd +ctd +xeq +voT +iPA +iPA +iPA +iPA +iPA +nXM +ssy +rJB +wcw +axg +nwk +mLo +ctd +ctd +aaM +aaM +aaM +aaM +uvq +aaM +iPz +dez +dez +nyH +dez +wNX +wNX +wNX +nyH +dez +aaM +ctd +ctd +jgA +jgA +ctd +enI +sRa +tGp +qGa +qmB +rZO +azQ +vCh +pwe +eMj +pYN +dCx +tyH +cIE +lsA +fmV +pPK +lsA +kfz +dVO +uCi +iwb +fan +jZG +jZG +xdO +jZG +hIR +qqA +lZn +lZn +lZn +lZn +hdq +wsE +uka +xDc +xDc +vzb +nDq +nDq +nDq +frf +wme +nDq +yec +dtJ +lIb +qqA +xlY +xlY +xlY +oCn +oCn +nCF +wDY +oIj +jTj +mlY +eKR +bKW +vXm +mlY +ppv +tyY +tyY +wDY +oIj +oIj +mlY +nCF +fqJ +"} +(59,1,1) = {" +bJY +jqi +jqi +jqi +jqi +gYm +gYm +gYm +gYm +gwc +gwc +gYm +gwc +gwc +tvx +lra +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +dKl +gwc +opz +opz +opz +opz +opz +gwc +gwc +wAm +wAm +wAm +wAm +wAm +jqi +emr +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +lql +ftt +ftt +ftt +gKB +gKB +ftt +ftt +nLU +nLU +lql +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +jqi +jqi +gwc +opz +opz +opz +gwc +gwc +wAm +gwc +opz +opz +gwc +jqi +jqi +opz +gwc +oIB +oIB +ftt +ftt +oMI +cfe +wsn +wsn +wsn +tFm +amD +cfe +hzn +hzn +dez +dez +dez +dez +dez +dez +ctd +ctd +ctd +xeq +voT +iPA +iPA +iPA +iPA +iPA +irC +ggD +ayu +myj +uBE +uBE +bnW +aaM +iPz +jEv +pBa +aaM +aaM +aaM +aaM +pjY +dez +dez +dez +wNX +wNX +wNX +dez +dez +dez +dez +mLo +ctd +jgA +jgA +ctd +ctd +enI +lsA +pwe +pwe +pwe +pwe +pwe +pwe +dgV +pYN +xbc +xLD +rJa +lsA +nDi +kHi +lsA +lsA +lsA +lEM +hJu +fan +jZG +jZG +vnO +wRv +wRv +imc +cBU +dgJ +iaf +lZn +lZn +wsE +cYF +bry +rhn +hwp +rhn +uWg +twF +mjw +kyN +cim +jYz +asX +xjh +qqA +xlY +xlY +xlY +oCn +oCn +nCF +oIj +oIj +faD +mlY +eKR +six +vXm +mlY +oIj +oIj +oIj +oIj +gMB +oIj +mlY +mlY +fqJ +"} +(60,1,1) = {" +bJY +jqi +jqi +jqi +gYm +kZt +gwc +gwc +gYm +gYm +gYm +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +opz +sem +opz +gwc +gwc +gwc +gwc +gwc +gwc +opz +opz +opz +opz +gwc +nIl +wAm +wAm +wAm +wAm +wAm +emr +emr +emr +emr +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +nLU +nLU +ftt +ftt +ftt +ftt +ftt +ftt +ftt +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +jqi +wAm +gwc +gwc +opz +opz +gwc +nIl +gYm +gYm +opz +opz +gwc +jqi +jqi +jqi +gwc +hzS +oIB +ftt +ftt +nLU +cfe +hTO +cfe +jbW +cfe +cfe +cfe +hzn +dez +dez +dez +dez +dez +dez +aaM +ctd +ctd +jTm +hfI +voT +iPA +iPA +iPA +iPA +iPA +irC +ayu +oSU +uBE +uBE +bnW +aaM +iPz +dez +dez +dez +dez +aaM +aaM +aaM +dez +dez +dez +nyH +nyH +dez +wNX +wNX +dez +dez +pYT +iXM +rLt +qQM +qQM +rLt +rLt +rLt +tGp +xWp +jec +hzF +sMC +mYK +pwe +fdA +oDk +gVe +pxE +pSt +lsA +mxA +pPK +lsA +kRR +tIg +fAb +iwb +fan +jZG +jZG +cxz +jZG +hIR +qqA +biz +lZn +tqq +hdq +kSk +lLc +omQ +uFH +vLj +aRh +vLj +oPG +vLj +frf +lKi +nDq +vog +xjh +xjh +qqA +xlY +xlY +xlY +oCn +oCn +nCF +oIj +dea +oIj +mlY +eKR +six +mlY +mlY +oIj +oIj +oIj +blO +oIj +oIj +oIj +mlY +fqJ +"} +(61,1,1) = {" +bJY +jqi +jqi +gwc +gYm +gYm +rUZ +rUZ +rUZ +rUZ +rUZ +rUZ +rUZ +rUZ +rUZ +rUZ +rUZ +gfm +jxA +gwc +gwc +opz +qkW +opz +gwc +gfm +jxA +nIl +gwc +opz +opz +opz +opz +opz +gwc +rUZ +rUZ +rUZ +rUZ +gwc +gYm +gwc +jqi +jqi +jqi +wAm +wAm +jqi +jqi +jqi +hzn +hzn +hzn +nLU +nLU +nLU +ftt +ftt +ftt +ftt +ftt +nLU +lgT +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +jqi +wAm +wAm +gwc +opz +opz +opz +gwc +gYm +kZt +gwc +opz +gwc +jqi +jqi +jqi +gwc +oIB +ftt +ftt +ftt +nLU +cfe +tQr +wsn +wsn +fRl +cfe +hzn +hzn +dez +dez +oUp +ctd +dez +aaM +twc +ctd +ctd +xeq +prH +haP +iPA +iPA +iPA +iPA +iPA +irC +sZT +uBE +uBE +mvk +aaM +aaM +dez +dez +dez +dez +bIn +aaM +aaM +aaM +dez +dez +dez +nyH +nyH +nyH +nyH +dez +dez +rLt +rLt +rLt +rLt +qQM +qQM +qQM +qQM +rLt +tGp +rTP +ubO +ubO +tfQ +xOt +nYt +rpu +lOP +xqq +gcw +tHb +csP +iAq +nNt +lSK +pBN +qCV +chf +gbr +gkU +dZU +wRv +lPI +jZG +hIR +qPg +dBg +lZn +tqq +hdq +sBR +lLc +lLc +bfL +iRC +lLc +uAQ +aZo +lLc +lLc +cfX +hfD +xjh +xjh +siL +qPg +xlY +xlY +xlY +oCn +oCn +nCF +oIj +oIj +oIj +qkh +iih +oil +iih +qkh +oIj +oIj +oIj +oIj +oIj +jGY +oIj +mlY +fqJ +"} +(62,1,1) = {" +bJY +jqi +jqi +jqi +nIl +gYm +rUZ +lRd +vSm +vSm +vCm +vSm +vSm +vCm +vCm +sns +rUZ +gwc +gwc +gwc +gwc +gwc +gwc +jqi +opz +opz +opz +gwc +gwc +gwc +opz +opz +opz +opz +gwc +gwc +rUZ +gYm +gwc +gYm +gYm +gwc +jqi +jqi +wAm +wAm +wAm +wAm +wAm +jqi +jqi +hzn +hzn +hzn +nLU +nLU +nLU +nLU +nLU +nLU +nLU +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +wAm +jqi +jqi +jqi +jqi +jqi +wAm +gwc +gwc +gwc +opz +opz +gwc +rUZ +jqi +gwc +opz +gwc +gwc +jqi +gwc +gwc +oIB +ftt +ftt +ftt +syy +cfe +fta +wsn +wsn +frR +cfe +hzn +hzn +dez +dez +ctd +ctd +ctd +aaM +aaM +ctd +tBn +xeq +voT +nXM +ssy +ssy +ssy +oEG +iPA +irC +sZT +uBE +sss +bnW +aaM +aaM +dez +dez +bIn +aaM +aaM +iPz +pBa +aaM +jse +dez +dez +dez +nyH +nyH +dez +dez +eAR +jTi +qQM +qQM +qQM +qQM +qQM +qQM +qQM +rLt +tGp +tSk +ivK +xWp +qcH +xWp +pwe +jsV +kBI +kBI +eYF +iwb +wfE +tRf +leN +wfE +xaS +iRd +iRd +fla +lsA +hIR +jZG +wUg +jZG +hIR +qPg +hAs +lZn +tSt +hdr +fJy +oCw +hYM +lmZ +lmZ +jyI +lmZ +aPa +biz +lLc +lLc +lLc +lLc +lLc +qPg +qPg +xlY +xlY +xlY +oCn +oCn +qkh +iih +iih +iih +qkh +epw +uUj +chu +qkh +qkh +qkh +qkh +qkh +oIj +oIj +jpA +ecb +fqJ +"} +(63,1,1) = {" +bJY +jqi +jqi +jqi +gwc +rUZ +rUZ +xqp +lfN +gwc +gYm +gYm +gYm +gwc +gwc +xBk +rUZ +rUZ +rUZ +gwc +gfm +rlp +gwc +gwc +opz +opz +gwc +gwc +gwc +gwc +gwc +opz +opz +opz +opz +gwc +gwc +gYm +lfN +lfN +gYm +gYm +gwc +jqi +wAm +wAm +wAm +wAm +wAm +wAm +jqi +hzn +hzn +nLU +lgT +vPy +vPy +vPy +vPy +vPy +nLU +nLU +nLU +hzn +hzn +hzn +hzn +hzn +hzn +hzn +wAm +wAm +jqi +jqi +jqi +jqi +jqi +wAm +gwc +nIl +gwc +opz +opz +qkW +opz +opz +opz +opz +opz +opz +opz +opz +opz +pZk +ftt +ftt +ftt +hzn +cfe +gNu +wsn +wsn +vxu +cfe +hzn +dez +dez +pBa +ctd +ctd +ctd +aaM +aaM +ctd +ctd +xeq +voT +irC +jDS +aGL +jjQ +voT +iPA +irC +wVL +bnW +ctd +aaM +aaM +aaM +aaM +aaM +aaM +gxA +iPz +dez +dez +aaM +aaM +pjY +dez +dez +pBa +tCc +dez +eAR +fnH +iXM +qQM +qQM +qQM +qQM +cVt +qQM +qQM +rLt +lsA +pwe +pwe +pwe +pwe +pwe +pwe +pwe +eDJ +tCe +pwe +azy +lsA +oMR +hPI +lsA +jCU +iVE +iRd +lsA +lsA +hIR +jZG +cxz +jZG +hIR +qPg +qPg +hAs +sOe +hAs +tfG +xHf +eEa +hdq +hdq +lZn +hdq +kZz +fJy +ylb +uXG +gcM +nDq +vRP +qPg +qPg +hIR +xlY +xlY +xlY +xlY +qkh +gFE +xdG +mNJ +vqI +pPf +myd +pPf +aVV +chu +kfX +mNv +qkh +oIj +oIj +oPp +caz +fqJ +"} +(64,1,1) = {" +bJY +jqi +jqi +jqi +rUZ +rUZ +kYX +ttt +gwc +jqi +gYm +gYm +kZt +gYm +gwc +vfT +vCm +rtg +rUZ +gwc +gwc +gwc +gwc +nIl +gwc +gwc +gwc +gfm +fZb +gwc +gwc +gwc +jJX +opz +opz +gwc +gwc +jqi +jqi +cdt +cdt +kZt +gYm +jqi +jqi +wAm +wAm +wAm +wAm +wAm +wAm +hzn +hzn +nLU +vPy +vPy +vPy +lql +vPy +vPy +vPy +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +wAm +wAm +wAm +jqi +jqi +jqi +jqi +jqi +wAm +wAm +gwc +gwc +opz +opz +opz +opz +bHO +bHO +opz +opz +opz +bHO +opz +opz +opz +ftt +ftt +hzn +hzn +cfe +lXS +wsn +wsn +lxN +cfe +hzn +dez +dez +rVA +ctd +ctd +aaM +aaM +ctd +ctd +ctd +xeq +bDA +wEw +jxE +oJr +dHG +bDA +ssy +wEw +eOw +ctd +eRn +aaM +aaM +iPz +dez +aaM +aaM +aaM +pjY +dez +dez +aaM +aaM +jse +mxw +dez +xXA +rLt +pYT +iXM +qQM +qQM +qQM +qQM +cVt +cVt +qQM +qQM +qQM +rLt +nJj +lsA +lsA +ljE +ljE +wAv +lsA +jmz +oJw +oJw +vXr +lsA +lsA +fmV +hPI +lsA +xFc +iVE +lsA +lsA +mmI +hIR +jZG +xdO +jZG +hIR +mmI +qPg +qPg +qPg +aRC +qPg +qPg +pzt +hdq +fMf +uZX +tRs +kKi +biz +wsE +sKE +mff +xzR +qPg +qPg +hIR +hIR +hIR +xlY +xlY +xlY +qkh +rOu +mpl +iwI +auD +iwI +iHF +upu +qCE +hEY +grE +psp +qkh +dea +oIj +oPp +caz +fqJ +"} +(65,1,1) = {" +bJY +jqi +jqi +jqi +jqi +vCm +nkD +gwc +gwc +gYm +nIl +mYJ +gwc +rUZ +gwc +gwc +gwc +xBk +rUZ +rUZ +rUZ +rUZ +gwc +gwc +gwc +gwc +rUZ +gYm +gYm +gwc +gwc +nIl +gwc +opz +opz +opz +gwc +jqi +jqi +jqi +lfN +gYm +gwc +gwc +jqi +wAm +wAm +wAm +wAm +wAm +wAm +hzn +hzn +hzn +hzn +vPy +vPy +vPy +vPy +vPy +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +wAm +wAm +wAm +jqi +jqi +jqi +jqi +jqi +wAm +gwc +gwc +opz +opz +opz +gwc +gwc +gwc +jqi +gwc +gwc +gwc +gwc +bHO +opz +qkW +nLU +ftt +hzn +hzn +cfe +cfe +cfe +cfe +cfe +cfe +hzn +dez +dez +rVA +aaM +aaM +aaM +aaM +ctd +ctd +jTm +hfI +ggD +tDf +jxE +bcT +dHG +ggD +ggD +xAv +bub +eRn +eRn +eRn +hFI +rzS +sRa +dez +aaM +iPz +dez +dez +dez +dez +pBa +aaM +aaM +aaM +nJj +rLt +rLt +rLt +qQM +qQM +cVt +cVt +cVt +cVt +qQM +qQM +qQM +rLt +vFR +cTl +lsA +rWj +oJw +oJw +xFL +oJw +vXr +vXr +vXr +lsA +jww +fmV +hPI +lsA +iyo +moA +iyL +mmI +mmI +hIR +jZG +xdO +jZG +hIR +hFP +mmI +qPg +aNw +qak +qPg +bPY +hAs +lZn +lZn +lZn +lZn +kKi +hAs +orn +uTX +sGI +rZi +qPg +hIR +hIR +hIR +hIR +hIR +hIR +hIR +qkh +pEN +caO +hEY +hEY +nhF +pPf +pPf +myd +hEY +ovB +qkh +qkh +oIj +oIj +oPp +caz +fqJ +"} +(66,1,1) = {" +bJY +jqi +jqi +jqi +jqi +gwc +gwc +rUZ +gwc +gwc +gwc +gwc +gwc +gwc +gYm +gYm +rUZ +vfT +vSm +vCm +rtg +rUZ +gwc +gYm +gYm +rUZ +rUZ +rUZ +gYm +gwc +gwc +nIl +gwc +opz +opz +qkW +gwc +gwc +jqi +jqi +gYm +rUZ +rUZ +nIl +gwc +wAm +wAm +wAm +wAm +wAm +wAm +wAm +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +wAm +wAm +wAm +wAm +jqi +jqi +jqi +gYm +gYm +gwc +gwc +opz +opz +bHO +rUZ +gwc +gYm +jqi +jqi +gwc +gwc +nIl +gwc +gwc +opz +opz +opz +opz +opz +jqi +jqi +jqi +jqi +jqi +dez +dez +dez +dez +sRa +bIn +tCc +aaM +aaM +ctd +ctd +ctd +xeq +ggD +xAv +ggD +jxE +bcT +dHG +ggD +ggD +ggD +eOw +rzS +eRn +aaM +aaM +enI +sss +bnW +aaM +pjY +dez +dez +sRa +sRa +bIn +aaM +aaM +aaM +vFR +jTi +rLt +qQM +qQM +qQM +cVt +cVt +cVt +qQM +qQM +qQM +rLt +qrH +cTl +cTl +lsA +nCT +nCT +xGC +lsA +lsA +tGp +tGp +cNh +lsA +jww +qmB +oKd +lsA +esM +iVE +iyL +mmI +eLe +tHA +jZG +xdO +jZG +hIR +hIR +mmI +qPg +qOL +qak +qPg +bDj +biz +lZn +baX +uZX +tRs +tqq +hAs +rNb +eRY +sKE +lvG +qPg +law +law +law +law +law +law +qkh +qkh +pQj +mLL +hEY +qkh +qkh +wXH +nlr +oEn +fAG +qkh +qkh +qkh +qkh +oIj +oPp +caz +fqJ +"} +(67,1,1) = {" +bJY +jqi +jqi +jqi +jqi +gwc +gwc +gwc +nyJ +nyJ +nyJ +nyJ +nyJ +gwc +gwc +per +gwc +gYm +gYm +cdt +bwH +rUZ +gwc +gYm +jqi +cdt +rUZ +gwc +gwc +gwc +gwc +gwc +gwc +jqi +opz +opz +opz +nIl +gwc +gwc +gwc +gwc +rUZ +gwc +gYm +gYm +gwc +wAm +wAm +wAm +wAm +gYm +jqi +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +wAm +wAm +wAm +wAm +wAm +wAm +jqi +gYm +gYm +gwc +nIl +opz +opz +bHO +gwc +gwc +gwc +gYm +gYm +gwc +rUZ +rUZ +gwc +opz +gwc +gwc +opz +opz +rUZ +opz +jqi +jqi +jqi +jqi +jqi +dez +dez +dez +sRa +bIn +aaM +aaM +aaM +ctd +ctd +ctd +ctd +xeq +ggD +ggD +ggD +jxE +bcT +dHG +ggD +ggD +tDf +eOw +rzS +uBE +mLo +aaM +aaM +aaM +aaM +aaM +jse +bIn +jse +mxw +bIn +aaM +aaM +aaM +aaM +fQB +pHT +rLt +qQM +cVt +cVt +cVt +qQM +qQM +qQM +qQM +qQM +rLt +suq +cTl +cTl +lsA +lsA +lsA +lsA +lsA +pTF +pYN +pYN +ycx +lsA +mRw +pAT +eHe +lsA +iyL +iyL +lsA +hIR +hIR +hIR +jZG +xdO +jZG +jZG +hIR +mmI +qPg +qPg +qPg +qPg +qPg +hQU +lZn +lZn +hdq +hdq +tqq +dXm +qPg +qPg +qPg +qPg +qPg +hIR +hIR +hIR +hIR +hIR +hIR +iih +ize +hEY +xDU +hEY +qkh +jGA +gYk +xaO +qXv +cCs +mpC +kfX +fvf +iih +oIj +ppv +tyY +fqJ +"} +(68,1,1) = {" +bJY +jqi +jqi +jqi +jqi +nyJ +nyJ +nyJ +nyJ +nzc +tUT +fzf +nyJ +nyJ +gwc +gwc +gYm +gwc +gYm +gYm +bwH +rUZ +gwc +gYm +lfN +cdt +gwc +gYm +gwc +gwc +gwc +opz +opz +opz +opz +opz +opz +gwc +opz +opz +gwc +jJX +gwc +dKl +gwc +gYm +kZt +gwc +rUZ +wAm +sem +gwc +gYm +jqi +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +hzn +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +gYm +gwc +gwc +gwc +opz +opz +opz +gwc +gwc +gYm +gYm +gwc +gYm +kZt +rUZ +rUZ +opz +gwc +gwc +gwc +bHO +opz +opz +gwc +gwc +jqi +jqi +jqi +dez +dez +sRa +bIn +aaM +aaM +aaM +ctd +ctd +ctd +ctd +ctd +xeq +ggD +ggD +jDS +vcr +qPA +jsi +ggD +ggD +wcw +axg +uBE +uBE +bnW +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +tCc +aaM +aaM +aaM +fQB +pHT +rLt +qQM +cVt +cVt +qQM +qQM +qQM +qQM +rLt +rLt +rLt +pYT +cTl +cTl +sAh +dbE +jmU +lsA +lsA +hXZ +kBI +qrA +ofH +lsA +mRw +uyK +lsA +lsA +mmI +mmI +hIR +hIR +jZG +jZG +njw +yfZ +jZG +jZG +hIR +hIR +mmI +mmI +mmI +qPg +qPg +gCZ +abN +dMd +sIe +abN +jQC +cqp +qPg +qPg +mmI +mmI +hIR +hIR +ulu +wRv +wRv +wRv +wRv +xTt +gTR +upu +mpk +pPf +qkh +hhA +qOn +xaO +qXv +cCs +cgY +ize +fvf +iih +oIj +oIj +mlY +fqJ +"} +(69,1,1) = {" +bJY +jqi +jqi +jqi +nyJ +nyJ +nzc +tUT +tUT +tmB +uXs +rpi +fzf +nyJ +nyJ +gwc +gwc +nIl +gwc +gYm +xBk +rUZ +gwc +gwc +gwc +lfN +gYm +kZt +gwc +gwc +sem +opz +opz +opz +opz +opz +opz +opz +opz +opz +opz +opz +opz +opz +gwc +gwc +gwc +gYm +gwc +rUZ +opz +opz +gwc +gwc +gwc +jJX +jqi +jqi +jqi +jqi +gYm +jqi +jqi +gYm +jqi +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +gwc +gwc +gwc +gwc +qkW +opz +opz +gwc +gwc +gYm +pSH +rUZ +rUZ +gYm +gYm +gYm +rUZ +opz +opz +gwc +nIl +gwc +opz +opz +gwc +gwc +jqi +jqi +jqi +dez +dez +bIn +aaM +aaM +aaM +aaM +ctd +ctd +bWx +ctd +ctd +xeq +ggD +ggD +jxE +bcT +dHG +ggD +ggD +wcw +bFx +enI +sss +bnW +ctd +ctd +ctd +ctd +aaM +aaM +aaM +aaM +aaM +uvq +aaM +aaM +aaM +aaM +aaM +shQ +iXM +rLt +qQM +qQM +qQM +qQM +rLt +rLt +rLt +rLt +rLt +rLt +rLt +shQ +eUf +xXA +nJj +dbE +vzF +lsA +lsA +tGp +tGp +lsA +lsA +wfE +rAI +lsA +hFP +hIR +hIR +hIR +jZG +jZG +jZG +jZG +yfZ +jZG +jZG +jZG +hIR +hIR +hIR +hIR +hIR +qPg +wlm +pPC +utn +wlm +pPC +uLl +wlm +qPg +mmI +hIR +hIR +hIR +jZG +xsP +jZG +jZG +jZG +jZG +iih +grE +hEY +xDU +pPf +qkh +vjp +cYN +xaO +qXv +dvt +efF +fvf +fPp +iih +oIj +oIj +mlY +fqJ +"} +(70,1,1) = {" +bJY +jYB +jYB +jYB +nfL +nzc +tmB +uXs +uXs +uXs +uXs +uXs +rpi +fzf +nyJ +jqi +gwc +nIl +gYm +gYm +xBk +rUZ +gwc +gfm +ecG +gYm +gYm +gwc +gwc +opz +opz +opz +rUZ +bHO +bHO +rUZ +opz +opz +opz +opz +opz +opz +opz +opz +opz +opz +gwc +gwc +gwc +gwc +gwc +opz +opz +opz +opz +jqi +rUZ +gwc +jqi +jqi +gYm +rUZ +rUZ +gYm +jqi +jqi +wAm +wAm +rUZ +rUZ +gYm +gYm +gwc +dKl +gwc +gwc +opz +opz +opz +gwc +gwc +gwc +ycc +tjR +tjR +tjR +tjR +tjR +ycq +ycq +tjR +ycq +ycq +tjR +tjR +rUZ +bHO +opz +gwc +jqi +jqi +jqi +nyH +nyH +aaM +aaM +uvq +aaM +aaM +ctd +ctd +ctd +ctd +ctd +xeq +ggD +ggD +jxE +bcT +dHG +ggD +xAv +eOw +ctd +ctd +ctd +fTi +nyH +nyH +nyH +ctd +ctd +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +nyH +dbE +dbE +rLt +rLt +qQM +qQM +qQM +rLt +rLt +rLt +rLt +rLt +vFR +vWc +nJj +nJj +agU +nJj +dbE +vzF +xlY +xuI +nnX +nnX +mwa +hIR +jZG +rCv +mmI +hIR +hIR +jZG +jZG +jZG +jZG +jZG +psf +yfZ +psf +jZG +jZG +jZG +jZG +jZG +jZG +hIR +hIR +hIR +jZG +jZG +jZG +jZG +vcT +hIR +hIR +hIR +hIR +jZG +ulu +wRv +wrZ +hIR +hIR +oFt +baa +qkh +qkh +sCl +rwa +pPf +qkh +qkh +vNm +gPU +vic +gUb +qkh +qkh +qkh +qkh +kPP +oIj +mlY +fqJ +"} +(71,1,1) = {" +bJY +jYB +jYB +jYB +nfL +bCm +nWi +uXs +uXs +uXs +kcb +uXs +uXs +iGD +nyJ +nyJ +gwc +gwc +kZt +bDC +nAF +rUZ +gwc +gwc +gwc +gYm +gwc +gwc +opz +opz +opz +opz +opz +opz +opz +opz +opz +opz +opz +bHO +bHO +opz +opz +rUZ +bHO +opz +opz +opz +gwc +gwc +gwc +gwc +rUZ +rUZ +rUZ +gwc +gYm +gYm +jqi +gwc +dKl +gwc +gwc +gwc +jJX +jqi +wAm +rUZ +gwc +gwc +kZt +gwc +nIl +gwc +gwc +rUZ +bHO +opz +opz +nIl +gYm +kZt +gYm +tjR +ivs +oJb +tjR +lOe +rHS +dOT +wSj +kht +rHS +dOT +ycq +rUZ +bHO +opz +gwc +gwc +gwc +lfN +nyH +nyH +aaM +aaM +aaM +aaM +aaM +ctd +ctd +ctd +ctd +ctd +xeq +ggD +ggD +lun +gnd +dHG +ggD +ggD +eOw +tBn +ctd +ctd +ctd +nyH +nyH +nyH +nyH +ctd +aaM +aaM +jxF +cfs +cfs +cfs +cfs +rTU +nyH +nyH +dbE +dbE +dbE +rLt +qQM +qQM +qQM +rLt +nJj +nJj +vFR +ljj +cTl +sAh +nJj +jGJ +nJj +nJj +dbE +vzF +xlY +pGC +hxo +hxo +duG +hIR +jZG +rCv +hIR +hIR +jZG +jZG +jZG +jZG +jZG +jZG +psf +yfZ +psf +jZG +jZG +jZG +jZG +jZG +jZG +jZG +jZG +jZG +jZG +jZG +jZG +psf +vcT +jZG +jZG +jZG +ulu +wRv +wrZ +hIR +hIR +hIR +hQp +oCn +oCn +oCn +qkh +wMm +xDU +hEY +hEY +mrD +pPf +pPf +ePx +hEY +rWB +qkh +qkh +nCF +nCF +mlY +mlY +fqJ +"} +(72,1,1) = {" +bJY +jYB +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +iGD +nyJ +gwc +gwc +gYm +gwc +bwH +rUZ +rUZ +jJX +gwc +gwc +gwc +gwc +opz +opz +bHO +opz +opz +opz +opz +opz +opz +opz +opz +opz +opz +opz +opz +opz +opz +opz +bHO +rUZ +opz +opz +opz +gwc +gwc +gwc +gwc +gwc +gYm +kZt +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +opz +opz +rUZ +rUZ +opz +gwc +gwc +axo +eKG +bUd +tjR +uZD +pwq +uMj +rHS +hnN +bKl +hnN +jro +hnN +cFh +tjR +opz +opz +qkW +nIl +gwc +opz +lfN +nyH +nyH +aaM +aaM +aaM +aaM +iPz +pBa +ctd +ctd +ctd +ctd +xeq +ggD +ggD +tDf +lun +jsi +ggD +ggD +eOw +ctd +ctd +ctd +nSH +mLo +nyH +nyH +jxF +jxF +jxF +jxF +jxF +wOo +glf +veg +pae +rTU +cfs +cfs +cfs +jxF +beN +uUD +qQM +qQM +qQM +uUD +lrZ +xOM +shQ +eUf +eUf +xXA +nJj +nJj +nJj +nJj +dbE +vzF +xlY +mNo +hxo +vfi +hIR +hIR +jZG +sjo +wRv +wRv +fle +ppf +ppf +fle +wRv +wRv +wRv +aTi +wRv +wRv +fle +ppf +ppf +fle +wRv +wRv +wRv +fle +ppf +ppf +fle +djc +sos +djc +wRv +wRv +wrZ +hIR +oFt +sXb +mmI +mmI +oCn +oCn +oCn +oCn +qkh +vvO +dAw +upu +qxz +iwI +quu +iwI +sVq +hEY +grE +uBB +qkh +nCF +nCF +tXX +tXX +fqJ +"} +(73,1,1) = {" +bJY +jYB +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +iGD +nyJ +gwc +rUZ +jJX +bDC +glE +rUZ +rUZ +rUZ +rUZ +nIl +gwc +opz +opz +opz +opz +opz +opz +gwc +gwc +gwc +gwc +nIl +gwc +gwc +ueh +gwc +gwc +gwc +opz +opz +opz +opz +rUZ +opz +opz +opz +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +opz +opz +opz +opz +rUZ +rUZ +opz +opz +opz +opz +opz +rUZ +gwc +opz +opz +opz +bHO +rUZ +rUZ +gwc +gwc +kfV +nMM +uDm +tjR +elV +fgb +tjR +thL +hnN +dOT +rHS +kht +hnN +kht +ycq +opz +gwc +gwc +gwc +opz +opz +tMR +nyH +nyH +nyH +aaM +iPz +pBa +jse +sRa +pBa +ctd +ctd +ctd +xeq +ggD +ggD +ggD +ggD +ggD +ggD +ggD +eOw +ctd +ctd +ctd +rzS +uBE +mLo +nyH +jxF +vOb +xiJ +xhT +jxF +qzs +cUt +gkc +nLz +rTU +nQx +ggp +ggp +cfs +rLt +rLt +qQM +qQM +qQM +rLt +nJj +nJj +nJj +nJj +nJj +kLD +wVh +wVh +wVh +wVh +kLD +vzF +xlY +xlY +mNo +hxo +mwa +hIR +hIR +vcT +jZG +jZG +jZG +jZG +jZG +jZG +hIR +hIR +eEu +aDN +lIn +jZG +jZG +jZG +jZG +jZG +jZG +jZG +khO +jZG +jZG +jZG +jZG +psf +teJ +jZG +jZG +hIR +oFt +baa +dkA +vfi +mmI +mmI +mmI +oCn +oCn +oCn +qkh +gKo +pzW +gki +kbi +hEY +ePx +cfB +rIV +epw +kfX +jDH +qkh +tXX +tXX +tXX +tXX +fqJ +"} +(74,1,1) = {" +bJY +jYB +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +iGD +nyJ +gwc +rUZ +gwc +xBk +tlS +lLS +lLS +lLS +uBI +lwk +gwc +opz +bHO +opz +opz +opz +gwc +gfm +jxA +nIl +gwc +gwc +gwc +gwc +jqi +wAm +gwc +dKl +gwc +gwc +gwc +qkW +opz +opz +opz +bHO +opz +opz +opz +opz +opz +qkW +opz +opz +opz +bHO +opz +opz +opz +bHO +bHO +opz +opz +opz +opz +opz +bHO +bHO +opz +opz +opz +rUZ +ueh +gwc +rUZ +wRb +tjR +lrP +tjR +elV +dri +tjR +drr +hnN +hnN +fek +gXh +hnN +tjR +tjR +gwc +gwc +gwc +opz +opz +tMR +tMR +vOR +nyH +nyH +aaM +pjY +rVA +aaM +jse +sRa +pBa +ctd +ctd +xeq +ggD +ggD +ggD +ggD +ggD +ggD +ggD +eOw +ctd +ctd +ctd +enI +sss +bnW +ctd +jxF +wqp +mjc +ggp +ceV +lmr +gpU +gkc +gkc +tVw +gkc +yfC +ggp +cfs +rLt +rLt +qQM +qQM +qQM +rLt +nJj +kLD +wVh +wVh +wVh +kLD +qLy +ukx +qxg +naa +kLD +kLD +kLD +kLD +kLD +pGC +hxo +sXb +hIR +hAR +jZG +jZG +jZG +hIR +hIR +law +hQp +hIR +teH +teH +law +hIR +jZG +jZG +jZG +jZG +jZG +teH +teH +jZG +jZG +jZG +teH +teH +teJ +jZG +law +hIR +mNo +hxo +hxo +vfi +oGW +dea +oIj +ppv +caz +caz +qkh +iih +iih +iih +qkh +cSY +vDA +ydA +fgx +nkV +nkV +nkV +fgx +iDc +tXX +tXX +nCF +fqJ +"} +(75,1,1) = {" +bJY +jYB +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +iGD +nyJ +gwc +dKl +gwc +xBk +xzT +nro +qpd +qpd +vWM +xoO +opz +opz +bHO +qkW +gwc +gwc +gwc +gYm +gYm +gwc +wAm +wAm +jqi +jqi +jqi +wAm +wAm +jqi +jqi +jqi +jJX +gwc +gwc +gwc +opz +opz +opz +opz +opz +bHO +bHO +opz +opz +opz +opz +opz +opz +opz +gwc +gwc +gwc +nIl +gwc +opz +opz +opz +opz +opz +opz +gwc +gwc +gwc +gwc +rUZ +wih +kih +tjR +pwq +pwq +pwq +fgb +pOM +noo +kHz +hnN +sFQ +ciL +rHS +tjR +gYm +gYm +gwc +opz +opz +gwc +opz +tMR +nyH +nyH +nyH +nyH +pjY +sRa +pBa +aaM +jse +bIn +aaM +ctd +xeq +ggD +ggD +ggD +ggD +ggD +ggD +tDf +fjl +mLo +ctd +ctd +ctd +ctd +aaM +aaM +jxF +tnU +iaj +ggp +ceV +sSR +gkc +gkc +wVw +rTU +bbV +fWU +cbY +cfs +rLt +rLt +qQM +qQM +qQM +rLt +nJj +kLD +ojl +atJ +atJ +atJ +atJ +dlv +dlv +atJ +atJ +atJ +dlv +gfW +kLD +mNo +mpF +duG +hIR +hAR +jZG +jZG +jZG +oFt +baa +sXb +hIR +oFt +baa +sXb +hIR +hIR +jZG +jZG +jZG +jZG +jZG +teH +teH +jZG +jZG +jZG +teH +teH +vcT +jZG +law +mmI +mmI +mNo +tyY +wDY +unk +oIj +oIj +oIj +ppv +tmq +vTF +mlY +mlY +mlY +qkh +uoe +nJk +lbp +fgx +ccx +iii +dvV +iiv +iDc +iDc +iDc +nCF +fqJ +"} +(76,1,1) = {" +bJY +jYB +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +nWi +iGD +nyJ +nyJ +nyJ +gwc +xBk +xzT +rFY +mmu +sPT +nUE +sRZ +opz +opz +opz +opz +gwc +gfm +jxA +gwc +wAm +wAm +wAm +jqi +jqi +jqi +wAm +wAm +wAm +jqi +jqi +wAm +wAm +wAm +gYm +gwc +gwc +gwc +gwc +opz +opz +opz +rUZ +rUZ +opz +opz +opz +opz +rUZ +rUZ +gwc +gYm +nIl +gwc +rUZ +opz +gwc +opz +opz +opz +opz +gwc +gwc +gwc +gwc +gwc +vFF +bpG +tjR +fHW +fgb +fgb +fgb +fgb +xGw +yeh +hnN +sxB +rbu +rHS +tjR +gYm +gYm +gwc +bHO +opz +opz +opz +lfN +nyH +nyH +nyH +nyH +jse +mxw +bIn +aaM +aaM +aaM +aaM +ctd +xeq +ggD +ggD +ggD +ggD +ggD +ggD +ayu +oSU +mvk +ctd +jGX +ctd +ctd +aaM +jxF +jxF +jxF +mch +ceV +jxF +rTU +gkc +gkc +rTU +rTU +tuO +kZN +qgC +jxF +jxF +iXR +qQM +qQM +qQM +rLt +nJj +kLD +azj +hsh +wQo +vYv +lWy +vYv +lWy +sZq +lWy +sZq +iZY +dlv +kLD +mmI +eLe +hIR +hQp +hAR +jZG +jZG +hIR +dor +dkA +vfi +mmI +gLN +dkA +dkA +sXb +hIR +jZG +jZG +jZG +jZG +jZG +jZG +khO +jZG +jZG +jZG +jZG +jZG +gOt +jZG +law +mmI +lPw +nCF +oIj +oIj +oIj +oIj +blO +mlY +mlY +mlY +eKR +eKR +eKR +eKR +nkV +lZS +ofD +mlf +nkV +dSU +cle +ruZ +iiv +iDc +iDc +tXX +nCF +fqJ +"} +(77,1,1) = {" +bJY +jYB +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +rpi +fzf +nyJ +nyJ +gwc +xBk +xzT +rFY +mxi +sPT +nUE +sRZ +opz +opz +opz +gwc +gwc +kZt +gwc +jqi +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +kZt +rUZ +gYm +gwc +gwc +gwc +ueh +gwc +gwc +sem +opz +opz +opz +gwc +gwc +rUZ +gYm +gYm +gwc +gwc +rUZ +sem +opz +opz +opz +gwc +rUZ +gwc +rUZ +gwc +jqi +jqi +jqi +tjR +cvn +fgb +tjR +hiu +uBi +noo +kHz +hnN +vsf +iZu +rHS +tjR +tjR +gYm +gwc +bHO +opz +opz +lfN +lfN +nyH +nyH +nyH +nyH +aaM +aaM +ctd +fTi +aaM +aaM +ctd +ctd +xeq +xAv +ggD +ggD +ggD +ggD +ggD +sZT +uBE +mvk +ctd +ctd +ctd +aaM +aaM +jxF +jxF +doy +iaj +wFd +jxF +ecD +gkc +gkc +doZ +rTU +yjj +ggp +ggp +syN +cfs +rLt +qQM +qQM +qQM +rLt +nJj +kLD +ekU +jPN +sZq +fEX +mUw +lWy +hXN +kON +atJ +wQo +sZq +atJ +kLD +mmI +hIR +hIR +hIR +vcT +jZG +jZG +oFt +dkA +hxo +vfi +mmI +eLe +pGC +hxo +vfi +hIR +hIR +hIR +jZG +jZG +jZG +jZG +jZG +jZG +jZG +jZG +jZG +jZG +pgY +jZG +hQp +mmI +oIj +nCF +nCF +vIZ +oIj +oIj +oIj +mlY +mlY +eKR +eKR +cNv +cNv +eKR +dFU +pcE +raq +dlT +nkV +toj +dSU +sRW +iiv +iDc +tXX +tXX +nCF +fqJ +"} +(78,1,1) = {" +bJY +jYB +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +rpi +fzf +nyJ +gwc +xBk +xzT +ktS +hOY +hOY +ahH +qHS +opz +opz +gwc +gwc +gYm +gYm +jqi +jqi +jqi +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +wAm +gYm +rUZ +opz +opz +rUZ +gwc +gwc +gwc +gwc +opz +opz +opz +opz +gwc +gwc +rUZ +gYm +wAm +wAm +wAm +gwc +opz +opz +opz +gwc +gwc +opz +jqi +jqi +jqi +jqi +jqi +tjR +mjA +pwq +fgb +fgb +fgb +juN +apn +hnN +hnN +buT +hnN +dOT +ycq +gwc +nIl +opz +gwc +qkW +lfN +lfN +nyH +nyH +nyH +nyH +aaM +aaM +ctd +ctd +aaM +aaM +ctd +jTm +hfI +ggD +ggD +ggD +ggD +ggD +ggD +sZT +uBE +mvk +dez +nSH +mLo +aaM +aaM +jxF +mzy +ggp +ycu +ryF +kwu +gpU +gpU +gkc +fHX +ijH +gkc +gkc +gkc +gkc +wfw +qQM +qQM +qQM +qQM +rLt +kLD +kLD +gwA +uIk +igm +kLD +kLD +rMi +lJq +kLD +kLD +kGk +nQw +nAd +kLD +kLD +hIR +jZG +jZG +vcT +jZG +jZG +dor +dkA +hxo +duG +mmI +mmI +mNo +hxo +hxo +sXb +wgu +hIR +jZG +jZG +jZG +jZG +jZG +jZG +jZG +jZG +jZG +jZG +pgY +jZG +law +mmI +dea +ppv +caz +caz +vIZ +mlY +mlY +mlY +eKR +eKR +cNv +cNv +cNv +eKR +wEu +fZt +hMA +dlT +nkV +qsi +cle +lwy +iiv +tXX +tXX +tXX +tXX +fqJ +"} +(79,1,1) = {" +bJY +jYB +jYB +jYB +nfL +bCm +uXs +nWi +uXs +uXs +uXs +uXs +uXs +uXs +uXs +iGD +nyJ +gwc +xBk +kSI +qRv +qRv +qRv +lIQ +mEY +gwc +gwc +gwc +gwc +gYm +gYm +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +wAm +wAm +wAm +wAm +wAm +wAm +jqi +wAm +wAm +wAm +wAm +jqi +jqi +gwc +gYm +gYm +opz +rUZ +dKl +gwc +gwc +opz +opz +opz +gwc +gwc +gwc +jqi +haJ +qNs +rUZ +opz +qkW +opz +nIl +opz +jqi +jqi +jqi +jqi +jqi +jqi +tjR +ylq +pwq +fgb +pwq +qGx +mwM +ejB +hnN +hnN +ciL +hnN +iSg +tjR +gwc +gwc +opz +opz +opz +lfN +lfN +nyH +nyH +nyH +nyH +iPz +pBa +ctd +iPz +jEv +pBa +ctd +xeq +tDf +ggD +ggD +ggD +ggD +ggD +wcw +ehE +uBE +mvk +dez +rzS +mvk +aaM +aaM +jxF +iXK +ggp +xrh +qOm +feO +kUu +bvL +meY +bvL +fUN +sig +fzH +fzH +mrg +iAK +hZU +hZU +uqa +qQM +uUD +kLD +kLD +kLD +kLD +kLD +kLD +iXw +vYv +eys +hOt +kLD +kLD +kLD +kLD +kLD +kLD +hIR +jZG +jZG +vcT +hIR +hIR +gLN +mpF +duG +mmI +jBc +mmI +mmI +mNo +mpF +duG +mmI +hIR +hIR +jZG +jZG +jZG +law +hIR +hIR +hIR +hIR +jZG +gOt +jZG +law +jpA +caz +vIZ +ppv +tmq +vTF +mlY +eKR +eKR +eKR +eKR +eKR +eKR +eKR +eKR +nkV +cUU +hMA +fxZ +nkV +dSU +cle +dSU +iiv +tXX +tXX +tXX +mlY +fqJ +"} +(80,1,1) = {" +bJY +jYB +jYB +nfL +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +iGD +nyJ +gwc +lZp +vCm +rtg +rUZ +gwc +rUZ +gwc +gwc +gfm +jxA +gwc +gwc +gwc +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +wAm +wAm +wAm +jqi +jqi +wAm +wAm +wAm +jqi +jqi +jqi +wAm +wAm +wAm +wAm +wAm +jqi +gwc +gwc +opz +bHO +gwc +gwc +jJX +jqi +haJ +bHO +rUZ +gwc +opz +opz +gwc +gwc +opz +jqi +jqi +jqi +jqi +jqi +tjR +tjR +ycq +ycq +tjR +tjR +fUD +rHS +hnN +hnN +kht +hnN +dOT +ycq +gwc +bHO +opz +opz +opz +lfN +lfN +nyH +nyH +nyH +iPz +sRa +rVA +nSH +sRa +sRa +bIn +ctd +xeq +ggD +ggD +ggD +ggD +ggD +ggD +fjl +uBE +uBE +bnW +dez +enI +bnW +aaM +ctd +jxF +jxF +rjP +sOy +ubv +jxF +okN +avX +vZk +okV +rTU +xVo +gpU +gkc +aRK +cfs +rLt +qQM +bjv +qQM +qQM +oUl +fGi +vYv +vYv +qZN +vYv +qZN +sZq +hAd +cNm +bnh +sZq +qZN +vYv +wnq +oUl +jZG +jZG +jZG +vcT +hIR +hFP +fzk +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +lUZ +hIR +hIR +jZG +jZG +jZG +lUX +jiQ +jiQ +jiQ +lUX +jZG +vcT +jZG +law +oPp +caz +bRD +mlY +mlY +eKR +eKR +eKR +eKR +eKR +mlY +mlY +mlY +mlY +mlY +fgx +jqd +hMA +lJw +fgx +ajv +cle +sbE +iiv +tXX +tXX +mlY +mlY +fqJ +"} +(81,1,1) = {" +bJY +jYB +jYB +nfL +nzc +tmB +uXs +uXs +uXs +uXs +uXs +uXs +uXs +kcb +uXs +iGD +nyJ +gwc +gwc +gwc +bwH +rUZ +gwc +gfm +jxA +gwc +lfN +lfN +lfN +gwc +gwc +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +wAm +wAm +wAm +jqi +jqi +jqi +jqi +jqi +jqi +wAm +jqi +wAm +wAm +wAm +wAm +wAm +jqi +jqi +jqi +opz +opz +qkW +opz +gwc +rUZ +jqi +wAm +gYm +rUZ +opz +opz +nIl +gwc +rUZ +jqi +jqi +jqi +rUZ +rUZ +gYm +gYm +gwc +gwc +rUZ +tjR +ycq +ycq +hUX +hUX +ycq +ycq +ycq +tjR +opz +gwc +gwc +gwc +lfN +tMR +nyH +nyH +nyH +nyH +pjY +sRa +rVA +pjY +uBE +bIn +ctd +tBn +xeq +xAv +ggD +ggD +ggD +ggD +ggD +wVL +sss +bnW +dez +nSH +mLo +tCc +aaM +ctd +jxF +jxF +jxF +mch +ceV +jxF +vVr +ioR +vZk +coq +rTU +lyS +gpU +gkc +ycu +jxF +rLt +qQM +hoQ +ddj +ddj +lDM +iDY +tXl +rNy +qqM +rNy +lBx +vEc +iTl +pzI +qqM +fIr +oCE +lBx +xML +lDM +hqR +cIs +cIs +ijT +hIR +mmI +mmI +mmI +cey +mmI +mmI +oFt +baa +sXb +mmI +mmI +mmI +hIR +lUX +mKU +oyQ +ltk +lUX +aTh +aTh +aTh +lUX +oyQ +aKq +mKU +lUX +oPp +nlx +vTF +mlY +eKR +eKR +eKR +mlY +mlY +mlY +mlY +fgx +nkV +nkV +nkV +fgx +jCJ +hMA +fnP +fgx +fgx +kHI +fgx +fgx +nCF +mlY +mlY +oIj +fqJ +"} +(82,1,1) = {" +bJY +jYB +jYB +nfL +bCm +kcb +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +iGD +nyJ +nyJ +gwc +gwc +xBk +rUZ +gwc +nIl +gwc +lfN +lfN +lfN +gYm +rUZ +gwc +gwc +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +rUZ +qDa +gwc +jqi +jqi +jqi +jqi +wAm +wAm +jqi +jqi +wAm +wAm +wAm +wAm +wAm +jqi +jqi +gwc +gwc +opz +opz +bHO +opz +gwc +rUZ +wAm +gwc +gwc +opz +opz +gwc +gYm +kZt +jqi +jqi +rUZ +opz +opz +rUZ +gwc +gwc +opz +bHO +jic +uQm +uQm +uQm +uQm +uQm +uQm +uQm +vNv +bHO +gwc +gwc +opz +tMR +tMR +vOR +nyH +nyH +nyH +pjY +sRa +rVA +jse +bIn +ctd +ctd +ctd +xeq +ggD +ggD +ggD +ggD +ggD +ggD +fpO +hmC +nSH +nwk +uBE +bnW +aaM +aaM +ctd +nyH +jxF +tnU +iaj +ggp +ceV +jWe +ioR +qxL +sge +cfs +ggp +sal +ohz +ycu +cfs +rLt +qQM +gwl +qQM +uUD +kLD +kLD +kLD +kLD +kLD +kLD +fmE +vYv +wIz +kRF +kLD +kLD +oLz +kLD +kLD +kLD +hIR +hIR +hIR +hIR +hIR +mmI +eLe +mmI +mmI +mmI +oFt +dkA +mLX +dkA +nnX +mwa +mmI +hIR +jiQ +qQO +aeb +fBQ +tbB +iEG +ktv +eWO +cnl +fBQ +cyf +fzt +lUX +qqq +vTF +eKR +eKR +eKR +eKR +mlY +mlY +jpA +vIZ +oIj +fgx +qqF +mCx +cUU +fgx +qap +nts +nzF +qdr +cCL +oOA +bxZ +nkV +mlY +mlY +oIj +oIj +fqJ +"} +(83,1,1) = {" +bJY +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +iGD +nyJ +gwc +gwc +gwc +xBk +rUZ +rUZ +rUZ +gwc +gwc +gwc +gYm +gYm +gwc +rUZ +rUZ +gwc +jqi +jqi +jqi +jqi +jqi +jqi +jqi +jqi +rUZ +rUZ +hBE +gwc +gwc +gwc +rUZ +gYm +gwc +wAm +jqi +jqi +jqi +wAm +wAm +wAm +jqi +jqi +rUZ +gYm +gwc +gwc +opz +bHO +opz +gwc +gwc +gwc +gwc +opz +opz +opz +gwc +gYm +jqi +jqi +rUZ +opz +opz +jJX +gwc +gwc +sem +opz +bHO +jbU +uQm +uQm +uQm +uQm +uQm +uQm +uQm +gkm +bHO +opz +gwc +opz +lfN +vOR +nyH +nyH +nyH +nyH +pjY +sRa +bIn +aaM +ctd +ctd +ctd +ctd +xeq +ggD +ggD +ggD +ggD +ggD +ggD +ggD +eOw +rzS +uBE +mvk +aaM +aaM +nSH +mLo +nyH +jxF +wqp +yiu +ryF +ceV +rGB +ioR +mCH +jwV +cfs +ggp +gkc +gkc +vqA +cfs +rLt +qQM +bjv +qQM +rLt +kLD +kLD +qzB +pnG +ghw +kLD +kLD +atD +eys +kLD +kLD +wsg +hyR +goQ +kLD +kLD +fLL +hIR +hIR +mmI +mmI +mmI +mmI +mmI +mmI +mmI +dor +jHd +hen +mNo +hxo +vfi +mmI +mmI +jiQ +irt +oZj +oZj +vnm +cSO +iLO +bed +cnl +bAg +tWQ +bTH +bXu +eKR +eKR +eKR +eKR +eKR +mlY +mlY +jpA +caz +caz +vIZ +fgx +rKg +tTx +lZS +fgx +vEa +tUz +gdf +cle +cle +cle +xGa +nkV +mlY +oIj +gMB +jpA +fqJ +"} +(84,1,1) = {" +bJY +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +iGD +nyJ +jJX +nIl +nIl +lZp +vCm +rtg +rUZ +rUZ +gwc +gwc +gwc +kZt +gwc +gwc +gwc +gwc +jJX +jqi +wAm +wAm +wAm +jqi +gwc +gwc +rUZ +kYX +thm +gYm +nIl +gwc +gwc +gwc +rUZ +gYm +gwc +rUZ +rUZ +wAm +wAm +rUZ +gYm +gwc +gwc +gYm +kZt +gwc +gwc +opz +bHO +opz +opz +opz +opz +opz +opz +opz +rUZ +gwc +gYm +gYm +gwc +gwc +gwc +gwc +gwc +opz +opz +opz +opz +tjR +uQm +uQm +uQm +uQm +uQm +uQm +uQm +tjR +opz +opz +gwc +opz +lfN +nyH +nyH +nyH +nyH +iPz +sRa +rVA +tCc +ctd +ctd +ctd +ctd +ctd +xeq +ggD +ggD +ggD +ggD +ggD +xAv +ggD +eOw +rzS +uBE +mvk +aaM +aaM +rzS +mvk +nyH +jxF +dsB +hGT +tFr +jxF +bMW +ioR +vZk +uBc +cfs +ryF +gkc +gkc +vqA +cfs +rLt +qQM +hxb +qQM +rLt +rLt +kLD +aGB +rCn +hHk +jHR +kLD +vYv +hAd +kLD +fGN +bnh +qZN +dlv +kLD +wjv +pTf +mmI +mmI +mmI +uWt +lxf +lxf +lxf +rkY +lxf +lxf +lxf +uWt +mmI +pGC +vfi +mmI +mmI +jiQ +irt +bAg +npL +qDx +cSO +tNl +bed +qMF +bJh +beL +bTH +oyQ +eKR +eKR +eKR +eKR +mlY +mlY +gMB +oPp +caz +caz +wDY +fgx +cUU +dSU +cUU +fgx +oWQ +dPU +gdf +dSU +dSU +dSU +wXZ +nkV +mlY +oIj +jpA +caz +fqJ +"} +(85,1,1) = {" +bJY +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +nWi +iGD +nyJ +nyJ +gwc +gwc +gwc +gwc +lZp +sns +rUZ +rUZ +rUZ +rUZ +rUZ +gYm +gYm +gwc +nIl +gwc +gwc +gwc +gYm +gYm +gYm +gYm +gwc +rUZ +hBE +kZt +gYm +gwc +gwc +gYm +rUZ +rUZ +gwc +gwc +gwc +nIl +gwc +wAm +kZt +gYm +gwc +gwc +gwc +rUZ +rUZ +gwc +gwc +opz +opz +opz +opz +rUZ +bHO +bHO +opz +opz +gwc +gwc +rUZ +gwc +opz +opz +opz +bHO +bHO +opz +opz +rUZ +wRb +bII +fjr +fjr +fjr +fjr +fjr +axT +vhx +opz +opz +opz +gwc +lfN +nyH +nyH +nyH +iPz +sRa +sRa +rVA +ctd +ctd +qmN +ctd +ctd +jTm +hfI +ggD +ggD +ggD +ggD +ggD +ggD +ggD +mKd +rzS +uBE +mvk +aaM +aaM +enI +bnW +nyH +bfd +bfd +bfd +bfd +rTU +vVs +cOU +vZk +pkI +rTU +ryF +kcT +ohz +jsE +jxF +rLt +qQM +hxb +qQM +rLt +rLt +kLD +tMB +mta +ibW +cZx +bvH +kYx +jaV +aNb +hYL +wtF +qZN +atJ +kLD +mmI +mmI +mmI +mmI +uWt +uWt +azT +aSo +uWs +rkY +jpD +tIY +tIY +uWt +uWt +mpF +duG +eLe +lUX +lUX +irt +npL +lUX +igw +hyb +hZX +yaQ +nDg +lUX +pKc +irt +lUX +lUX +mlY +eKR +eKR +mlY +faD +jpA +caz +caz +wDY +fgx +fgx +fgx +hIv +nkV +fgx +fgx +dSU +gdf +eXT +rDX +oDR +qdX +fgx +fgx +jpA +caz +caz +fqJ +"} +(86,1,1) = {" +bJY +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +rpi +fzf +nyJ +nyJ +nyJ +gwc +gwc +gwc +lZp +lKO +nlS +nlS +ioL +rUZ +rUZ +rUZ +rUZ +gwc +gwc +dKl +gwc +gwc +kZt +gYm +gYm +gwc +rUZ +hBE +gYm +gYm +gwc +gYm +kZt +gYm +rUZ +gwc +gwc +wAm +gwc +gwc +gwc +gYm +rUZ +gYm +gwc +nIl +gwc +jqi +gYm +gwc +gwc +gwc +opz +opz +opz +opz +opz +rUZ +opz +opz +opz +rUZ +opz +opz +opz +opz +opz +opz +opz +gwc +gwc +iQz +xaJ +xaJ +xaJ +xaJ +xaJ +xaJ +xaJ +bcX +gwc +bHO +bHO +vSw +lfN +nyH +nyH +aaM +pjY +sRa +sRa +bIn +tBn +ctd +ctd +ctd +jTm +hfI +ggD +ggD +ggD +ggD +ggD +ggD +ggD +wcw +bFx +rzS +uBE +mvk +aaM +aaM +dez +nyH +nyH +bfd +teT +cWh +wYS +cKy +cKy +iLM +kDC +cKy +cKy +bfd +bfd +bfd +bfd +bfd +rLt +qQM +hxb +qQM +rLt +rLt +lad +phL +dlv +atJ +ycV +kLD +dZB +kMk +kLD +poK +iID +dfJ +dXs +kLD +hIR +eLe +mmI +mmI +rkY +cNs +aCD +rVb +uWs +rkY +hyU +feh +aCD +gNX +rkY +mmI +mmI +mmI +lUX +sDr +pWP +npL +sRq +dVA +vSV +sRc +hMF +rVO +sRq +pKc +bAg +cLS +jiQ +mlY +eKR +eKR +mlY +mlY +oPp +caz +wDY +nCF +fgx +jGG +oFU +cle +cUU +nkV +tfc +dSU +rYb +jcg +yhA +wcF +vzi +xiG +fgx +caz +caz +wDY +fqJ +"} +(87,1,1) = {" +bJY +jYB +jYB +nfL +bCm +nWi +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +rpi +tUT +fzf +nyJ +nyJ +gwc +gwc +gwc +gwc +uXs +kcb +mzl +nlS +nlS +ioL +rUZ +rUZ +rUZ +rUZ +rUZ +gwc +nIl +nIl +gwc +gwc +rUZ +pAi +nsh +gYm +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +jqi +jqi +nIl +nIl +gwc +jJX +gwc +gwc +gwc +gwc +opz +opz +bHO +bHO +rUZ +bHO +opz +opz +opz +rUZ +rUZ +rUZ +rUZ +gwc +nIl +nIl +gwc +gwc +jJX +gwc +gwc +gwc +gwc +tjR +gkM +wTZ +tjR +rUZ +nyH +nyH +ctd +enI +sss +bnW +ctd +ctd +ctd +ctd +jTm +hfI +ggD +ggD +ggD +ggD +ggD +ggD +ggD +ggD +eOw +nIX +enI +uBE +mvk +aaM +aaM +ctd +nyH +nyH +heX +quh +jOC +iNH +cKy +vKz +bix +iDt +wWG +cKy +kKq +smD +kJM +eco +heX +rLt +qQM +hxb +qQM +rLt +uUD +kLD +rYE +rYE +rYE +kLD +kLD +bQE +jTB +kLD +kLD +kLD +kLD +kLD +kLD +hIR +hIR +lUZ +mmI +rkY +hGE +klM +eDH +tIY +rkY +jbR +bkY +wiY +fHk +rkY +hIR +mmI +mmI +lUX +fcH +wNe +npL +sRq +usJ +sdI +tqz +tOp +mRF +sRq +pKc +bAg +cLS +jiQ +jTj +eKR +eKR +mlY +ezg +qqq +vTF +nCF +nCF +fgx +jGG +xMC +cle +cOW +nkV +ofc +dSU +gdf +tun +rDX +oDR +glu +uyj +fgx +ppv +wDY +oIj +fqJ +"} +(88,1,1) = {" +bJY +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +rpi +tUT +tUT +tUT +tmB +uXs +nWi +uXs +uXs +uXs +uXs +uXs +mzl +nlS +nlS +nlS +ioL +rUZ +rUZ +rUZ +rUZ +rUZ +rUZ +rUZ +rUZ +bpT +gwc +gwc +gwc +nIl +gwc +gwc +gwc +pjf +pjf +pjf +pjf +pjf +pjf +pjf +pjf +pjf +pjf +gwc +jJX +gwc +gwc +gwc +gwc +wAm +rUZ +rUZ +gwc +gwc +gwc +sem +rUZ +gwc +gwc +gwc +gwc +gwc +gwc +gwc +rUZ +rUZ +jJX +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +gwc +xGz +uQm +uQm +mjY +rUZ +nyH +nyH +jTm +gwW +gwW +gwW +gwW +gwW +gwW +gwW +hfI +iwn +ggD +ggD +jDS +aGL +mdA +tDf +ggD +ggD +eOw +ctd +ctd +enI +bnW +aaM +aaM +tBn +nyH +nyH +heX +qKp +cMp +quh +ukP +bix +bix +iDt +eoO +kjn +eoO +eoO +ocl +swm +heX +rLt +qQM +hxb +qQM +qQM +rLt +uUD +rLt +rLt +rLt +cUe +mMC +tDp +ewp +cbV +mwx +blb +sJk +sJk +iOJ +mmI +orx +mmI +mmI +rkY +ckE +ngV +bMM +jKz +rkY +tIY +ojo +iVf +aiV +rkY +hIR +hIR +hIR +lUX +cHS +uWz +tNn +sRq +dVA +vkL +tqz +sZC +mRF +sRq +pKc +bAg +cLS +jiQ +mlY +eKR +eKR +eKR +mlY +nCF +nCF +nCF +nCF +fgx +jGG +xMC +cle +adC +nkV +vPG +cle +gdf +voe +nSX +xrU +vzi +krk +fgx +oIj +oIj +oIj +fqJ +"} +(89,1,1) = {" +bJY +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +nWi +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +kcb +uXs +uXs +mzl +nlS +nlS +nlS +nlS +nlS +nlS +nlS +nlS +iIa +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +wAm +wAm +wAm +opz +qkW +dKl +gwc +gwc +gwc +rUZ +ueh +rUZ +gwc +gwc +jqi +gwc +gwc +gwc +gwc +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +dEN +puq +puq +mHl +gwW +gwW +gwW +hfI +ggD +ggD +ggD +ggD +ggD +tDf +ggD +ggD +ggD +ggD +ggD +jxE +ihJ +mjb +jjQ +ggD +ggD +eOw +saZ +ctd +ctd +ctd +aaM +aaM +ctd +ctd +nyH +bfd +mgb +csS +rbo +rQZ +dNW +dNW +hdc +dNW +cUG +dNW +coG +mAC +jwA +bfd +iXR +qQM +hxb +qQM +qQM +qQM +qQM +qQM +qQM +qQM +rBl +vCW +vCW +bKb +vzZ +mwx +aiZ +aiZ +ezM +iOJ +wgU +hIR +wgU +wgU +rkY +rkY +rkY +wsm +lnJ +rkY +lnJ +ssD +rkY +rkY +rkY +law +law +law +lUX +lUX +irt +tNn +lUX +gKQ +cKE +tqz +wZv +qJY +lUX +raP +irt +lUX +lUX +mlY +eKR +eKR +eKR +mlY +nCF +nCF +nCF +nCF +fgx +fgx +lkV +cle +lZS +fgx +fgx +hMu +rYb +eXT +rDX +oDR +qdX +fgx +fgx +oIj +dea +oIj +fqJ +"} +(90,1,1) = {" +bJY +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +nWi +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +kcb +uXs +uXs +wAm +wAm +wAm +opz +gwc +gwc +rUZ +gwc +gwc +gwc +gwc +gwc +jqi +jqi +jqi +uXs +uXs +uXs +uXs +kcb +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +dEN +puq +puq +mWN +ggD +ggD +xAv +ggD +ggD +ggD +ggD +ggD +ggD +ggD +ggD +ggD +ggD +ggD +xAv +jxE +gwF +nep +dHG +ggD +ggD +eOw +ctd +jGX +ctd +ctd +aaM +aaM +ctd +ctd +nyH +bfd +bfd +bfd +bfd +cKy +wWG +gOU +wWG +wWG +cKy +hPx +iDt +ocl +swm +heX +rLt +qQM +hxb +qQM +qQM +qQM +qQM +qQM +qQM +qQM +oEQ +bni +vCW +bKb +gBt +tTc +jtI +aiZ +cJP +iOJ +hIR +hIR +mmI +mmI +rkY +ycB +mkW +mEM +unZ +mil +unZ +mEM +unZ +unZ +mRR +jZG +jZG +hIR +hIR +jiQ +cLS +oZj +azt +cDx +qVu +dQO +vvD +uVB +nFo +cUh +bTH +bXu +eKR +eKR +eKR +eKR +mlY +mlY +nCF +nCF +nCF +nCF +nCF +fgx +beJ +cle +dSU +wEu +cle +cle +rYb +dSU +cle +cle +wXZ +fgx +oIj +blO +oIj +oIj +fqJ +"} +(91,1,1) = {" +bJY +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +wAm +rUZ +rUZ +gwc +gwc +gwc +gwc +gwc +gwc +gwc +jqi +jqi +jqi +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +dEN +puq +puq +mWN +ggD +ggD +ggD +ggD +ggD +ggD +ggD +ggD +ggD +ggD +ggD +ggD +ggD +ggD +ggD +lun +rMq +aOy +dHG +ggD +ggD +iNy +rLt +rLt +uUD +uUD +lrZ +lrZ +uUD +uUD +bfd +bfd +pop +pop +pop +cKy +cKy +cKy +fbv +cKy +cKy +pFc +iDt +ocl +kqk +heX +rLt +qQM +hxb +qQM +qQM +rLt +uUD +rLt +rLt +rLt +cUe +deC +bni +bax +oeK +mwx +oiP +oiP +fop +iOJ +hIR +jBc +mmI +mmI +rkY +fdH +boE +bCD +xvk +rNc +xvk +nEm +bYx +rNc +xho +wRv +sYz +jZG +hIR +jiQ +cLS +oZj +bep +qGU +cQZ +ahm +eMF +cFl +eYi +bep +jFY +oyQ +eKR +eKR +eKR +eKR +sDD +nCF +nCF +nCF +nCF +nCF +caz +fgx +ujc +rBH +cor +pGk +cor +uuu +xRJ +jHp +jHp +jHp +xcQ +fgx +oIj +oIj +mlY +mlY +fqJ +"} +(92,1,1) = {" +bJY +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +nWi +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +dEN +puq +puq +jOP +rKw +tXd +ggD +tDf +wcw +rKw +rKw +rKw +rKw +rKw +tXd +iwn +iwn +ggD +ggD +ggD +hAQ +gRH +jsi +ggD +ggD +tFZ +tUd +uUD +uUD +cBF +nJj +nJj +qrH +qTl +bfd +pop +ijR +bzu +ijR +cKy +mIi +tRo +vKz +tkP +cKy +uTB +iDt +dFI +eAx +bfd +rLt +qQM +hxb +qQM +rLt +uUD +mwx +cUe +cUe +cUe +iOJ +iOJ +oEQ +tYy +iOJ +iOJ +mwx +mwx +mwx +iOJ +mmI +mmI +xuI +mwa +rkY +acN +vjV +unZ +gzA +wmL +ycN +unZ +kjU +jFe +pOc +hIR +xdO +jZG +mmI +jiQ +wfj +eyg +snH +qGU +ode +eIX +vuh +aor +urR +snH +umy +lUX +tOD +mlY +sDD +sTQ +nlx +nCF +nCF +oIj +nCF +ppv +tyY +fgx +hIi +xhc +kUJ +fgx +cUU +wrP +kxA +cbJ +cDA +tdJ +nxF +fgx +oIj +mlY +mlY +nCF +fqJ +"} +(93,1,1) = {" +bJY +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +pyt +pdC +pdC +pdC +ljU +uXs +nWi +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +kcb +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +cXx +cXx +cXx +cXx +cXx +cXx +iEn +rnE +rnE +gGe +nyH +sAk +rKw +rKw +bFx +tBn +ctd +ctd +ctd +ctd +sAk +rKw +rKw +nTG +ggD +ggD +ggD +ggD +xAv +ggD +ggD +ggD +iNy +uUD +mrX +rLt +nJj +nJj +pYT +eAR +bfd +pop +ijR +hCC +ijR +lzu +bix +bix +bix +jpy +cKy +pJk +iDt +ocl +kqk +heX +rLt +qQM +hxb +qQM +rLt +nJj +cUe +kEA +mdV +lyX +owo +jGE +gEl +aHX +jyp +vQQ +jGQ +rMn +fWz +fqm +mmI +xuI +hxo +duG +uWt +uWt +kxx +uPu +dFf +jdd +aOz +oGs +dql +uWt +uWt +hIR +xdO +jZG +eLe +lUX +mKU +oyQ +pMe +lUX +aTh +aTh +aTh +lUX +jZZ +pMe +mKU +lUX +caz +vIZ +jCX +nlx +nCF +nCF +oIj +oIj +oIj +oIj +mlY +fgx +nkV +nkV +nkV +fgx +cUU +wJg +cUU +fgx +fgx +nkV +nkV +fgx +mlY +mlY +tXX +nCF +fqJ +"} +(94,1,1) = {" +bJY +jYB +jYB +nfL +bCm +uXs +nWi +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +pyt +kpo +qex +qex +qex +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +uXs +uXs +cXx +cXx +cXx +cXx +cXx +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +cXx +cXx +tCC +cXx +joV +joV +joV +uaf +mUv +qUt +uaf +nyH +nyH +nyH +ctd +ctd +ctd +ctd +oUp +ctd +ctd +ctd +ctd +ctd +xeq +ggD +ggD +ggD +ggD +ggD +ggD +ggD +ggD +iNy +uUD +qrH +qTl +jTi +nJj +nJj +suq +bfd +pop +ijR +oce +bzu +cKy +gwD +bix +bix +vKz +cKy +lRE +lzn +ocl +swm +heX +rLt +qQM +hxb +qQM +rLt +jGJ +cUe +ndS +nrw +gPX +aeF +ibh +gEl +aHX +goa +gEl +kpc +wHy +gBh +fqm +mmI +pGC +vfi +eLe +mmI +uWt +lnJ +lnJ +lnJ +rkY +lnJ +lnJ +lnJ +uWt +hIR +hIR +xdO +jZG +lUZ +lUX +irt +aeb +kiv +lUX +jiQ +jiQ +jiQ +lUX +tIe +kiv +irt +lUX +caz +wDY +ppv +nCF +nCF +nCF +nCF +nCF +vIZ +oIj +jTj +eKR +eKR +eKR +eKR +fgx +nkV +lUh +nkV +fgx +nCF +oIj +oIj +mlY +mlY +tXX +tXX +nCF +fqJ +"} +(95,1,1) = {" +bJY +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +nWi +pyt +pdC +kpo +qex +qex +qex +qex +cXx +avq +avq +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +kkW +kkW +kkW +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +cXx +cXx +tCC +joV +joV +joV +joV +joV +joV +ahi +hfE +hfE +bSc +pBC +nyH +nyH +nyH +ctd +jGX +ctd +nSH +mLo +ctd +kSw +ctd +ctd +sAk +nTG +tDf +ggD +ggD +ggD +ggD +ggD +ggD +iNy +uUD +suq +eAR +pHT +nJj +nJj +pYT +bfd +pop +ovX +bzu +iEV +cKy +hzW +fFu +blU +jyN +cKy +anE +iDt +nOo +jnB +bfd +rLt +qQM +hxb +qQM +rLt +nJj +cUe +nbO +gPX +gPX +dpB +xBg +eoR +iRA +tkw +tkw +tkw +jLA +rBN +fqm +mmI +mNo +duG +hIR +hIR +mmI +mmI +mmI +hIR +hIR +law +law +hQp +law +law +hIR +xdO +jZG +hIR +lUX +cLS +oZj +bTi +bAg +oZj +bAg +bAg +bAg +eYi +bep +cLS +lUX +vTF +mlY +mlY +nCF +nCF +nCF +nCF +caz +hOS +mlY +mlY +wHU +hYg +hYg +hYg +hYg +hYg +snh +eKR +mlY +oIj +jGY +oIj +oIj +tXX +tXX +nCF +nCF +fqJ +"} +(96,1,1) = {" +bJY +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +iGD +qex +qex +qex +qex +qex +qex +cXx +cXx +cXx +kWm +kWm +kWm +aCu +aCu +kkW +kkW +kkW +kkW +ftm +ftm +cXx +cXx +cXx +kkW +kkW +kWm +kWm +kWm +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +kkW +kkW +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +cXx +cXx +cXx +cXx +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +cXx +pBC +pBC +pBC +vOR +nyH +ctd +ctd +rzS +mvk +ctd +ctd +ctd +ctd +ctd +sAk +nTG +ggD +ggD +ggD +ggD +ggD +ggD +iNy +uUD +pYT +fnH +iXM +nJj +nJj +xNE +bfd +bfd +cKy +fbv +cKy +cKy +lVM +vKz +vKz +vKz +cKy +fCP +iDt +bix +bfd +bfd +uUD +qQM +hxb +qQM +rLt +iOJ +iOJ +pgd +hzI +hzI +bCV +dtE +sat +uir +tkw +pEW +tkw +qol +rBN +iOJ +iOJ +hIR +hIR +hIR +hIR +mmI +mmI +hIR +hIR +hIR +hIR +hIR +hIR +hIR +hIR +hIR +xdO +jZG +jZG +wPU +uQg +oZj +bTi +oZj +rHU +ybu +qvi +bbU +ong +toX +bYg +dpc +rfQ +eKR +mlY +mlY +oqu +nCF +nCF +tyY +wDY +mlY +eKR +aPv +uhi +uhi +uhi +uhi +uhi +pYh +mlY +mlY +oIj +oIj +oIj +oIj +tXX +tXX +nCF +nCF +fqJ +"} +(97,1,1) = {" +bJY +jYB +jYB +nfL +vtM +ljU +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +pyt +kpo +qex +qex +qex +qex +pnA +cXx +cXx +cXx +cXx +kWm +kWm +xtF +kWm +aCu +kkW +kkW +aCu +aCu +ftm +ftm +ftm +cXx +cXx +kkW +kkW +kWm +xtF +kWm +kWm +cXx +cXx +cXx +cXx +avq +cXx +kkW +kkW +cXx +cXx +cXx +cXx +cXx +cXx +avq +cXx +kkW +kkW +cXx +cXx +cXx +cXx +uXs +uXs +uXs +uXs +uXs +uXs +kcb +uXs +uXs +pnA +pnA +tCC +cXx +cXx +cXx +joV +joV +joV +joV +joV +jwZ +joV +joV +joV +joV +joV +joV +joV +joV +cXx +cXx +cXx +xJi +xJi +vOR +nyH +ctd +rzS +uBE +mLo +ctd +ctd +bWx +ctd +tBn +xeq +ggD +ggD +ggD +ggD +ggD +ggD +iNy +uUD +rLt +rLt +rLt +rLt +nJj +nJj +rLt +bfd +wYS +iNH +iVX +shk +bix +bix +tVV +vqu +uGa +dNW +izI +vKz +heX +rLt +uUD +qQM +iAc +qQM +rLt +fqm +iEa +cma +bNN +pKM +aim +dWL +gEl +oKy +tkw +tkw +tkw +qSC +vAI +jMS +fqm +hIR +hIR +hIR +hIR +hIR +hIR +hIR +hIR +hIR +ulu +wRv +wRv +wRv +wRv +wRv +aTi +wRv +wRv +pmh +xXU +jGI +kQi +fGx +daA +fGx +fGx +iiJ +fGx +kQi +qNK +pmh +vGr +wQK +utc +fen +mlY +mlY +mlY +mlY +mlY +mlY +eKR +uFf +eKR +mlY +mlY +mlY +mlY +mlY +sDD +nCF +blO +oIj +kPP +nCF +tXX +tXX +nCF +nCF +fqJ +"} +(98,1,1) = {" +bJY +jYB +jYB +nfL +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +kcb +uXs +iGD +qex +qex +qex +qex +avq +cXx +cXx +cXx +ftm +ftm +ftm +kWm +kWm +kWm +kWm +kWm +kWm +kWm +aCu +aCu +ftm +ftm +cXx +cXx +kkW +kkW +kkW +cfg +pBC +kWm +kWm +cXx +cXx +cXx +cXx +cXx +cXx +kkW +kWm +kWm +kWm +cXx +kkW +cXx +cXx +kkW +kkW +kkW +kkW +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +uXs +uXs +uXs +pnA +pnA +pnA +joV +joV +joV +joV +joV +joV +joV +joV +joV +pnA +ftm +ftm +cXx +joV +joV +joV +cXx +joV +joV +joV +joV +cXx +xJi +nyH +nyH +ctd +enI +uBE +mvk +ctd +ctd +ctd +ctd +ctd +xeq +xAv +ggD +ggD +ggD +ggD +ggD +iNy +uUD +rLt +rLt +rLt +rLt +nJj +nJj +rLt +eNj +iNH +oPr +iMq +rQZ +dNW +dNW +pNq +eoO +qWR +bix +eoO +wWG +heX +rLt +uUD +qQM +sDN +ddj +ddj +eGl +qia +jLg +kdA +kdA +pEE +tdM +jLg +vrw +drP +drP +drP +qma +jLg +bGQ +prm +wRv +wRv +wRv +wRv +wRv +wRv +wRv +wRv +sGZ +yhu +jZG +jZG +jZG +jZG +hIR +hIR +hIR +hIR +lUX +nPc +umy +cLS +eyg +urR +irt +eyg +snH +cLS +wfj +irt +lUX +mlY +mlY +mlY +eJp +utc +sHY +sTm +sTm +sHY +kdD +utc +tUO +mlY +mlY +mlY +oIj +oIj +oIj +oPp +nCF +oIj +oIj +nCF +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(99,1,1) = {" +bJY +jYB +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +iGD +qex +qex +cXx +cXx +cXx +cXx +cXx +ftm +ftm +ftm +kWm +kWm +kWm +cXx +cXx +kWm +kWm +kWm +xtF +aCu +kWm +kWm +cXx +cXx +pnA +pnA +pnA +ftm +mSm +cfg +pBC +kWm +kWm +cXx +cXx +cXx +cXx +kWm +kWm +xtF +kWm +kkW +cXx +cXx +cXx +cXx +kWm +kWm +cXx +cXx +cXx +cXx +kkW +kkW +kkW +cXx +cXx +cXx +cXx +kkW +pnA +pnA +pnA +rah +joV +joV +joV +ftm +ftm +ftm +ftm +pnA +pnA +pnA +ftm +ftm +joV +joV +joV +cXx +cXx +joV +joV +joV +joV +pBC +pBC +nyH +ctd +ctd +rzS +uBE +mLo +ctd +nSH +mLo +ctd +sAk +nTG +ggD +ggD +ggD +ggD +tDf +iNy +uUD +wqe +rLt +rLt +rLt +nJj +nJj +rLt +bfd +bvw +roh +umL +gYW +wWG +bix +lzn +wWG +cKy +sEz +sEz +eHU +heX +rLt +uUD +qQM +hxb +qQM +qQM +oEQ +sth +wHy +gEl +gEl +gEl +gEl +gEl +gEl +tkw +tkw +tkw +qol +gEl +aHX +oEQ +jZG +jZG +jZG +jZG +jZG +jZG +jZG +jZG +hIR +hIR +hIR +hIR +hIR +hIR +hIR +hIR +hIR +hIR +lUX +qBT +rvb +qaF +mhP +dEX +qaF +mhP +oyJ +qaF +rvb +liT +lUX +oIj +oIj +jTj +mlY +eKR +eKR +eKR +eKR +eKR +six +mlY +mlY +mlY +oIj +oIj +oIj +dea +oIj +ppv +nCF +nCF +bPX +nCF +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(100,1,1) = {" +bJY +jYB +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +iGD +qex +qex +cXx +cXx +cXx +cXx +kkW +cXx +cXx +cXx +cXx +cXx +cXx +tCC +cXx +cXx +cXx +kWm +kWm +cXx +kWm +cXx +htX +cXx +pnA +pnA +pnA +ftm +ftm +ftm +mSm +cfg +cfg +pBC +pBC +pBC +cXx +cXx +kWm +kWm +kWm +cXx +cXx +cXx +cXx +cXx +kWm +xtF +kWm +cXx +cXx +avq +kkW +kkW +kkW +cXx +kWm +kWm +xtF +pnA +pnA +pnA +pnA +joV +joV +jwZ +joV +ftm +ftm +ftm +ftm +pnA +pnA +pnA +pnA +joV +joV +joV +cXx +pnA +pnA +cXx +joV +joV +joV +pBC +pBC +nyH +ctd +ctd +enI +sss +bnW +ctd +rzS +uBE +mLo +ctd +xeq +ggD +ggD +ggD +ggD +ggD +iNy +uUD +krU +rLt +rLt +rLt +nJj +mIc +dbE +bfd +bfd +bfd +bfd +bfd +mmL +fZA +lzn +xCY +bfd +bfd +bfd +bfd +bfd +rLt +uUD +qQM +hxb +qQM +rLt +fqm +kMS +kjo +uxq +uNM +afU +pNo +gEl +dax +tkw +tkw +tkw +qol +vAI +iEa +fqm +hIR +hIR +hIR +hIR +hIR +hIR +hIR +hIR +hIR +wgU +wgU +wgU +wgU +wgU +mmI +mmI +mmI +rWs +rWs +rWs +rWs +tJx +uhh +nOs +uqF +uhh +xmT +iur +smQ +smQ +smQ +smQ +oIj +dea +mlY +mlY +ezg +mlY +eKR +eKR +six +mlY +nCF +nCF +kip +tWS +tWS +tWS +tWS +kip +nCF +nCF +nCF +nCF +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(101,1,1) = {" +bJY +jYB +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +uXs +pyt +kpo +qex +qex +cXx +cXx +kkW +kkW +cXx +tCC +cXx +htX +cXx +cXx +cXx +cXx +cXx +cXx +spk +cXx +kWm +cXx +cXx +cXx +cXx +cXx +pnA +pnA +pnA +ftm +ftm +ftm +ftm +ftm +ftm +mSm +cfg +cfg +cfg +pBC +pBC +pBC +pBC +pBC +pBC +cXx +cXx +aTe +aTe +tbi +tbi +tbi +cXx +cXx +cXx +cXx +cXx +kWm +kWm +kWm +pnA +pnA +pnA +pnA +pnA +pnA +joV +joV +joV +joV +joV +ftm +ftm +ftm +pnA +pnA +joV +joV +joV +joV +cXx +pnA +pnA +bGZ +cXx +joV +pBC +pBC +nyH +nyH +ioV +ioV +ioV +ioV +ioV +ioV +rzS +uBE +mvk +ctd +xeq +ggD +ggD +ggD +ggD +ggD +rVQ +uUD +uUD +rLt +wPM +rLt +nJj +nJj +dbE +beN +dbE +dbE +jPb +bfd +heX +dKc +ylK +heX +bfd +dbE +dbE +dbE +dbE +nJj +iXR +qQM +hxb +qQM +rLt +iOJ +iOJ +iOJ +iOJ +iOJ +iOJ +rBN +gEl +sXC +tkw +mit +tkw +tgJ +veG +iOJ +iOJ +mmI +wgU +wgU +wgU +wgU +wgU +wgU +mmI +lUZ +mmI +mmI +mmI +mmI +mmI +mmI +rWs +rWs +rWs +tnd +vnu +rWs +jQG +qft +tij +fKc +jkD +pKH +iXs +smQ +mgG +fMJ +smQ +smQ +smQ +oIj +oIj +oIj +mlY +mlY +mlY +six +mlY +mlY +mlY +mlY +oIj +oIj +oIj +oIj +oIj +oIj +nCF +nCF +nCF +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(102,1,1) = {" +bJY +jYB +jYB +jYB +nfL +bCm +uXs +kcb +uXs +uXs +uXs +uXs +uXs +uXs +uXs +iGD +qex +qex +qex +cXx +cXx +kkW +kkW +cXx +cXx +cXx +cXx +cXx +cXx +joV +joV +joV +rah +cXx +cXx +bGZ +cXx +kWm +kkW +kkW +cXx +pnA +pnA +pnA +ftm +cXx +cXx +ftm +ftm +ftm +ftm +ftm +ftm +ftm +mSm +cfg +cfg +cfg +cfg +cfg +cfg +aVL +ftm +ftm +ftm +ftm +ftm +mSm +pBC +cXx +cXx +pBC +pBC +cfg +cfg +pnA +pnA +pnA +pnA +pnA +pnA +pnA +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +cXx +cXx +pnA +pnA +pnA +pnA +cXx +pBC +aIA +kCs +kCs +bwl +bwl +bwl +kCs +kCs +pQL +enI +uBE +mvk +ctd +xeq +ggD +ggD +ggD +ggD +ggD +bmG +tUd +uUD +uUD +uUD +uUD +lrZ +lrZ +beN +jmU +dbE +dbE +qEk +hdF +rLt +jUb +pQl +rLt +nJj +dbE +dbE +dbE +dbE +nJj +uUD +qQM +hxb +qQM +rLt +nJj +iOJ +xIq +bNf +bNf +fOK +rBN +gEl +sXC +tkw +tkw +tkw +jLA +rBN +fqm +vCw +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +rWs +rWs +dDn +oRg +fEI +noI +rWs +rOa +xPJ +tij +qpy +jkD +xDE +dzL +smQ +ylt +cKl +fyo +psk +smQ +gbL +oIj +tXX +tXX +tXX +mlY +oOf +uhi +bUp +uhi +fHl +fHl +ups +oIj +blO +oIj +oIj +fsj +hXs +nCF +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(103,1,1) = {" +bJY +jYB +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +nWi +pyt +kpo +qex +qex +cXx +cXx +kkW +cXx +cXx +cXx +cXx +joV +joV +joV +joV +joV +joV +joV +joV +joV +cXx +cXx +tCC +kWm +kkW +kkW +cXx +cXx +pnA +pnA +ftm +cXx +cXx +ftm +ftm +cXx +cXx +cXx +cXx +ftm +ftm +ftm +ftm +ftm +ftm +ftm +ftm +ftm +ftm +ftm +ftm +ftm +ftm +ftm +mSm +cfg +cfg +cfg +aVL +ftm +ftm +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +joV +joV +joV +joV +joV +joV +joV +joV +jwZ +hfE +cXx +pnA +pnA +pnA +pnA +pnA +pBC +pBC +gnb +dVD +dVD +cmt +cmt +dVD +dVD +dVD +xcD +ctd +enI +bnW +ctd +xeq +ggD +ggD +ggD +ggD +ggD +ggD +iNy +rLt +rLt +rLt +nwE +nJj +nJj +nJj +dbE +dbE +dbE +qrH +jTi +rLt +jUb +pQl +rLt +nJj +dbE +dbE +dbE +nJj +nJj +uUD +qQM +hxb +qQM +rLt +nJj +iOJ +pBL +uvI +uvI +fOK +gBh +gEl +gEl +nGu +wHy +rbb +gEl +rBN +fqm +nJj +nJj +nJj +nJj +nJj +vFR +ljj +vWc +nJj +nJj +nJj +dbE +rWs +rWs +rWs +rWs +rWs +rWs +oRg +tnd +vnu +rWs +bdS +gPB +sJU +qpy +jkD +xDE +nHC +smQ +jRY +cKl +cKl +plU +smQ +gbL +gbL +gbL +gbL +tXX +mlY +mlY +eKR +eKR +eKR +eKR +eKR +bgr +fHl +ups +oIj +oIj +axc +hXs +oIj +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(104,1,1) = {" +bJY +jYB +jYB +jYB +nfL +vtM +wtm +uXs +uXs +uXs +uXs +uXs +uXs +uXs +iGD +qex +qex +cXx +htX +kWm +kWm +cXx +cXx +joV +jwZ +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +cXx +cXx +kWm +kWm +kWm +cXx +cXx +pnA +pnA +pnA +ftm +ftm +ftm +cXx +cXx +htX +cXx +bGZ +cXx +cXx +ftm +cXx +cXx +ftm +ftm +ftm +ftm +ftm +cXx +cXx +cXx +ftm +ftm +ftm +ftm +ftm +ftm +ftm +ftm +ftm +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +cXx +htX +joV +joV +joV +joV +hfE +cXx +cXx +pnA +pnA +pnA +pnA +cXx +pBC +dsw +gnb +dVD +cmt +cmt +cmt +cmt +cmt +dVD +sDt +pZI +pZI +pZI +pZI +oYv +ggD +ggD +ggD +ggD +ggD +xAv +hGb +isz +isz +isz +isz +fZy +nJj +nJj +nJj +dbE +qrH +eAR +pHT +rLt +jUb +pQl +rLt +vFR +vWc +nJj +dbE +hgk +rLt +uUD +qQM +hxb +qQM +rLt +rLt +iOJ +puH +uLX +uLX +iOJ +gqJ +wHy +gEl +vAI +fKu +qVm +snS +piX +fqm +rLt +nJj +nJj +xOM +vFR +cTl +cTl +sAh +nJj +nJj +dbE +dbE +rWs +jkF +ebV +oRg +sDw +sCm +oRg +sEs +noI +rWs +sXo +qQi +tij +xcy +gAw +fdh +ojh +smQ +fyo +cKl +cKl +wRc +smQ +bfm +lSG +osw +gbL +tXX +tXX +mlY +mlY +mlY +eKR +eKR +eKR +eKR +eKR +mnw +mlY +mlY +oIj +oIj +oIj +tXX +nCF +nCF +nCF +nCF +fqJ +"} +(105,1,1) = {" +bJY +ppX +ppX +jYB +nfL +nfL +vtM +ljU +uXs +uXs +uXs +uXs +uXs +pyt +kpo +qex +qex +avq +cXx +kWm +kWm +cXx +cXx +cXx +joV +joV +joV +joV +joV +cXx +cXx +cXx +joV +joV +joV +joV +cXx +tCC +kWm +kWm +pnA +pnA +pnA +pnA +pnA +ftm +ftm +cXx +cXx +kWm +kWm +cXx +cXx +kWm +xtF +cXx +cXx +cXx +cXx +gGv +kjM +iEW +iEW +iEW +rgV +rgV +vaq +kWm +xtF +kWm +kWm +ftm +cXx +cXx +ftm +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +cXx +cXx +joV +joV +joV +hfE +cXx +pnA +pnA +pnA +cXx +pBC +pBC +pBC +dsw +gnb +dVD +cmt +cmt +cmt +cmt +cmt +dVD +qzj +fUz +wJu +fBD +bHm +mvh +tDf +ggD +ggD +ggD +ggD +ggD +tRi +wJu +fBD +bHm +fUz +vXB +nJj +nJj +nJj +nJj +suq +eAR +iXM +rLt +jUb +pQl +rLt +pYT +eAR +vWc +nJj +nJj +rLt +uUD +qQM +hxb +qQM +rLt +nMR +iOJ +iOJ +iOJ +iOJ +iOJ +gTF +vov +ckP +mrT +iOJ +fqm +fqm +fqm +mwx +rLt +vFR +ljj +vWc +fQB +cTl +cTl +xXA +rLt +dbE +dbE +dbE +rWs +uyy +oRg +oRg +oRg +uyy +oRg +gJn +noI +rWs +kDK +wYv +sJU +jkD +jkD +pKH +pIh +smQ +smQ +hPB +hPB +smQ +smQ +ctL +kMy +osw +gbL +tXX +tXX +nCF +faD +jTj +mlY +unk +mlY +eKR +eKR +six +eKR +mlY +oIj +oIj +mlY +tXX +tXX +nCF +nCF +nCF +fqJ +"} +(106,1,1) = {" +bJY +ppX +nNY +jYB +jYB +nfL +nfL +vtM +ljU +uXs +uXs +uXs +uXs +iGD +qex +qex +cXx +pnA +kkW +kWm +cXx +bGZ +cXx +joV +joV +joV +joV +joV +cXx +cXx +kkW +cXx +joV +joV +joV +joV +cXx +cXx +cXx +cXx +pnA +pnA +pnA +pnA +pnA +pnA +ftm +cXx +xtF +kWm +kWm +kWm +cXx +kWm +kWm +cXx +cXx +cXx +ftm +uqs +tyC +tyC +tyC +tyC +tyC +tyC +rFj +kWm +cXx +cXx +htX +cXx +cXx +kWm +xtF +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +spk +cXx +cXx +joV +joV +ftm +pnA +pnA +pnA +pnA +cXx +pBC +pBC +dsw +dsw +gnb +dVD +dVD +dVD +cmt +cmt +cmt +cmt +qzj +fUz +eoZ +xHR +auW +jUO +pmN +pmN +pmN +pmN +pmN +pmN +kaX +eoZ +xHR +auW +fUz +vXB +nJj +jGJ +nJj +rLt +pYT +iXM +rLt +rLt +jUb +pQl +rLt +rLt +pYT +iXM +nJj +nJj +fzo +uUD +qQM +hxb +qQM +dbE +nMR +nMR +nMR +nMR +nMR +iOJ +fqm +fqm +fqm +fqm +iOJ +rLt +rLt +rLt +rLt +qrH +cTl +cTl +sAh +fQB +cTl +sAh +rLt +rLt +dbE +dbE +rWs +rWs +eRi +unz +qNS +aOF +eRi +oRg +egT +noI +iIM +jkD +lrc +tij +jkD +jkD +xDE +pIh +gbL +uRC +fGP +fGP +eKU +gbL +vPB +osw +fGP +gbL +gbL +tXX +tXX +oIj +oIj +bPX +oIj +mlY +mlY +mlY +six +eKR +mlY +oIj +oIj +oGW +mlY +tXX +tXX +nCF +nCF +fqJ +"} +(107,1,1) = {" +bJY +ppX +ppX +jYB +jYB +jYB +nfL +nfL +bCm +uXs +uXs +uXs +uXs +iGD +qex +qex +cXx +kWm +kkW +kkW +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +cXx +htX +joV +joV +joV +joV +cXx +cXx +cXx +htX +cXx +pnA +pnA +pnA +pnA +pnA +cXx +cXx +kWm +kWm +kWm +kWm +cXx +coS +coS +coS +joV +joV +ftm +uqs +lPr +ase +ase +ase +vbF +uJJ +gxr +cXx +ftm +joV +joV +joV +joV +cXx +kWm +kWm +kWm +kWm +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +cXx +cXx +cXx +ftm +ftm +pnA +pnA +pnA +pnA +pBC +pBC +pBC +dsw +wdi +jNt +cmt +dVD +dVD +dVD +cmt +cmt +dVD +qzj +fUz +bHm +fpW +wJu +fBD +fBD +lsL +sRp +sRp +lMS +fBD +fBD +bHm +fpW +wJu +fUz +vXB +nJj +nJj +nJj +rLt +vvG +rLt +rLt +eDh +jUb +pQl +qQM +rLt +rLt +rLt +rLt +rLt +rLt +qVR +qQM +hxb +qQM +dbE +nJj +agU +nJj +nMR +nMR +jGJ +nJj +nJj +nJj +nJj +nMR +nMR +mer +rLt +rLt +shQ +eUf +eUf +xXA +fQB +cTl +xXA +rLt +dbE +dbE +rWs +rWs +rfa +noI +noI +noI +vnu +noI +oRg +oRg +oRg +oRg +sxg +dDf +vza +tup +tue +xDE +dzL +gbL +qGJ +xdA +sjm +ayk +gbL +gbL +eHf +uqZ +gbL +gbL +gbL +tXX +oIj +oIj +oIj +oIj +mlY +mlY +mlY +six +eKR +mlY +oIj +dea +mlY +mlY +tXX +tXX +nCF +nCF +fqJ +"} +(108,1,1) = {" +bJY +jYB +jYB +jYB +jYB +jYB +jYB +nfL +bCm +uXs +uXs +uXs +uXs +iGD +qex +cXx +cXx +kWm +kkW +xtF +kWm +cXx +oWW +cfg +cfg +cfg +cfg +cfg +mCa +cXx +cXx +cXx +cXx +cXx +joV +joV +joV +joV +cXx +cXx +cXx +cXx +pnA +pnA +pnA +pnA +pnA +ftm +cXx +kWm +kWm +cXx +cXx +wAB +edy +oMi +joV +joV +ftm +uqs +khg +ase +ase +ase +vbF +uJJ +gxr +ftm +joV +joV +jwZ +joV +joV +cXx +ftm +cXx +kWm +kWm +cXx +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +krm +rah +hfE +joV +cXx +ftm +pnA +pnA +pnA +pnA +pnA +dsw +cju +wdi +gnb +cmt +dVD +lmx +tpJ +dVD +dVD +dVD +wgz +kYw +fUz +qUX +fUz +qUX +qUX +qUX +qUX +qUX +qUX +qUX +qUX +qUX +qUX +fUz +eSn +mqY +qQM +qQM +qQM +qQM +qQM +qQM +qQM +qQM +jUb +pQl +qQM +qQM +qQM +qQM +qQM +qQM +qjE +qQM +qQM +cjN +qQM +dbE +nJj +nJj +nJj +nMR +nMR +nMR +nJj +vFR +ljj +ljj +wMb +nMR +nJj +nJj +nJj +agU +nJj +nJj +mFC +shQ +xXA +rLt +rLt +dbE +dbE +rWs +rWs +pbe +noI +vnu +vnu +vnu +noI +uCp +aHF +ogn +krz +dzL +nkU +sJU +jkD +jkD +pfP +gAI +eHf +vtN +fGP +nNu +bel +mqD +gbL +tjn +nNu +sfR +gnu +hAe +tXX +tXX +tXX +oIj +oIj +oIj +mhx +mlY +six +eKR +mlY +jpA +vIZ +mlY +tXX +tXX +nCF +nCF +nCF +fqJ +"} +(109,1,1) = {" +bJY +jYB +jYB +jYB +jYB +jYB +jYB +nfL +bCm +uXs +uXs +nWi +uXs +iGD +qex +cXx +kWm +kWm +cXx +kWm +cXx +cXx +wyA +sak +sak +sak +sak +sak +mSm +cfg +mCa +cXx +cXx +cXx +joV +joV +joV +joV +cXx +cXx +cXx +cXx +cXx +cXx +pnA +pnA +pnA +kWm +kWm +kWm +kWm +cXx +cXx +ydP +cyA +qvF +joV +ftm +cXx +uqs +khg +ddq +ase +bKf +qNF +uJJ +nPC +ftm +joV +joV +joV +joV +joV +joV +ftm +ftm +cXx +cXx +tCC +cXx +cXx +pnA +pnA +pnA +pnA +pnA +pnA +pnA +cXx +ftm +hfE +cXx +cXx +htX +pnA +pnA +pnA +pnA +pnA +dsw +cju +wdi +gnb +cmt +cmt +slq +dTU +imr +dVD +nDd +yiF +kHL +iFn +kRa +iFn +kRa +kRa +kRa +kRa +kRa +kRa +kRa +kRa +kRa +kRa +iFn +ptC +jdu +jdu +jdu +jdu +jdu +jdu +jdu +jdu +jdu +rbY +pQl +qQM +qQM +qQM +qQM +qQM +qQM +qQM +qQM +cVt +gwl +qQM +dbE +dbE +nJj +fSW +nJj +nMR +nJj +vFR +cTl +cTl +cTl +cTl +vWc +nJj +nJj +nJj +nJj +nJj +nJj +nJj +rLt +rLt +rLt +dbE +dbE +rWs +rWs +rWs +kVL +rmQ +nBv +atF +tWO +noI +gdW +rmQ +gDJ +krz +nHC +jkD +tij +jkD +vqY +mnS +jkD +qHU +nNu +fGP +nNu +ppZ +abn +unO +nNu +nNu +nNu +gFO +gbL +gbL +tXX +tXX +oIj +oIj +oIj +oIj +mlY +six +eKR +mlY +oPp +caz +vIZ +tXX +nCF +nCF +nCF +nCF +fqJ +"} +(110,1,1) = {" +bJY +jYB +jYB +jYB +jYB +jYB +jYB +nfL +bCm +kcb +uXs +pyt +pdC +kpo +qex +cXx +xtF +kWm +kWm +cXx +cXx +oWW +aVL +sak +sak +sak +sak +sak +sak +sak +mSm +mCa +cXx +cXx +cXx +cXx +jwZ +joV +joV +joV +cXx +cXx +tCC +cXx +pnA +pnA +pnA +kWm +kWm +pnA +pnA +cXx +cXx +ydP +cEA +qvF +qQu +qQu +qQu +qQu +qQu +lcV +qQu +enq +joV +rah +cXx +ftm +cXx +joV +joV +joV +joV +joV +ftm +cXx +cXx +htX +cXx +tCC +cXx +pnA +pnA +pnA +pnA +pnA +pnA +pnA +cXx +cXx +cXx +cXx +tCC +bGZ +pnA +jKG +jKG +jKG +jKG +jKG +cju +wdi +gnb +kyL +kyL +ybR +ybR +eVM +dVD +rKf +sgu +gdw +mLQ +iDP +mLQ +iDP +iDP +iDP +iDP +iDP +iDP +iDP +iDP +iDP +iDP +mLQ +xrV +moq +bJE +gZS +gZS +bJE +vdw +vdw +vdw +vdw +kEo +jnp +ddj +uiI +hTB +hTB +uiI +ddj +ddj +ddj +ddj +dyp +qQM +dbE +dbE +dbE +nJj +nJj +nJj +nJj +shQ +eAR +eAR +eAR +eAR +xXA +nJj +nJj +nJj +nJj +nJj +eEs +uOG +rLt +eBu +dbE +dbE +dbE +rWs +rWs +pSY +cBa +fkD +noI +vnu +anj +noI +jni +rmQ +kKk +krz +dzL +jkD +tij +qft +jkD +jYZ +gAw +pSk +xmU +bCS +qqK +bGR +xmU +bCS +qqK +bBS +kCp +wIs +vLx +hAe +tXX +tXX +tXX +oIj +oIj +oIj +mlY +six +eKR +mlY +oPp +caz +caz +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(111,1,1) = {" +bJY +jYB +jYB +jYB +jYB +jYB +jYB +nfL +bCm +uXs +pyt +kpo +qex +qex +qex +cXx +cXx +kWm +kWm +cXx +oWW +aVL +sak +sak +sak +sak +sak +sak +sak +sak +sak +mSm +mCa +cXx +cXx +cXx +cXx +rah +joV +joV +joV +joV +cXx +cXx +pnA +pnA +pnA +kWm +cXx +pnA +pnA +pnA +joV +wyn +xGL +fMw +cXx +cXx +cXx +cXx +joV +joV +pqD +jjL +joV +joV +joV +cXx +cXx +cXx +cXx +ftm +cXx +cXx +cXx +cXx +cXx +cXx +joV +joV +joV +cXx +pnA +pnA +pnA +pnA +pnA +pnA +joV +joV +joV +joV +ftm +pnA +pnA +jKG +jKG +jKG +jKG +jKG +cju +wdi +gnb +ybR +kyL +ybR +ybR +eVM +dVD +rKf +aWJ +fUz +knC +vYo +rlx +fpW +fpW +hRs +cyF +cyF +tmz +fpW +fpW +knC +fBD +rlx +fUz +saR +rLt +rLt +rLt +rLt +rLt +rLt +rLt +rLt +rLt +rLt +rLt +rLt +rLt +vvG +rLt +rLt +rLt +dbE +qQM +cjN +qQM +cgj +pxM +pxM +nJj +lrZ +uUD +uUD +uUD +pYT +pxM +pxM +iXM +uUD +uUD +uUD +lrZ +nJj +pxM +pTJ +snk +snk +beN +beN +beN +rWs +rWs +rWs +tCT +cBa +mnO +noI +yde +rxU +vnu +bpO +rmQ +iAs +krz +nHC +jkD +tij +jkD +jkD +pfP +tJx +eHf +bHB +jnU +xMf +xeP +bHB +jnU +xMf +xeP +bHB +jnU +hoo +gbL +gbL +tXX +tXX +oIj +oIj +oIj +mlY +six +eKR +mlY +ppv +caz +nCF +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(112,1,1) = {" +bJY +jYB +jYB +jYB +jYB +jYB +jYB +nfL +vtM +pdC +kpo +qex +qex +cXx +cXx +cXx +cXx +htX +cXx +cXx +wyA +sak +sak +sak +sak +pvB +sak +fnm +sak +sak +sak +sak +mSm +mCa +cXx +cXx +bGZ +cXx +cXx +joV +joV +joV +cXx +cXx +pnA +pnA +kWm +kWm +kWm +cXx +cXx +joV +joV +joV +joV +cXx +swG +cXx +cXx +wmz +rLr +rLr +wmz +dOC +rLr +rLr +wmz +cXx +cXx +joV +swG +ftm +ftm +cXx +pnA +pnA +pnA +joV +joV +cXx +cXx +qwr +pnA +pnA +pnA +pnA +ftm +cXx +joV +joV +hfE +joV +joV +pnA +jKG +jKG +jKG +cju +jKG +jKG +cju +wdi +gnb +csr +ihR +geT +ybR +eVM +cmt +rKf +aTy +fUz +lpZ +hkZ +eVg +aoK +jtZ +jtZ +jtZ +jtZ +jtZ +jtZ +fub +qHv +eVg +oFK +jAY +ujI +eyr +eyr +eyr +eyr +eyr +dDb +rFX +kNs +kNs +kNs +kNs +kNs +vzS +vzS +vzS +rFX +rFX +oOg +ebQ +qvh +ebQ +ebQ +dpY +dpY +dlk +dlk +dlk +hlS +dlk +dlk +dpY +dpY +dlk +dlk +dlk +dlk +dlk +dlk +dpY +nJx +snk +pJb +dbE +dbE +dbE +rWs +cjO +rWs +rWs +ihA +xZX +noI +vnu +dfH +noI +eep +rWs +rWs +rWs +kUE +jkD +vza +tup +tue +xDE +ojh +gbL +eHf +gbL +iJf +whb +iJf +aTf +iJf +mQw +iJf +fGP +nNu +nNu +hAe +tXX +tXX +dea +oIj +oIj +mlY +six +eKR +mlY +oIj +ppv +nCF +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(113,1,1) = {" +bJY +pnA +pnA +pnA +pnA +pnA +pnA +qex +qex +qex +qex +cXx +cXx +cXx +tCC +cXx +cXx +cXx +oWW +cfg +aVL +sak +sak +sak +pvB +pvB +pvB +cjz +cjz +sak +sak +sak +sak +mSm +mCa +cXx +cXx +cXx +cXx +cXx +joV +joV +joV +joV +pnA +pnA +kWm +xtF +kWm +cXx +pnA +joV +joV +joV +bGZ +cXx +cXx +ftm +wmz +wmz +jCN +khH +lhl +mNZ +kSL +rfU +wmz +wmz +cXx +cXx +ftm +cXx +bGZ +cXx +pnA +pnA +pnA +joV +cXx +ftm +cXx +ftm +pnA +pnA +pnA +cXx +cXx +kWY +joV +jwZ +hfE +joV +pnA +pnA +jKG +jKG +jKG +cju +cju +cju +cju +wdi +gnb +ybR +uZM +lIN +xog +dnQ +cmt +tGZ +aTy +fUz +dWn +rEO +gNl +jFX +prH +lSJ +lSJ +lSJ +lSJ +ces +qoL +gNl +gNl +knC +fUz +saR +nJj +agU +nJj +nJj +nJj +pxM +pxM +nJj +nJj +nJj +nJj +nJj +nJj +nJj +nJj +pxM +pxM +oMA +qQM +aBT +cVt +qQM +qQM +qQM +qQM +qQM +kAR +sxf +oIv +qQM +qQM +qQM +qQM +qQM +qQM +qQM +qQM +qQM +qQM +cvl +dQq +snk +dbE +dbE +dbE +rWs +dOa +noI +rWs +rWs +nWe +hOk +cwG +dfH +vnu +xZK +rWs +qXj +tJf +iur +jkD +sJU +jkD +jkD +xDE +iur +fqY +vsI +eHf +kOa +jKl +wMo +gbL +cJk +grZ +wMo +pQB +nNu +lft +hAe +tXX +tXX +nCF +oIj +mlY +mlY +six +eKR +mlY +oIj +oIj +oIj +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(114,1,1) = {" +bJY +pnA +pnA +pnA +pnA +pnA +pnA +avq +cXx +cXx +cXx +cXx +cXx +oWW +cfg +cfg +cfg +cfg +aVL +sak +sak +sak +sak +cjz +pvB +pvB +pvB +pvB +cjz +cjz +sak +sak +sak +sak +mSm +mCa +cXx +cXx +tCC +cXx +cXx +joV +joV +joV +joV +pnA +pnA +kWm +htX +cXx +rah +joV +joV +joV +cXx +cXx +ftm +cXx +rLr +pQD +eRW +lit +qoW +mNZ +rrF +mst +cfx +rLr +cXx +rah +cXx +cXx +cXx +cXx +pnA +pnA +pnA +pnA +pnA +cXx +cXx +ftm +cXx +pnA +pnA +pnA +pnA +cXx +joV +joV +ftm +joV +cXx +pnA +jKG +cju +cju +cju +cju +cju +cju +wdi +gnb +ybR +kFg +kcQ +dEl +dnQ +dVD +tGZ +rVz +fUz +fUz +hIH +qNY +hOb +voT +iPA +iPA +iPA +iPA +hhm +xeR +qtW +uLf +uLf +uLf +wLB +aaM +aaM +aaM +aaM +aaM +aaM +aaM +tCc +aaM +aaM +aaM +dez +dez +aaM +uvq +dbE +dbE +dbE +qQM +lgY +hTB +bvD +bJE +vdw +vdw +vdw +vdw +vdw +vdw +vdw +vdw +vdw +vdw +vdw +vdw +vdw +ekx +iIr +qQM +qQM +gmY +qQM +dbE +dbE +rWs +rWs +rWs +uup +rWs +rWs +lrq +lrq +rqM +tTw +lrq +lrq +rWs +nko +qft +jkD +jkD +tij +afV +qft +xDE +qft +qft +qvg +gbL +jzD +cVj +jzD +cVj +jzD +cVj +jzD +cVj +jzD +cVj +gbL +gbL +cEx +oIj +mlY +jTj +mlY +six +eKR +mlY +mlY +nCF +nCF +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(115,1,1) = {" +bJY +pnA +pnA +pnA +pnA +pnA +pnA +iFo +cXx +cXx +oWW +cfg +cfg +aVL +sak +sak +sak +sak +sak +sak +sak +sak +cjz +cEi +pvB +pvB +pvB +pvB +pvB +cjz +cjz +sak +sak +sak +sak +lbN +spk +cXx +cXx +tCC +cXx +cXx +joV +joV +joV +joV +joV +pnA +avq +joV +joV +joV +joV +cXx +cXx +kWm +kWm +kWm +rLr +dca +rEm +cZZ +rjC +mNZ +uNL +rEm +djk +rLr +cXx +joV +joV +cXx +ftm +cXx +cXx +pnA +pnA +pnA +joV +joV +sxh +ftm +cXx +joV +pnA +pnA +pnA +pnA +joV +joV +joV +joV +cXx +pnA +jKG +jKG +jKG +cju +cju +cju +cju +wdi +gnb +ybR +xvt +dCi +wtX +nLh +nLh +wkO +wHP +hWt +iBD +xvJ +hWt +hWt +voT +iPA +iPA +iPA +iPA +irC +ggD +eOw +tBn +ctd +ctd +aaM +aaM +aaM +nyH +nyH +aaM +aaM +aaM +iPz +jEv +jEv +jEv +pBa +dez +dez +aaM +aaM +dbE +dbE +qQM +qQM +cVt +hxb +qQM +qQM +qQM +qQM +qQM +qQM +qQM +qQM +qQM +qQM +qQM +qQM +qQM +qQM +qQM +pQl +qQM +cVt +cVt +qQM +dbE +dbE +iaP +isq +tJx +qft +nLN +xIe +kVF +iur +qft +xDE +tJx +xIe +jBW +tJx +jkD +jkD +jkD +ivE +qpy +eHc +xDE +jkD +qft +lOL +vEA +hcK +bTa +gFI +tAB +hcK +kKl +pXU +eDU +hCj +ryP +mrO +iaP +tXX +mlY +mlY +eKR +eKR +vOH +cNv +eKR +mlY +uof +nCF +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(116,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +sak +mSm +cfg +cfg +aVL +sak +sak +sak +sak +sak +sak +sak +sak +sak +cjz +cjz +cjz +cjz +fnm +gnr +gnr +pvB +pvB +cjz +fnm +cjz +sak +sak +sak +lbN +cXx +cXx +cXx +cXx +cXx +cXx +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +cXx +pnA +kWm +xtF +kWm +rLr +ydb +rEm +rjC +rjC +mNZ +rjC +rEm +ldZ +rLr +cXx +joV +joV +cXx +ftm +ftm +cXx +pnA +pnA +joV +rah +cXx +htX +cXx +cXx +joV +joV +pnA +pnA +cXx +joV +hfE +joV +joV +pnA +pnA +jKG +jKG +jKG +cju +cju +cju +cju +wdi +nwb +nLh +nLh +nLh +krN +hWt +iBD +qaG +qTZ +hWt +oIu +eJl +qFx +hWt +qio +iPA +iPA +iPA +iPA +irC +ggD +eOw +ctd +ctd +ctd +aaM +aaM +nyH +nyH +nyH +nyH +nyH +aaM +pjY +sRa +sRa +sRa +rVA +dez +dez +dez +aaM +aaM +dbE +dbE +qQM +qQM +hxb +uUD +rLt +rLt +rLt +rLt +qsh +qDA +ggB +tDJ +tUu +qsh +rLt +rLt +rLt +prb +oCX +vdw +ekx +ekx +vdw +vdw +vdw +kwB +oPY +gAw +gAw +vkB +djp +mIv +hQB +eYm +spz +hQB +mIv +eYm +eYm +eYm +eYm +vRO +wRq +itH +atV +kyJ +jkD +jkD +sJU +jkD +eHc +eHc +eHc +wrM +wrM +wrM +wrM +eHc +bZW +ryP +mrO +iaP +tXX +mlY +eKR +eKR +eKR +bKW +eKR +eKR +mlY +mlY +mlY +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(117,1,1) = {" +bJY +pvB +pvB +pvB +pvB +sak +sak +sak +sak +sak +sak +sak +sak +sak +sak +sak +sak +sak +cjz +cjz +cjz +rNm +rNm +cjz +cjz +cjz +gnr +gnr +pvB +pvB +cjz +cjz +cjz +cjz +pvB +pvB +pvB +kkW +cXx +htX +cXx +cXx +cXx +joV +joV +joV +joV +joV +cXx +joV +joV +jwZ +joV +cXx +cXx +kWm +htX +cXx +rLr +bZj +rEm +rjC +vJl +qzH +kCt +rEm +trk +rLr +cXx +joV +joV +cXx +cXx +ftm +cXx +cXx +joV +joV +cXx +cXx +cXx +bGZ +cXx +cXx +joV +rTD +ftm +cXx +joV +hfE +joV +joV +cXx +pnA +jKG +jKG +jKG +jKG +jKG +cju +cju +wdi +wdi +wdi +wdi +wdi +wdi +hWt +dnW +aWP +eKn +sfZ +ouO +hAT +hAT +hWt +voT +iPA +iPA +iPA +iPA +irC +xAv +eOw +ctd +ctd +ctd +aaM +aaM +nyH +nyH +wNX +wNX +nyH +nyH +jse +mxw +sRa +sRa +sRa +pBa +aaM +dez +dez +aaM +dbE +rnH +qQM +qQM +hxb +rLt +sgo +rhX +daL +qDA +nbj +nbj +nbj +wWs +nbj +nbj +nCo +ufb +rhX +qDA +coh +qQM +cVt +cVt +cVt +qQM +qQM +qIu +hLu +wrM +eHc +wrM +bGk +lDO +hyx +aEV +sCs +anQ +eHc +eHc +eHc +eHc +eHc +eHc +ahG +sVp +uFL +dyG +wrM +jkD +sJU +jkD +eHc +wrM +wrM +wrM +wrM +eHc +eHc +tqr +dyG +wrM +gXi +rvb +mlY +mlY +eKR +eKR +eKR +bKW +cNv +cjT +eKR +mlY +mlY +tXX +nCF +nCF +nCF +nCF +fqJ +"} +(118,1,1) = {" +bJY +pvB +pvB +pvB +pvB +sak +sak +sak +sak +sak +sak +sak +sak +sak +sak +sak +cjz +cjz +cjz +cjz +sak +rNm +rNm +rNm +sak +cjz +wSL +gnr +gnr +pvB +pvB +cjz +cjz +cjz +pvB +pvB +pvB +kkW +kkW +cXx +cXx +cXx +cXx +cXx +joV +joV +joV +ftm +hfE +cXx +cXx +joV +joV +joV +cXx +cXx +cXx +cXx +wmz +wmz +eVT +rjC +sLX +sLX +rjC +bmi +wmz +wmz +cXx +joV +joV +joV +tCC +ftm +cXx +cXx +cXx +qwr +cXx +ftm +sxh +cXx +cXx +spk +cXx +cXx +joV +joV +joV +ftm +joV +joV +spk +pnA +jKG +jKG +jKG +jKG +mxZ +mxZ +mxZ +cju +cju +cju +cju +cju +mxZ +hWt +ita +aWP +eKn +pKO +bcJ +bcJ +jqr +hWt +voT +iPA +iPA +iPA +iPA +irC +ggD +eOw +ctd +eRn +rGp +aaM +aaM +dez +wNX +wNX +wNX +nyH +nyH +nyH +aaM +jse +sRa +sRa +sRa +jEv +pBa +dez +aaM +dbE +wTc +qQM +qQM +iAc +rLt +cFA +umg +umg +umg +pOa +nbj +dxG +qsh +nbj +pOa +hIc +umg +hIc +rhX +uTA +qQM +qQM +cVt +cVt +cVt +qQM +iaP +dzL +oro +qpy +xer +ivE +esZ +hjL +cll +tjz +dYP +eHc +eHc +wrM +oRU +qpy +trU +gSN +vfd +uFL +pfP +qpy +ipT +sJU +qpy +wHd +oRq +uVh +lQS +wHd +iOt +dYT +qpy +aif +jkD +fCv +rvb +mlY +eKR +eKR +eKR +cNv +rsA +cNv +omH +fsC +eKR +mlY +tXX +tXX +nCF +nCF +nCF +fqJ +"} +(119,1,1) = {" +bJY +pvB +pvB +pvB +pvB +cjz +sak +sak +sak +cjz +fnm +cjz +cjz +cjz +cjz +cEi +cjz +sak +sak +rNm +sak +pvB +rNm +rNm +rNm +sak +cjz +gnr +gnr +pvB +pvB +pvB +cjz +cjz +cjz +pvB +pvB +pnA +kkW +kkW +cXx +cXx +joV +cXx +cXx +cXx +joV +joV +joV +hfE +hfE +joV +joV +joV +joV +joV +joV +cXx +cXx +wmz +wmz +wmz +hfE +eDt +wmz +wmz +wmz +dAm +swG +joV +jwZ +joV +cXx +spk +qwr +ftm +cXx +cXx +joV +joV +joV +joV +joV +qwr +cXx +joV +joV +joV +hfE +pnA +joV +joV +kWY +pnA +jKG +jKG +jKG +mxZ +mxZ +mxZ +mxZ +mxZ +mxZ +mxZ +mxZ +mxZ +mxZ +hWt +xff +aWP +cGI +ouO +pkT +fNi +edI +hWt +hWt +iPA +iPA +iPA +iPA +irC +ggD +bub +eRn +eRn +eRn +hFI +aaM +dez +wNX +wNX +wNX +wNX +nyH +nyH +dez +dez +jse +sRa +sRa +sRa +rVA +aaM +aaM +ctd +ioV +qQM +qQM +iAc +rLt +eGA +xkJ +wWs +uxC +oLY +nbj +nbj +nbj +nbj +wWs +wWs +pOa +hIc +ufb +nvV +qQM +qQM +cVt +cVt +qQM +qQM +gGF +iaI +eHc +eHc +eHc +bGk +qvy +eyi +mvF +aEn +xND +eHc +wrM +wrM +eHc +eHc +wrM +akZ +gwN +jfC +bZW +eHc +jkD +sJU +jkD +dDS +jGp +jGp +jGp +dDS +dDS +dDS +jkD +pKH +qft +bUX +gGF +eKR +eKR +cNv +eKR +eKR +six +cNv +cNv +cjT +eKR +mlY +mlY +tXX +tXX +nCF +nCF +fqJ +"} +(120,1,1) = {" +bJY +pvB +pvB +pvB +pvB +cjz +cEi +cjz +cjz +cjz +wSL +cjz +jVs +cjz +cjz +cjz +rNm +rNm +rNm +rNm +cjz +pvB +pvB +rNm +rNm +rNm +cjz +cjz +gnr +gnr +pvB +pvB +cjz +cjz +cjz +pvB +pvB +pnA +pnA +kkW +kkW +joV +joV +joV +avq +cXx +cXx +cXx +joV +joV +joV +ftm +joV +joV +joV +joV +joV +box +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +htX +cXx +qwr +qwr +ftm +ftm +cXx +joV +joV +cXx +qwr +qwr +joV +joV +hfE +hfE +joV +joV +joV +cXx +pnA +pnA +jKG +jKG +mxZ +trQ +mxZ +mxZ +mxZ +qeb +jKG +jKG +mxZ +mxZ +mxZ +hWt +hWt +ylv +ags +dnY +lDn +kbb +pKk +iDG +bwt +iPA +iPA +iPA +iPA +irC +ggD +eOw +ctd +eRn +jGX +aaM +aaM +nyH +nyH +wNX +nyH +wNX +wNX +dez +dez +dez +dez +jse +mxw +mxw +bIn +aaM +aaM +ctd +ioV +qQM +qQM +hxb +rLt +pNa +xkJ +wWs +riX +wWs +pOa +nbj +nbj +pOa +xkJ +wWs +aAu +umg +ufb +rLt +aRk +qQM +qQM +qQM +qQM +qQM +qIu +hLu +qft +qft +jkD +sJU +jkD +qft +qft +jkD +jkD +qft +jkD +jkD +jkD +jkD +wrM +eYa +oIN +bFJ +eOl +eYm +eYm +dsf +eYm +eYm +mIv +mIv +mIv +eYm +hvG +tVT +hvG +jWd +mIv +uYS +ftf +uhi +bUp +uhi +uhi +uhi +ebj +uhi +oQN +cNv +eKR +mlY +mlY +tXX +tXX +nCF +nCF +fqJ +"} +(121,1,1) = {" +bJY +pvB +pvB +pvB +pvB +cjz +cjz +wSL +wSL +cjz +cjz +cjz +cjz +cjz +rNm +rNm +rNm +rNm +rNm +cjz +cjz +pvB +pvB +pvB +rNm +rNm +rNm +cjz +cjz +gnr +gnr +pvB +pvB +pvB +pvB +pvB +pvB +pnA +pnA +kkW +pnA +joV +joV +cXx +bGZ +ftm +ftm +ftm +cXx +joV +joV +joV +joV +avq +cXx +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +hfE +hfE +joV +joV +joV +cXx +cXx +aCu +qwr +qwr +cXx +ftm +cXx +cXx +qwr +qwr +joV +joV +joV +joV +joV +joV +joV +jwZ +cXx +pnA +pnA +jKG +jKG +mxZ +mxZ +mxZ +mxZ +mxZ +mxZ +mxZ +mxZ +mxZ +mxZ +mxZ +hWt +xVf +pFZ +eKn +num +lDn +kbb +pKk +iDG +bwt +iPA +iPA +iPA +iPA +irC +ggD +eOw +ctd +ctd +ctd +aaM +aaM +nyH +nyH +wNX +wNX +wNX +dez +dez +dez +dez +dez +dez +aaM +dez +dez +dez +aaM +ctd +ioV +qQM +qQM +hxb +nCo +nCo +amy +wWs +amt +wWs +hJt +pOa +oMu +amy +oMu +nbj +gCO +wWs +nCo +qDA +ddW +uUD +uUD +uUD +uUD +rLt +iaP +nHi +kVF +kVF +aag +alf +kVF +kVF +kVF +kVF +xIe +xIe +aag +tJx +jkD +jkD +jkD +ivE +qpy +dyG +jkD +jkD +qft +iur +mcV +iZB +vSx +xOI +xOI +vSx +hKr +pKH +cnQ +oNt +oNt +poX +rvb +fYg +eKR +mlY +mlY +mlY +mlY +eKR +lsk +eKR +eKR +mlY +tXX +tXX +nCF +nCF +nCF +fqJ +"} +(122,1,1) = {" +bJY +pvB +pvB +pvB +cjz +fnm +cjz +cjz +cjz +rNm +cjz +cjz +sak +cjz +gnr +rNm +rNm +rNm +rNm +rNm +pvB +sak +pvB +pvB +rNm +rNm +rNm +rNm +cjz +cjz +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pnA +pnA +pnA +pnA +pnA +joV +cXx +cXx +spk +ftm +ftm +ftm +cXx +joV +joV +joV +joV +joV +jwZ +joV +joV +joV +hfE +hfE +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +cXx +cXx +cXx +cXx +cXx +joV +joV +joV +joV +joV +joV +joV +joV +joV +cXx +cXx +joV +joV +joV +tCC +pnA +pnA +jKG +jKG +jKG +mxZ +jgR +mxZ +mxZ +mxZ +mxZ +mxZ +trQ +mxZ +mxZ +hWt +nfT +tnC +hqD +num +lDn +kft +qnD +hWt +hWt +iPA +iPA +iPA +iPA +irC +ggD +eOw +ctd +ctd +ctd +aaM +aaM +nyH +nyH +nyH +wNX +wNX +dez +dez +dez +dez +dez +dez +tCc +pjY +dez +dez +aaM +ctd +kKU +qQM +qQM +hxb +ufb +aQJ +amy +hIc +lCQ +wWs +vXx +vok +wWs +amy +amy +xkJ +nbj +nbj +aQJ +ufb +rLt +rLt +rLt +rLt +rLt +rLt +wXf +wXf +osA +osA +imF +imF +osA +osA +imF +imF +osA +osA +wXf +gYa +tJx +jkD +jkD +sJU +sjy +xDE +jkD +jkD +iur +wFT +bYk +wdP +sNM +vXM +riO +uju +wdP +bgq +tSF +tSF +tSF +bYk +bYk +wGZ +kBJ +mlY +oIj +oIj +vtd +mlY +six +eKR +mlY +vtd +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(123,1,1) = {" +bJY +pvB +pvB +gnr +gnr +cjz +cjz +rNm +rNm +rNm +rNm +cjz +sak +gnr +gnr +gnr +gnr +rNm +rNm +cjz +cjz +cjz +cjz +sak +rNm +rNm +rNm +rNm +sak +sak +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pnA +pnA +pnA +pnA +pnA +joV +cXx +cXx +cXx +cXx +cXx +cXx +joV +joV +joV +joV +ftm +ftm +joV +joV +joV +hfE +joV +cXx +ubQ +pMR +cXx +cXx +cXx +cXx +cXx +cXx +joV +joV +hfE +joV +joV +joV +joV +joV +joV +joV +joV +joV +joV +jwZ +joV +cXx +cXx +cXx +joV +joV +joV +cXx +cXx +pnA +pnA +jKG +jKG +jKG +mxZ +mxZ +mxZ +mxZ +mxZ +jgR +mxZ +mxZ +jKG +jKG +hWt +hWt +aWP +oBg +ouO +lDn +kbb +pKk +iDG +bwt +iPA +iPA +iPA +iPA +irC +ggD +eOw +ctd +ctd +ctd +tJr +aaM +aaM +nyH +nyH +nyH +dez +dez +dez +dez +dez +dez +dez +aaM +jse +dez +iPz +pBa +ctd +ctd +qQM +qQM +hxb +ufb +xBj +hIc +amy +yfh +wWs +fje +nKg +nKg +wWs +hIc +oLY +oLY +pOa +xBj +ufb +nJj +rLt +qrH +jTi +rLt +rLt +nJj +gfN +xCd +nwA +qtK +bKs +bKs +jtn +jtn +xmP +bKs +bKs +wXf +oaT +tJf +iur +qft +sJU +jkD +xDE +jkD +iur +tJf +ddD +hrn +ixu +xQm +xQm +vqe +xQm +cRM +mKc +nGl +imC +gVm +mDJ +hDv +hue +pSo +oIj +nAC +oIj +xSK +xSK +cHn +wTr +xSK +xSK +nCF +nCF +nCF +nCF +nCF +fqJ +"} +(124,1,1) = {" +bJY +pvB +pvB +gnr +gnr +cjz +njV +cjz +rNm +rNm +rNm +cjz +sak +gnr +gnr +gnr +pvB +pvB +cjz +cjz +cjz +cjz +sak +sak +rNm +rNm +rNm +rNm +rNm +rNm +cEi +pvB +pvB +pvB +pvB +pvB +pvB +pnA +pnA +pnA +kkW +pnA +joV +rah +cXx +ftm +ftm +htX +cXx +cXx +joV +cXx +ftm +ftm +cXx +joV +joV +joV +rah +cXx +ubQ +cXx +qwr +cXx +cXx +kWm +xtF +cXx +cXx +tCC +cXx +joV +joV +hfE +hfE +joV +joV +joV +joV +hfE +hfE +ftm +kkW +htX +cXx +pnA +pnA +cXx +rah +cXx +ftm +pnA +pnA +pnA +jKG +jKG +mxZ +mxZ +mxZ +mxZ +mxZ +mxZ +mxZ +mxZ +jKG +jKG +jKG +hWt +qYV +pFZ +oBg +ouO +lDn +kbb +pKk +iDG +bwt +iPA +iPA +iPA +iPA +irC +ggD +eOw +ctd +ctd +ctd +ctd +iPz +jEv +pBa +aaM +aaM +dez +dez +dez +dez +dez +dez +dez +pBa +aaM +aaM +pjY +bIn +ctd +ctd +qQM +qQM +hxb +ufb +xBj +hIc +oum +aAu +vzl +vzl +ftM +oLY +pOa +umg +oLY +oLY +lWR +fIm +ufb +nJj +qrH +eAR +iXM +fSW +nJj +nJj +gfN +bKO +aNh +haF +jtn +kgO +tCF +xQI +oAS +fBN +bKs +wXf +wXf +wXf +tJf +iur +sJU +jkD +xDE +iur +tJf +bYk +hrn +bYk +xCe +adk +rZY +rZY +adk +adk +cCp +adk +pGE +adk +bUM +qHk +dyE +xSK +xSK +xSK +xSK +xSK +tKI +fHa +rRZ +cYJ +xSK +xSK +xSK +xSK +xSK +nCF +fqJ +"} +(125,1,1) = {" +bJY +pvB +pvB +gnr +gnr +cjz +cjz +cjz +cjz +cjz +rNm +rNm +sak +pvB +pvB +pvB +pvB +sak +sak +sak +sak +sak +sak +cEi +pvB +pvB +pvB +pvB +rNm +rNm +cjz +cjz +pvB +pvB +pvB +pvB +pvB +pnA +pnA +pnA +kkW +pnA +joV +joV +cXx +ftm +ftm +ftm +cXx +joV +avq +cXx +cXx +joV +ftm +ftm +hfE +joV +cXx +cXx +kZA +kWm +kWm +kWm +ftm +ftm +kWm +kWm +htX +cXx +cXx +cXx +xKr +cXx +cXx +cXx +cXx +cXx +joV +joV +cXx +kkW +kkW +pnA +pnA +pnA +pnA +pnA +pnA +cXx +pnA +pnA +pnA +pnA +jKG +jKG +mxZ +mxZ +mxZ +mxZ +mxZ +mxZ +mxZ +jKG +jKG +jKG +jKG +hWt +qTz +ktW +hbH +ouO +lDn +kft +qnD +hWt +hWt +iPA +iPA +iPA +iPA +irC +ggD +fpO +hmC +ctd +ctd +ctd +jse +sRa +sRa +pBa +aaM +dez +dez +dez +dez +dez +dez +dez +rVA +aaM +aaM +pjY +dez +jGX +ctd +qQM +qQM +hxb +ufb +vOr +pOa +nbj +nbj +ePS +xkJ +cwS +ehl +wWs +umg +oLY +oLY +lWR +yeA +ufb +nJj +shQ +iXM +nJj +nJj +dbE +dbE +wXf +wXf +wQS +kIk +jtn +kUT +pBk +hSi +imF +gGT +ngx +jIl +skJ +wXf +wXf +dzF +dkL +jkD +pfP +fPO +bYk +wdP +ptc +wbA +krF +adk +fnq +kKy +rZY +rZY +wdP +wdP +wdP +bYk +bYk +iQv +iQv +xSK +wdp +nUy +nEt +nLe +tKI +hqI +fpQ +jWJ +kSp +heh +heh +jSu +xSK +nCF +fqJ +"} +(126,1,1) = {" +bJY +pvB +pvB +gnr +gnr +gnr +cjz +cjz +cjz +cEi +rNm +rNm +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +rNm +rNm +cjz +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pnA +pnA +kkW +kkW +kkW +pnA +cXx +cXx +joV +ftm +cXx +rah +joV +cXx +htX +joV +joV +cXx +hfE +joV +cXx +ubQ +kWm +kWm +kWm +kWm +qwr +qwr +qwr +pnA +pnA +cXx +tCC +cXx +aCu +qex +yji +cXx +rTD +cXx +soO +cXx +cXx +cXx +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +jKG +jKG +jKG +jKG +ujK +mxZ +mxZ +mxZ +jKG +jKG +jKG +jKG +jKG +hWt +hWt +hWt +hWt +hWt +lDn +kbb +pKk +iDG +bwt +iPA +iPA +iPA +iPA +irC +ggD +ggD +eOw +ctd +ctd +ctd +aaM +jse +sRa +sRa +pBa +aaM +dez +dez +dez +dez +dez +sRa +sRa +pBa +aaM +jse +dez +ctd +ctd +qQM +qQM +hxb +bqY +bqY +lNU +nbj +nbj +pOa +oGZ +amy +amy +amy +lWR +lWR +lWR +amy +sgo +qDA +nJj +jGJ +nJj +nJj +dbE +dbE +bNp +bNp +gfN +cIy +skZ +ldh +fHD +dcv +hSi +eeU +haF +eAP +eAP +eAP +hWY +osA +tJx +qfr +jkD +pKH +jkD +xzQ +flV +rZY +adk +adk +adk +rZY +rZY +adk +adk +cio +exA +wAS +bYk +oIj +mlY +mlY +xSK +unX +spM +xCh +xCh +tKI +hqI +eVL +jWJ +xCh +ssW +bkJ +jil +xSK +nCF +fqJ +"} +(127,1,1) = {" +bJY +pvB +pvB +gnr +pvB +gnr +cjz +cjz +wSL +cjz +cjz +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +rNm +rNm +cjz +cjz +sak +pvB +pvB +pvB +pvB +pvB +pnA +pnA +pnA +kkW +kkW +kkW +cXx +joV +joV +cXx +cXx +cXx +joV +joV +cXx +joV +joV +cXx +joV +joV +cXx +qwr +jKf +kWm +pnA +pnA +pnA +pnA +pnA +pnA +pnA +ftm +cXx +cXx +qex +qex +qex +olL +olL +ret +frJ +nSD +olL +olL +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +jKG +jKG +jKG +jKG +jKG +mxZ +mxZ +mxZ +jKG +jKG +jKG +jKG +jKG +jDt +jDt +jDt +jDt +hWt +lDn +kbb +pKk +iDG +bwt +iPA +iPA +iPA +iPA +fVh +ces +ggD +eOw +tBn +ctd +ctd +aaM +tCc +jse +mxw +dez +dez +dez +dez +dez +dez +dez +dez +sRa +sRa +pBa +aaM +aaM +ctd +ctd +qQM +qQM +hxb +rLt +bqY +eJx +pOa +nbj +gAa +koK +lWR +pOa +nbj +nbj +nbj +pOa +xkJ +tUu +nJj +nJj +nJj +dbE +dbE +dbE +bNp +bNp +kUU +wXf +wXf +oJo +vad +imF +okz +iPm +uat +qdR +mnq +mnq +iqK +lsx +lAO +gAw +mZR +gAw +hxL +iur +hrn +jNR +cHx +gdb +uyq +rWn +rNf +wPb +nNw +ogh +wdP +nTZ +aub +bYk +nSN +oIj +gMB +xSK +kSp +tpg +iel +xCh +tKI +fvV +eVL +jWJ +spM +ssW +ssW +heh +xSK +nCF +fqJ +"} +(128,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +cjz +cjz +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +sak +rNm +rNm +cjz +sak +sak +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pnA +pnA +pnA +kkW +kkW +joV +joV +kkW +kkW +kkW +pnA +pnA +cXx +cXx +cXx +cXx +joV +joV +cXx +kWm +kWm +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +ftm +yji +qex +olL +olL +sla +iEF +jLp +jLp +ret +frJ +frJ +olL +olL +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +tNu +tNu +tNu +jKG +jKG +jKG +jKG +jKG +jKG +jKG +jKG +jKG +jKG +jKG +jKG +tNu +tNu +jDt +jDt +hWt +utr +ohu +ohu +hWt +hWt +iPA +iPA +iPA +iPA +iPA +irC +ggD +eOw +ctd +ctd +nSH +pBa +qcE +aaM +iPz +dez +dez +dez +dez +dez +dez +dez +dez +dez +dez +dez +jEv +jEv +mLo +ctd +qQM +qQM +iAc +rLt +sgo +xQE +aOH +nbj +nbj +koK +pOa +nbj +nbj +nbj +oMu +hIc +hIc +sgo +nJj +nJj +dbE +dbE +dbE +bNp +bNp +ewE +bNp +pAy +wXf +uDt +dJd +qim +bKs +aWb +jNb +haF +haF +eAP +haF +haF +cqn +qft +roj +jkD +xDE +dzL +wdP +wdP +wdP +wdP +wdP +wdP +wdP +wdP +wdP +wdP +wdP +wdP +wdP +bYk +xSK +xSK +xSK +xSK +kSp +rcP +jEY +xCh +tKI +fvV +eVL +jWJ +spM +spM +xCh +oLQ +xSK +xSK +fqJ +"} +(129,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +cjz +cjz +gnr +gnr +gnr +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +sak +rNm +rNm +cjz +sak +pvB +pvB +pvB +pvB +sak +cjz +pvB +pvB +pvB +pnA +pnA +pnA +kkW +kkW +kkW +kkW +pnA +pnA +pnA +pnA +pnA +cXx +cXx +joV +joV +joV +cXx +kWm +xtF +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +gjK +olL +iEF +iEF +iEF +jLp +jLp +ret +jLp +jLp +jLp +jLp +frJ +olL +gjK +gjK +gjK +gjK +gjK +gjK +gjK +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +jDt +hWt +hWt +hWt +hWt +hWt +bDA +oEG +iPA +iPA +iPA +iPA +irC +ggD +eOw +ctd +ctd +rzS +sRa +jEv +jEv +sRa +dez +dez +dez +dez +dez +dez +dez +dez +dez +dez +dez +dez +dez +dez +ctd +qQM +qQM +iAc +rLt +pNa +aQJ +sQl +amy +oMu +mKm +xkJ +wWs +xkJ +wbN +xaL +pXE +uLr +bqY +bCq +dbE +dbE +bCq +jfo +jfo +jfo +jfo +bCq +qSQ +wXf +vmS +flZ +uDt +qXl +ykX +imF +nXs +eAP +haF +eAP +yfr +osA +iur +djy +jkD +pfP +tJx +vlH +fQg +mzW +jeJ +xxs +pbW +aDV +fQg +vlH +kYe +bWo +rJX +eNx +jUJ +axK +axK +bEm +jeJ +jeJ +nfR +fQg +jeJ +eee +ipN +xGQ +jWJ +ffA +ffA +yeY +oLQ +vpu +xSK +fqJ +"} +(130,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +cjz +cjz +cjz +cjz +cjz +gnr +gnr +gnr +gnr +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +sak +rNm +rNm +rNm +rNm +pvB +pvB +pvB +cEi +cjz +cjz +sak +pvB +pvB +pvB +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +cXx +cXx +ftm +joV +joV +hfE +cXx +kWm +kWm +pnA +pnA +pnA +pnA +pnA +gjK +gjK +gjK +gjK +gjK +gjK +olL +wpq +wpq +wpq +wpq +jLp +nzx +jLp +wpq +wpq +wpq +wpq +olL +gjK +gjK +gjK +gjK +gjK +gjK +gjK +tNu +tNu +tNu +tNu +tNu +uAd +uAd +ewT +iqT +eTx +uAd +iqT +iqT +uAd +ewT +ewT +vIn +tNu +tNu +tNu +tNu +tNu +bJx +bJx +tDf +voT +iPA +iPA +iPA +iPA +irC +ggD +fpO +hmC +ctd +rzS +sRa +sRa +sRa +sRa +dez +dez +dez +dez +dez +dez +dez +dez +dez +dez +dez +dez +dez +dez +ctd +qQM +qQM +hxb +rLt +pNa +pNa +qDA +bqY +bqY +qDP +xkJ +xYa +aQJ +bqY +bqY +bqY +bqY +bCq +bCq +bCq +bCq +bCq +kKf +ngZ +ngZ +ngZ +bCq +bCq +wXf +wXf +wXf +hDB +jtn +jtn +xww +haF +eAP +iay +opf +fCX +osA +nHC +dkL +jkD +oiN +ngz +xLq +mQs +mQs +rRZ +rRZ +mQs +mQs +cWP +crV +qJN +qJN +cnp +hJl +qJN +qJN +qJN +nvU +mQs +mQs +mQs +mQs +mQs +ntu +vlH +vlH +jub +spM +gno +ffA +iDe +vpu +xSK +fqJ +"} +(131,1,1) = {" +bJY +pvB +pvB +pvB +pvB +cjz +cjz +udm +cjz +cjz +cjz +gnr +gnr +gnr +gnr +gnr +gnr +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +sak +rNm +rNm +rNm +rNm +cjz +cjz +pvB +pvB +cjz +cjz +pvB +pvB +pvB +pvB +pvB +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +pnA +cXx +cXx +cXx +joV +joV +hfE +cXx +kWm +kWm +pnA +pnA +pnA +pnA +pnA +gjK +gjK +gjK +gjK +gjK +gjK +ret +bda +bda +bda +bda +ret +nzx +bda +ret +ret +ret +ret +jLp +gjK +gjK +gjK +gjK +gjK +gjK +gjK +tNu +tNu +eTx +eTx +eTx +ewT +jLU +ewT +xIR +eCh +bbR +eCh +xIR +ewT +jLU +uAd +eTx +vIn +tNu +tNu +tNu +tNu +bJx +bJx +ggD +voT +iPA +iPA +iPA +iPA +irC +ggD +ggD +apU +rVn +vga +xiC +xiC +xiC +xiC +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +hzY +oLW +qQM +qQM +hxb +rLt +rLt +nJj +nJj +scF +bqY +bqY +ggB +iKk +bqY +bqY +wAJ +jMG +bCq +bCq +kKf +kKf +ngZ +ngZ +ngZ +ngZ +kKf +kKf +fYY +kKf +qfN +ngZ +wXf +meE +eyj +jtn +lYU +eAP +fxg +wwt +imF +imF +imF +pki +sJU +jkD +pfP +iur +vlH +vlH +wzf +nKx +cmW +fpQ +jmK +iGE +hFU +oNF +wzf +cCn +axK +axK +axK +axK +ulo +fpQ +fpQ +eVL +eVL +fpQ +eVE +vlH +vlH +xtG +spM +xzx +fru +hIE +eEp +xSK +fqJ +"} +(132,1,1) = {" +bJY +pvB +pvB +pvB +pvB +cjz +cjz +udm +udm +udm +cjz +sak +gnr +gnr +gnr +gnr +gnr +gnr +gnr +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +sak +rNm +rNm +rNm +cjz +cjz +sak +sak +pvB +cjz +sak +cjz +cjz +pvB +pvB +pvB +pvB +pnA +pnA +pnA +pnA +pnA +pnA +pnA +cXx +cXx +cXx +cXx +jwZ +joV +ftm +ftm +cXx +kWm +pnA +pnA +pnA +pnA +pnA +gjK +gjK +gjK +jLp +jLp +bda +frJ +ret +frJ +frJ +frJ +ret +ret +ret +frJ +ret +ret +ret +jLp +gjK +gjK +gjK +gjK +gjK +gjK +gjK +tNu +ewT +fZC +nfE +nfE +tFk +tFk +fvs +qUA +eCh +eCh +eCh +ebX +cjc +tFk +dvO +nfE +nfE +vIn +tNu +tNu +tNu +bJx +bJx +ggD +voT +iPA +iPA +iPA +iPA +irC +ggD +ggD +ggD +mpH +oLW +ite +ite +ite +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +tTe +ite +oLW +oLW +qQM +hxb +qQM +rLt +rLt +nJj +nJj +oHG +nbj +cRv +lic +nbj +lKb +uYD +lxg +hNu +bCq +xSd +nOj +dfz +tBE +eBa +mwd +cYw +iOB +clu +cYw +ndO +ngZ +wXf +imF +imF +imF +imF +imF +imF +imF +imF +imF +qQC +iur +tij +hCD +bfb +tJx +tJx +naO +eIv +omM +lSH +eVL +vrt +uAX +xSK +xSK +prh +tKI +axK +mNF +axK +mNF +ulo +wzf +wzf +nKx +nKx +nKx +hBn +sYd +alN +aBQ +spM +lfx +xCh +kSp +kSp +xSK +fqJ +"} +(133,1,1) = {" +bJY +pvB +pvB +pvB +pvB +cjz +cjz +cjz +cjz +udm +cjz +cjz +sak +sak +gnr +gnr +ezv +ezv +wyI +wHF +wHF +cjz +pvB +pvB +pvB +pvB +cjz +sak +sak +rNm +rNm +gnr +cjz +cjz +cjz +cjz +cjz +cjz +cjz +cjz +pvB +pvB +pvB +pvB +pnA +pnA +pnA +pnA +pvB +pvB +pvB +cjz +cjz +cjz +cjz +rNm +rNm +sak +wsc +sak +wHF +wHF +wHF +pvB +pvB +pvB +gjK +gjK +jLp +bda +bda +bda +frJ +ngc +fTU +ngc +cHP +cHP +frJ +ret +frJ +frJ +frJ +frJ +gjK +gjK +gjK +qVK +qVK +gjK +gjK +gjK +tNu +ewT +nfE +dvO +dvO +tFk +wBE +wBE +erR +hGd +hGd +hGd +vIB +wBE +wBE +tFk +dvO +nfE +nfE +tNu +tNu +tNu +bJx +bJx +ggD +voT +iPA +iPA +iPA +iPA +fVh +ces +ggD +ggD +mpH +oLW +pxS +ite +ite +ubS +fiC +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +oLW +oLW +ite +ite +oLW +qQM +hxb +qQM +qQM +rLt +rLt +rLt +rKZ +nbj +cRv +lic +rzG +uNF +cIH +fht +fDm +bCq +ngZ +dfz +pHC +eJy +cYw +arb +cYw +tez +jqX +cYw +aMu +kKf +kKf +pKh +nHA +bfR +bxl +hwh +pek +mtj +lFr +bCq +jQG +qft +tij +qpy +xDE +jkD +dzL +naO +xcS +omM +tKI +fpQ +eHK +xSK +xSK +xSK +oLQ +tKI +mNF +mNF +ull +xSK +xSK +xSK +oLQ +nAh +sIK +oNA +thS +wup +qFN +vMl +qql +spM +ukj +oLQ +xSK +xSK +fqJ +"} +(134,1,1) = {" +bJY +pvB +pvB +pvB +pvB +cjz +sak +cjz +cjz +udm +cjz +cjz +sak +sak +gnr +gnr +ezv +ezv +lRo +wHF +wHF +cjz +cjz +pvB +pvB +cjz +cjz +wSL +sak +rNm +rNm +cjz +cjz +cjz +cjz +wSL +cjz +cjz +cjz +cjz +cjz +sak +pvB +pvB +pvB +pnA +pnA +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +rNm +rNm +sak +sak +cjz +cjz +wHF +wHF +wHF +pvB +pvB +gjK +gjK +jLp +bda +bda +frJ +frJ +ngc +ngc +ngc +gjK +gjK +frJ +ret +sGG +cHP +eUr +cHP +cHP +gjK +gjK +qVK +qIX +gjK +gjK +gjK +uAd +eTx +nfE +dvO +eCh +ufn +wBE +wBE +wBE +dvO +dvO +dvO +wBE +wBE +wBE +eCh +dvO +nfE +nfE +eTx +uAd +tNu +bJx +bJx +ggD +bDA +oEG +iPA +iPA +iPA +iPA +irC +ggD +ggD +apU +rVn +oLW +ubS +aKg +fiC +fiC +bJx +bJx +bJx +bJx +bJx +bJx +bJx +dbu +dbu +byZ +byZ +oLW +ite +ite +oLW +oLW +klO +hZU +hZU +ddj +ddj +ddj +fuG +fuG +fuG +vRT +kLW +dRv +uNF +lJh +olN +bCq +kKf +dfz +pHC +tpV +cYw +xuo +cYw +jIT +maZ +eBa +vDf +kKf +kKf +cfP +aTM +iSx +slj +aez +qwm +jBS +sOD +fxa +iaI +jkD +sJU +qpy +pKH +jkD +nHC +wVe +omM +eIv +tKI +aZa +xSK +xSK +sKx +xSK +prh +tKI +mNF +mNF +mNF +wxi +sbF +wxi +oLQ +spM +spM +xCh +xCh +spM +spM +vMl +qql +qan +lrx +iUR +xSK +fqJ +fqJ +"} +(135,1,1) = {" +bJY +pvB +pvB +pvB +pvB +sak +sak +sak +cjz +cjz +cjz +cjz +cjz +cjz +cjz +wHF +xPS +ezv +kNH +wHF +wHF +wHF +cjz +cjz +cjz +cjz +wSL +njV +cjz +rNm +rNm +cjz +cjz +cjz +cjz +cjz +cjz +cjz +cjz +wSL +cjz +sak +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +sak +rNm +rNm +rmu +cjz +cjz +njV +cjz +kNH +wHF +pvB +pvB +gjK +gjK +gjK +bda +frJ +frJ +cHP +cHP +gjK +gjK +gjK +nzx +ret +ret +ker +cHP +eUr +hEN +cHP +gjK +gjK +qVK +qVK +gjK +gjK +gjK +uAd +nfE +nfE +dvO +ufn +uAd +sHz +tEA +enn +dvO +dvO +dvO +tsf +tEA +fzj +uAd +dvO +dvO +kzp +eCr +uAd +tNu +bJx +bJx +tDf +ggD +voT +iPA +iPA +iPA +iPA +fVh +ces +ggD +ggD +mpH +oLW +qho +fiC +fiC +fiC +bJx +bJx +bJx +bJx +bJx +bJx +bJx +dbu +dbu +byZ +byZ +oLW +oLW +ite +ite +oLW +qQM +qQM +qQM +qQM +qQM +qQM +cRv +cRv +oku +vkp +cRv +ojs +nbj +nbj +olN +bBj +vrL +vrL +vrL +bBj +bBj +fPR +bBj +bBj +bBj +bBj +vrL +vrL +gfk +bCq +aew +mej +lvZ +hmv +fZI +sOD +mvC +rau +tPK +eYm +uYS +jJv +bVC +jkD +klY +vlH +pcW +hgp +xSK +xSK +xSK +sKx +sKx +xSK +jeJ +iTN +axK +mNF +axK +wxi +xDX +wxi +kSp +eSZ +luQ +sIK +oli +tpp +lRh +fyU +qql +tIu +inh +qrb +xSK +fqJ +fqJ +"} +(136,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +sak +sak +cjz +cjz +pvB +cjz +cjz +cjz +kNH +wHF +aJM +ezv +wHF +wHF +wHF +wHF +wHF +cjz +cjz +cjz +cjz +wSL +cjz +rNm +rNm +cjz +cjz +pvB +pvB +sak +sak +sak +cjz +wSL +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +pvB +pvB +cjz +cjz +sak +rNm +rNm +rNm +cjz +wHF +cjz +cjz +wHF +pvB +pvB +pvB +gjK +gjK +gjK +gjK +frJ +frJ +cHP +jLp +gjK +gjK +gjK +eRu +ret +ret +bih +eUr +eUr +eUr +cHP +jLp +gjK +gjK +gjK +gjK +gjK +gjK +uAd +iqT +dvO +eCh +eCh +nZx +wBE +wBE +dvO +dvO +dvO +wBE +wBE +wBE +wBE +eCh +nZx +eCr +tOU +iqT +uAd +tNu +bJx +bJx +bJx +ggD +bDA +oEG +iPA +iPA +iPA +iPA +irC +ggD +ggD +mpH +oLW +qho +fiC +fiC +xgN +bJx +bJx +bJx +bJx +bJx +bJx +bJx +dbu +dbu +dbu +byZ +byZ +oLW +oLW +ite +oLW +oLW +oLW +oLW +oLW +oLW +oLW +rKZ +cRv +oku +wCw +tOA +cRv +cRv +cRv +oxu +sOD +sOD +jBS +jBS +jBS +rHV +qDR +qDR +hVO +jBS +jBS +jBS +jBS +sOD +smw +xzz +bxm +gzz +bxm +fQZ +sOD +jEP +bCq +tJx +xzG +xzG +aCS +gSv +gSv +sgK +xSK +xSK +xSK +xSK +ngJ +spB +pNG +sKx +xSK +xSK +ulo +bEm +bEm +bEm +xSK +sbF +xSK +kSp +iJb +oLQ +oLQ +oLQ +kSp +kSp +trd +ips +oLQ +fuL +oLQ +xSK +fqJ +fqJ +"} +(137,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +sak +cjz +cjz +pvB +pvB +njV +cjz +wHF +wHF +uNp +uNp +dgD +wHF +kGF +wHF +wHF +wHF +wHF +wHF +cjz +cjz +pvB +rNm +rNm +cjz +cjz +rNm +pvB +pvB +sak +sak +cjz +udm +cjz +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +wHF +pvB +wHF +cjz +cjz +cjz +rNm +rNm +rNm +cjz +kNH +wHF +cjz +sak +pvB +pvB +pvB +gjK +gjK +gjK +jLp +frJ +frJ +frJ +jLp +jLp +gjK +gjK +gjK +nzx +nzx +cHP +eUr +hzm +eUr +cHP +jLp +gjK +gjK +gjK +gjK +gjK +tNu +tNu +uAd +nZx +nZx +nZx +hMa +hMa +vnl +vnl +wBE +ufn +wBE +wBE +wBE +nZx +nZx +hMa +hMa +nZx +uAd +tNu +tNu +bJx +bJx +bJx +ggD +ggD +voT +iPA +iPA +iPA +iPA +fVh +ces +ggD +apU +rVn +vga +xiC +xgN +ite +ite +bJx +bJx +bJx +bJx +bJx +bJx +byZ +dbu +dbu +byZ +oLW +gwn +oLW +ite +hOO +oLW +oLW +oLW +oLW +oLW +oLW +rKZ +cRv +oku +bqm +gPm +fuG +fuG +sRv +uWc +xCw +xCw +aQz +aQz +xCw +wbB +qDR +qDR +vhh +aQz +aQz +aQz +aQz +dZQ +fTZ +unE +xCw +hrk +aQz +rau +sDZ +gGr +bCq +qaF +mhP +uTp +qaF +mhP +uTp +qaF +xSK +ayt +qBG +qBG +qBG +pNG +pNG +sKx +xSK +gEW +mNF +axK +axK +mNF +xSK +jIV +xSK +xSK +xSK +xSK +xSK +oLQ +oLQ +kSp +iQW +eJm +xSK +xSK +xSK +xSK +fqJ +fqJ +"} +(138,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +cjz +cjz +cjz +cjz +cjz +wHF +wHF +ezv +ezv +uQd +wHF +jok +ahu +wHF +wHF +wHF +wHF +wHF +pvB +pvB +rNm +rNm +cjz +sak +pvB +pvB +pvB +sak +cjz +cjz +udm +udm +cjz +cjz +pvB +pvB +pvB +pvB +cjz +cjz +kNH +wHF +wHF +cjz +cjz +cjz +rNm +rmu +rNm +cjz +pvB +cjz +cjz +sak +pvB +pvB +pvB +gjK +cHP +jLp +jLp +frJ +frJ +frJ +frJ +frJ +ngc +cHP +cHP +ret +ret +cHP +sde +lZs +aGQ +frJ +frJ +gjK +gjK +gjK +gjK +gjK +tNu +tNu +uAd +nZx +tNu +nZx +vIn +nZx +tFk +oQU +vIn +vIn +vIn +oQU +nZx +nZx +nZx +vIn +nZx +nZx +uAd +tNu +tNu +bJx +bJx +dqy +ggD +ggD +bDA +oEG +iPA +iPA +iPA +iPA +fVh +ces +ggD +apU +rVn +ite +ite +ite +ite +bJx +bJx +bJx +bJx +bJx +bJx +bJx +byZ +byZ +byZ +oLW +oLW +oLW +ite +ite +ite +ite +ite +ite +ite +oLW +rKZ +cRv +oku +irK +cRv +cRv +nbj +uKO +uYz +ptw +bxm +bxm +uGz +uGz +jEq +aQz +vYp +qSn +bxm +bxm +bxm +bxm +ivP +bCq +ixS +ixS +ixS +bCq +ixS +krZ +bCq +bCq +vBC +kha +kha +kha +vBC +kha +vBC +vBC +vBC +vBC +vBC +oxX +pCF +pNG +gui +xSK +pFH +mNF +mNF +axK +axK +xSK +jIV +jIV +jIV +jIV +jIV +xSK +wxi +wxi +wxi +wxi +xSK +fqJ +fqJ +fqJ +fqJ +fqJ +fqJ +"} +(139,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +cjz +udm +udm +cjz +wHF +wHF +uNp +uNp +uQd +wHF +pAp +wHF +hvk +wHF +wHF +wHF +cjz +cjz +pvB +rNm +rNm +cjz +sak +pvB +pvB +pvB +pvB +cjz +cjz +udm +udm +udm +cjz +sak +sak +sak +pvB +njV +wHF +wHF +wHF +cjz +cjz +cjz +cEi +rNm +rmu +rNm +cjz +pvB +cjz +cjz +sak +pvB +pvB +pvB +gjK +cHP +cHP +frJ +frJ +cHP +cHP +cHP +ngc +xgV +xgV +cHP +ret +ret +cHP +lzX +isd +frJ +gjK +gjK +gjK +gjK +gjK +gjK +gjK +tNu +tNu +tNu +tNu +tNu +tNu +vIn +nZx +tFk +tFk +vIn +tNu +tNu +oQU +oQU +vIn +tNu +tNu +iqT +iqT +tNu +tNu +tNu +bJx +bJx +dqy +ggD +xAv +ggD +bDA +oEG +iPA +iPA +iPA +iPA +fVh +ces +ggD +mpH +oLW +xov +ite +ite +ite +ite +bJx +bJx +bJx +bJx +bJx +bJx +byZ +byZ +byZ +byZ +oLW +ite +ite +ite +bJx +bJx +tTe +ite +oLW +rKZ +cRv +cRv +lic +cRv +nbj +kOg +aRi +uYz +bCq +kKf +nkP +arh +fFz +euw +jBS +sOD +fZI +mHo +eBa +tSf +ruL +bCq +bCq +xhJ +mqq +pNG +wzx +lRK +lRK +lRK +dAg +dAg +dAg +lRK +lRK +dAg +dAg +lRK +lRK +dAg +dAg +lRK +ueE +pCF +pNG +xSK +xSK +wLQ +axK +axK +mNF +axK +xSK +xSK +jIV +jIV +jIV +jIV +sbF +sbF +sbF +sbF +sbF +jIV +jIV +bJY +bJY +bJY +bJY +bJY +"} +(140,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +udm +udm +cjz +cjz +wHF +wHF +wHF +wHF +wHF +wHF +wHF +wHF +wHF +wHF +wHF +cjz +rNm +rNm +rNm +rNm +cjz +sak +pvB +pvB +pvB +pvB +pvB +cjz +cjz +cjz +udm +cjz +sak +sak +sak +udm +cjz +wHF +wHF +wHF +cjz +cjz +cjz +cjz +rNm +rNm +sak +cjz +cjz +cjz +wHF +cjz +pvB +pvB +pvB +cHP +cHP +ngc +ngc +ngc +cHP +cHP +cHP +xgV +ngc +hHD +cHP +ret +ret +hHD +eUr +fEa +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +tNu +tNu +nZx +tNu +nZx +nZx +tNu +tNu +kcr +kcr +vIn +tNu +tNu +bAp +aqQ +vIn +tNu +tNu +tNu +tNu +tNu +nUb +nUb +bJx +bJx +dqy +dqy +ggD +ggD +ggD +bDA +ssy +ssy +oEG +iPA +iPA +irC +ggD +dIF +xov +xov +xov +nei +ite +ite +oLW +bJx +bJx +bJx +bJx +bJx +byZ +byZ +byZ +byZ +oLW +ubS +bJx +bJx +bJx +bJx +ite +ite +ite +rKZ +cRv +cRv +lic +tWt +nbj +wAJ +aRi +aRi +bCq +kKf +vzA +crM +rKr +euw +jBS +jBS +fZI +nRr +eBa +wFD +ngZ +jfo +pNG +ltr +wvU +pNG +wzx +dAg +qZK +hVx +byM +lRK +dAg +qZK +hVx +byM +lRK +dAg +qZK +hVx +byM +lRK +nBC +pCF +ngJ +xSK +xSK +gnR +axK +axK +axK +axK +xSK +xSK +jIV +jIV +jIV +jIV +jIV +xDX +sbF +nct +sbF +jIV +jIV +bJY +nuv +nuv +nuv +nuv +"} +(141,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +udm +udm +cjz +cjz +cjz +cjz +wHF +wHF +pvB +kAL +kAL +mfw +pvB +kNH +cjz +cjz +cjz +rNm +rNm +rNm +cjz +cjz +cjz +pvB +pvB +pvB +pvB +pvB +cjz +cjz +cjz +cjz +cjz +cjz +sak +sak +udm +wHF +wHF +wHF +wHF +cjz +ndg +ndg +cjz +rNm +rNm +sak +cjz +cjz +njV +cjz +wHF +pvB +pvB +pvB +cHP +ngc +rib +btw +mqv +cHP +cHP +cHP +gjK +gjK +cHP +hHD +ret +ret +cHP +cHP +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +tNu +tNu +nZx +nZx +nZx +nZx +nZx +nZx +nZx +nfE +nfE +tNu +tNu +nfE +wuD +msA +hBy +hBy +tMu +tNu +tNu +nUb +rbh +bJx +bJx +dqy +dqy +dqy +ggD +odU +ehZ +ehZ +xQv +bDA +oEG +iPA +irC +ggD +apU +rVn +xov +gGV +ite +ite +oLW +oLW +byZ +bJx +bJx +bJx +bJx +bJx +bJx +byZ +oLW +oLW +xyU +xgN +bJx +ite +ite +ite +ite +ite +rKZ +cRv +cRv +lic +nbj +wAJ +wAJ +aRi +cmB +bCq +kKf +xTb +tIC +jtt +xFN +aCK +jBS +qwm +mls +eBa +mNS +ngZ +jfo +xhJ +voU +npc +pNG +wzx +dAg +nBC +vRz +rIH +lRK +dAg +ueE +qsj +wRm +dAg +dAg +vuA +vRz +wRm +dAg +nBC +pCF +ngJ +xSK +xSK +wfZ +mNF +mNF +axK +mNF +xSK +xSK +jIV +jIV +jIV +jIV +jIV +sbF +sbF +sbF +sbF +sbF +jIV +bJY +nuv +nuv +nuv +nuv +"} +(142,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +udm +udm +cjz +cjz +cjz +cjz +cjz +cjz +pvB +iwR +iwR +pvB +cjz +cjz +cjz +cjz +rNm +rNm +rNm +rNm +cjz +wSL +cjz +pvB +pvB +pvB +pvB +pvB +cEi +sak +sak +cjz +cjz +wSL +sak +sak +udm +wHF +wHF +wHF +wHF +cjz +ndg +ndg +cjz +cjz +rNm +sak +rNm +cjz +cjz +cjz +kNH +pvB +pvB +oGn +jLp +ngc +gDf +gjK +ngc +ngc +ngc +ldi +gjK +olL +olL +cHP +ret +ret +cHP +xDn +xDn +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +tNu +nZx +nZx +nZx +nZx +nZx +nZx +tFk +nfE +nfE +eCh +eCh +lDx +nfE +lDx +tFk +oQU +hBy +tNu +tNu +nUb +nUb +tNu +bJx +bJx +dqy +dqy +tDf +mpH +ygc +oLW +eBQ +xQv +voT +iPA +irC +ggD +ggD +mpH +oLW +oLW +ite +ite +oLW +byZ +byZ +byZ +bJx +bJx +bJx +bJx +bJx +oLW +oLW +ubS +ucN +ite +ite +ite +ite +ite +ite +hzY +bCq +bCq +icC +rfW +bCq +bCq +pib +wnh +uYz +bCq +kKf +kTh +sEG +ngZ +xFN +jBS +jBS +qwm +kKf +kKf +kKf +ngZ +jfo +eUj +npc +pNG +pNG +xCt +dAg +nBC +lOi +pSw +lRK +dAg +ueE +pla +wRm +lRK +lRK +vuA +ili +wRm +dAg +ueE +bkK +jeo +ngJ +xSK +mNF +mNF +axK +axK +mNF +xSK +jIV +jIV +jIV +jIV +jIV +sbF +som +sbF +sbF +sbF +sbF +jIV +bJY +nuv +nuv +nuv +nuv +"} +(143,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +cjz +cjz +cjz +cjz +cjz +htz +htz +cjz +cjz +cjz +cjz +cjz +cjz +cjz +cjz +rNm +rNm +rNm +rNm +rNm +cjz +cjz +udm +udm +pvB +pvB +pvB +pvB +pvB +sak +sak +sak +sak +pvB +pvB +pvB +pvB +pvB +wHF +wHF +wHF +cjz +ndg +ndg +cjz +cjz +rNm +rNm +rNm +rNm +wSL +cjz +cjz +wHF +wHF +oGn +jLp +ngc +rtu +ngc +tGU +ign +ngc +gjK +olL +olL +cHP +cHP +dil +nET +fgP +frJ +xDn +xDn +gjK +gjK +gjK +frJ +frJ +gjK +jLp +jLp +tNu +tNu +nZx +nZx +nZx +dOz +hVN +oMe +tFk +lDx +nfE +eCh +nZx +vbB +hVN +jIz +tFk +hBy +ewT +tNu +tNu +tNu +tNu +bJx +bJx +bJx +bJx +ggD +mpH +oLW +oLW +oLW +jpS +voT +iPA +fVh +ces +ggD +mpH +oLW +oLW +ite +oLW +oLW +byZ +byZ +byZ +oLW +ite +ite +bJx +bJx +bJx +ite +xyU +xgN +ite +ite +ite +bCq +bCq +bCq +bCq +bCq +xFN +jBS +izw +qwm +bCq +bCq +pFf +pFf +bCq +bCq +bCq +bCq +bCq +xFN +jBS +jBS +qwm +bCq +jfo +jfo +jfo +bCq +pNG +pNG +org +pNG +xCt +dAg +nBC +dAg +rIH +lRK +lRK +nBC +dFr +qOk +lRK +lRK +aNA +ili +wRm +lRK +ueE +dzt +pNG +ngJ +isV +dAg +eDz +eDz +eDz +dAg +ojV +jIV +jIV +jIV +jIV +ksa +ksa +sbF +sbF +jIV +sbF +sbF +jIV +bJY +nuv +nuv +nuv +nuv +"} +(144,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +cjz +njV +cjz +cjz +cjz +htz +htz +htz +htz +htz +cjz +cjz +cjz +cjz +htz +htz +htz +htz +htz +rNm +cjz +cjz +cjz +cjz +udm +udm +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +wHF +wHF +cjz +cjz +cjz +cjz +cjz +cjz +rNm +rNm +rNm +cjz +cjz +cjz +wHF +wHF +oGn +jLp +cHP +ngc +fDk +xoT +eRh +ngc +jLp +olL +ldi +cHP +ngc +pPn +jwC +cHP +frJ +frJ +xDn +frJ +frJ +frJ +frJ +cHP +ngc +ret +ret +ret +uAd +ewT +nZx +dvO +ufn +vIn +bzr +nfE +tNu +eQd +hTS +nZx +eUv +xIR +bzr +tFk +kzp +ewT +dvO +ufn +ufn +tNu +bJx +bJx +bJx +bJx +ehZ +uSu +oLW +bJx +oLW +jpS +voT +iPA +iPA +fVh +ces +mpH +oLW +oLW +ite +oLW +byZ +byZ +byZ +byZ +oLW +oLW +ite +bJx +bJx +bJx +ite +bJx +ite +ite +ite +ite +bCq +kKf +ngZ +ngZ +aie +dBs +aEp +vCv +qwm +hMN +ngZ +qGi +avS +bCq +bCq +nNI +nNI +bCq +jfo +icC +fwj +jfo +bCq +pNG +pNG +pNG +pNG +pNG +pNG +pNG +cVM +qOk +dAg +nBC +cMX +nST +lRK +lRK +ueE +gDq +qOk +lRK +dAg +vuA +kbg +wRm +dAg +nBC +pCF +org +pNG +wzx +dAg +vjc +hBw +vjc +dAg +nBC +pNG +gpk +gpk +gpk +ksa +ksa +ksa +jIV +sbF +xDX +sbF +jIV +bJY +nuv +nuv +nuv +nuv +"} +(145,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +cjz +cjz +wSL +cjz +cjz +cjz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +cjz +cjz +cjz +gnr +cjz +udm +udm +sak +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +wHF +wHF +wHF +wHF +cjz +cjz +sak +sak +cjz +rNm +rmu +rNm +cjz +cjz +wHF +cjz +wHF +oGn +jLp +cHP +ngc +ngc +ngc +vxw +cHP +jLp +jLp +cHP +ngc +olL +cHP +hmV +uXN +cHP +frJ +frJ +frJ +frJ +cHP +cHP +cHP +kBj +fzv +ret +ret +ewT +uWL +dvO +dvO +ufn +ufn +hHy +nfE +eCh +eCh +eCh +nZx +vtF +auH +cjc +dvO +oyu +caV +dvO +dvO +ufn +tNu +bJx +bJx +bJx +oLW +oLW +pxS +ite +bJx +oLW +jpS +bDA +oEG +iPA +iPA +irC +mpH +oLW +oLW +ite +oLW +byZ +byZ +byZ +byZ +byZ +oLW +ite +ite +bJx +bJx +ite +bJx +ite +ite +ite +ite +bCq +kKf +ebe +ngZ +ngZ +mZd +euw +qyo +fZI +hMN +ngZ +qGi +avS +bCq +nNI +nNI +nNI +nNI +roG +vBC +vBC +vBC +vBC +dWh +dWh +dWh +dWh +dWh +jRA +jRA +vBC +jrA +lRK +fiB +kha +jrA +lRK +dAg +iRP +kha +jrA +dAg +dAg +iRP +kha +jrA +dAg +ueE +pCF +ngJ +pNG +wzx +dAg +vjc +hBw +vjc +dAg +nBC +pNG +vXY +cVM +idN +ksa +ksa +ksa +ksa +sbF +sbF +sbF +jIV +bJY +nuv +nuv +nuv +nuv +"} +(146,1,1) = {" +bJY +pvB +pvB +pvB +pvB +cjz +cjz +cjz +cjz +cjz +cjz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +cjz +cjz +cjz +cjz +udm +sak +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +sak +wHF +wHF +wHF +wHF +wHF +cjz +sak +sak +sak +cjz +cjz +rmu +rNm +rNm +sak +wHF +cjz +cjz +udm +hHS +jLp +jLp +gjK +frJ +frJ +cHP +frJ +cHP +hHD +cHP +ngc +cHP +cHP +noG +iqy +cHP +cHP +ret +ret +ret +tSM +ngc +ret +ret +ret +yaU +kXl +nfE +nfE +nfE +dvO +nfE +nfE +nfE +uKf +xxv +apF +nfE +nfE +dvO +caV +oyu +caV +caV +caV +dvO +ufn +ufn +bJx +oLW +oLW +oLW +ite +ite +bJx +bJx +bJx +eBQ +xQv +voT +iPA +iPA +irC +mpH +oLW +oLW +pxS +oLW +byZ +byZ +byZ +byZ +byZ +oLW +ite +ite +ite +ite +ite +bJx +tTe +ite +ite +ite +bCq +xSd +oVd +kKf +xYg +srW +euw +qyo +fZI +dpX +kKf +qGi +lIg +bCq +nNI +nNI +nNI +nNI +wRm +dAg +dAg +dAg +dAg +dAg +dAg +dAg +dAg +dAg +dAg +dAg +dAg +lRK +lRK +dAg +dAg +dAg +dAg +dAg +dAg +dAg +dAg +dAg +dAg +lRK +lRK +lRK +lRK +nBC +cVM +cVM +cVM +wRm +dAg +vjc +hBw +vjc +dAg +nBC +pNG +vXY +fMl +idN +ksa +ksa +ksa +ksa +ksa +sbF +jIV +jIV +bJY +nuv +nuv +nuv +nuv +"} +(147,1,1) = {" +bJY +pvB +pvB +pvB +pvB +udm +cjz +cjz +cjz +htz +htz +htz +htz +rii +rii +htz +htz +htz +rii +rii +rii +rii +rii +htz +htz +rii +rii +htz +htz +htz +htz +cjz +cjz +cjz +sak +sak +cjz +udm +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +sak +wHF +wHF +wHF +kNH +cjz +cjz +sak +sak +sak +cjz +cjz +rNm +rNm +rNm +sak +cjz +wHF +cjz +pvB +pvB +gjK +gjK +jLp +frJ +frJ +frJ +frJ +cHP +xgV +xgV +ngc +cHP +cHP +rtu +qPU +dil +cHP +ret +ret +ret +ret +ret +ret +ngc +lxF +usf +kXl +gNI +nfE +nfE +nfE +nfE +eCh +wBE +uyL +pbD +bBe +wBE +dvO +bFa +caV +caV +oyu +oyu +caV +bFa +caV +ufn +dqy +muC +tPC +oLW +ite +bJx +bJx +bJx +bJx +kKj +jpS +bDA +oEG +iPA +irC +apU +rVn +oLW +ite +oLW +byZ +byZ +byZ +byZ +byZ +oLW +ite +bJx +bJx +bJx +ite +bJx +ite +ite +ite +bCq +bCq +ngZ +kKf +kKf +kKf +kKf +euw +sPy +qwm +dpX +kKf +bsS +hAB +bCq +bCq +nNI +nNI +nNI +uNO +hVx +hVx +lZT +hVx +hVx +hVx +hVx +hVx +byM +tPX +lck +nAQ +rVU +ctc +lck +nAQ +rVU +ctc +lck +nAQ +rVU +ctc +lck +nAQ +rVU +jiD +lck +nAQ +rVU +ctc +lck +tPX +wRm +dAg +eDz +eDz +eDz +dAg +nBC +pNG +vXY +fMl +idN +ksa +ksa +ksa +ksa +ksa +sbF +jIV +jIV +bJY +nuv +nuv +nuv +nuv +"} +(148,1,1) = {" +bJY +pvB +pvB +pvB +pvB +udm +udm +cjz +htz +htz +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +htz +htz +htz +cjz +cjz +cjz +sak +cjz +udm +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +sak +cjz +wHF +wHF +cjz +njV +njV +sak +sak +cjz +cjz +cjz +rNm +rNm +rNm +sak +cEi +cjz +cjz +pvB +pvB +gjK +cHP +cHP +nET +cHP +jLp +frJ +frJ +ngc +tlf +uXN +hHD +ngc +olL +ngc +cHP +cHP +dil +cHP +cHP +cHP +ngc +ngc +sIM +ngc +jLp +ewT +ezz +nfE +nfE +wgL +ils +oMv +nfE +eCh +eCh +eCh +wBE +hIN +rCM +twW +dvO +kzp +kzp +caV +caV +caV +caV +dqy +tmA +mpH +oLW +ite +bJx +bJx +bJx +bJx +tKK +eBQ +xQv +voT +iPA +fVh +ces +mpH +oLW +xov +oLW +byZ +byZ +byZ +byZ +byZ +oLW +ite +bJx +bJx +bJx +ite +ite +ite +ite +ite +bCq +ngZ +kKf +cYG +bUZ +clu +mCh +euw +vCv +qwm +hMN +kKf +mbE +mbE +bCq +bCq +nNI +nNI +nNI +ley +ley +ley +olF +lYL +pNG +pNG +pNG +mhr +wRm +agg +tPX +oJu +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +oJu +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +oJu +tPX +fsy +wRm +dAg +vjc +hBw +fHB +dAg +nBC +pNG +vXY +fMl +idN +ksa +ksa +ksa +ksa +ksa +fex +jIV +jIV +bJY +nuv +nuv +nuv +nuv +"} +(149,1,1) = {" +bJY +pvB +pvB +pvB +pvB +udm +cjz +cjz +htz +htz +rii +uzC +rii +rii +rii +rii +rii +rii +rii +rii +gSa +rii +rii +rii +rii +rii +rii +rii +usT +rii +htz +htz +htz +cjz +wSL +cjz +cjz +udm +sak +pvB +pvB +pvB +pvB +pvB +pvB +pvB +sak +sak +wHF +wHF +cjz +cjz +pvB +pvB +pvB +cjz +cjz +cjz +rNm +rmu +rNm +sak +cjz +cjz +wSL +wHF +oGn +jLp +ngc +vaZ +hPr +jwC +fgP +jLp +olL +cHP +cHP +cHP +ngc +cHP +ngc +ngc +ngc +olL +cHP +irp +cHP +cHP +cHP +ngc +ngc +ngc +jLp +uAd +ewT +nfE +nfE +afM +xIR +obn +nfE +eQd +tsf +sRo +nfE +uTM +uin +bzr +dvO +kzp +vIn +caV +caV +caV +caV +tmA +tmA +mpH +bJx +ite +bJx +bJx +bJx +bJx +ucN +oLW +jpS +bDA +oEG +iPA +irC +kyu +xov +xov +xov +aoM +byZ +byZ +byZ +oLW +oLW +ite +bJx +bJx +bJx +bJx +bJx +ite +ite +ite +jfo +ngZ +kKf +efB +hat +uiL +nPz +xFN +qyo +lkj +qDR +dan +ngZ +ngZ +bCq +bCq +nNI +nNI +nNI +ley +ley +ley +gkx +ngJ +ngJ +ngJ +pNG +uTV +wRm +lPA +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +vIT +wRm +dAg +vjc +hBw +ise +dAg +nBC +pNG +vXY +cVM +idN +ksa +ksa +ksa +ksa +sbF +jIV +jIV +jIV +bJY +nuv +nuv +nuv +nuv +"} +(150,1,1) = {" +bJY +pvB +pvB +pvB +pvB +sak +cjz +htz +htz +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +htz +htz +htz +cjz +cjz +njV +cjz +sak +sak +pvB +pvB +pvB +pvB +pvB +pvB +pvB +sak +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cEi +cjz +cjz +rNm +rNm +rNm +rNm +cjz +wHF +kNH +oGn +jLp +ngc +akW +rXs +cHP +rZu +cHP +olL +olL +cHP +cHP +ngc +cHP +cHP +ngc +olL +olL +cHP +eUr +eUr +jLp +cHP +mim +vrh +cHP +jLp +tNu +uAd +tMu +tFk +uft +auH +cjc +tFk +eCh +nfE +nfE +lDx +fvs +auH +ufn +dvO +kzp +ewT +tNu +caV +caV +caV +tmA +tmA +mpH +bJx +bJx +bJx +bJx +bJx +bJx +bJx +sJa +eBQ +xQv +voT +iPA +irC +mpH +oLW +xov +ite +oLW +oLW +byZ +byZ +bJx +bJx +bJx +bJx +bJx +bJx +bJx +oLW +nrZ +ite +ite +jfo +kKf +kKf +cYw +eBa +eBa +kQM +xFN +qyo +ykW +qDR +gqx +anh +anh +bCq +bCq +nNI +nNI +nNI +ley +ley +ley +ley +jeo +ngJ +ngJ +pNG +uTV +wRm +jeP +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +ipG +wRm +dAg +vjc +hBw +kZi +dAg +nBC +pNG +gpk +gpk +gpk +ksa +ksa +ksa +sbF +sbF +jIV +jIV +jIV +bJY +nuv +nuv +nuv +nuv +"} +(151,1,1) = {" +bJY +pvB +pvB +pvB +pvB +sak +cjz +htz +htz +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +htz +htz +htz +rNm +rNm +rNm +cjz +cjz +sak +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +cjz +cjz +rNm +rNm +rNm +cjz +wHF +wHF +oGn +jLp +cHP +utx +ngc +mQe +hky +cHP +cHP +olL +olL +frJ +frJ +frJ +frJ +olL +olL +cHP +cHP +cHP +jLp +jLp +cHP +uXJ +eeA +cHP +gjK +tNu +tNu +tMu +tFk +tNu +tFk +nZx +dvO +eCh +dvO +eCh +nfE +nfE +ufn +ufn +ufn +ufn +tNu +ufn +ufn +caV +caV +tmA +odU +uSu +ite +bJx +bJx +bJx +bJx +bJx +bJx +ucN +oLW +jpS +voT +iPA +irC +mpH +oLW +oLW +ite +ite +oLW +byZ +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +byZ +oLW +oLW +ite +bCq +sqT +nqr +grj +apa +mpU +ujv +nDG +iML +xHU +euj +sqT +qDR +hix +bCq +bCq +nNI +nNI +nNI +ley +ley +ley +ley +avJ +ngJ +ngJ +abz +uTV +wRm +qrV +tPX +tPX +tPX +tPX +aoa +tPX +tPX +tPX +tPX +tPX +tPX +aoa +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +egR +wRm +dAg +eDz +eDz +eDz +dAg +nBC +mhr +ley +ley +jIV +jIV +tbl +sbF +sbF +som +jIV +jIV +jIV +bJY +nuv +nuv +nuv +nuv +"} +(152,1,1) = {" +bJY +pvB +pvB +pvB +pvB +sak +cjz +htz +htz +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +htz +htz +htz +htz +rNm +rNm +rNm +rNm +cjz +cjz +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +cjz +cjz +cjz +rNm +rNm +rNm +cjz +cjz +cjz +oGn +jLp +cHP +gvZ +ngc +wLk +eRh +oDn +cHP +frJ +jLp +frJ +cHP +cHP +frJ +frJ +frJ +frJ +ngc +hEN +cHP +cHP +cHP +gDf +cHP +gjK +gjK +tNu +tNu +tNu +tNu +vIn +kzp +dvO +nZx +nfE +dvO +dvO +wuD +ufn +ufn +lDx +nfE +ufn +tNu +tNu +ufn +ufn +bFa +tmA +mpH +oLW +ite +ite +bJx +bJx +bJx +bJx +bJx +xgN +oLW +jpS +voT +iPA +irC +mpH +oLW +oLW +oLW +ite +oLW +oLW +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +byZ +byZ +oLW +ite +bCq +bCq +kKf +hUM +ujS +nWu +qkf +euw +jBS +qwm +dpX +kKf +qDR +eAM +moU +moU +oqQ +ppB +nNI +ley +ley +ley +ley +ley +avJ +ngJ +pNG +uTV +wRm +agg +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +fsy +wRm +dAg +vjc +jWR +rOG +dAg +nBC +pNG +ley +ley +jIV +ksa +sbF +sbF +sbF +sbF +jIV +sbF +jIV +bJY +nuv +nuv +nuv +nuv +"} +(153,1,1) = {" +bJY +pvB +pvB +pvB +sak +sak +cjz +cjz +htz +rii +rii +rii +rii +rii +rii +rii +rii +rii +gaj +gaj +gaj +gaj +gaj +rii +rii +rii +rii +rii +rii +rii +htz +htz +htz +cjz +cjz +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +vKI +rNm +rNm +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +cjz +cjz +rNm +rmu +rNm +cjz +cjz +pvB +pvB +pvB +gjK +jLp +jLp +gjK +ngc +ngc +ngc +cHP +frJ +jLp +cHP +ngc +dil +ngc +frJ +jLp +frJ +frJ +ngc +ngc +frJ +ulV +frJ +gjK +gjK +gjK +tNu +tNu +tNu +tNu +tNu +vIn +dvO +vAx +lDx +dvO +dvO +vAx +ufn +lDx +nfE +nfE +nfE +tNu +tNu +tNu +ufn +dqy +bJx +bJx +ite +ygc +sJW +xMB +bJx +bJx +bJx +bJx +bJx +nrZ +jpS +voT +iPA +irC +apU +rVn +ygc +oLW +ite +ite +ite +bJx +bJx +bJx +bJx +bJx +bJx +bJx +byZ +byZ +byZ +oLW +ite +ite +bCq +idj +kig +nzM +qWl +maZ +xFN +jBS +sOD +vff +ruL +qDR +kyz +lvo +qtG +pab +qHW +nNI +ley +ley +ley +ley +ley +jCw +ngJ +pNG +uTV +wRm +lPA +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +kOC +tPX +tPX +tPX +aoa +tPX +tPX +tPX +tPX +tPX +tPX +vIT +wRm +dAg +vjc +jHl +ngm +dAg +nBC +pNG +ley +ngJ +jIV +sbF +sbF +sbF +sbF +sbF +sbF +xDX +jIV +bJY +nuv +nuv +nuv +nuv +"} +(154,1,1) = {" +bJY +pvB +pvB +pvB +sak +sak +udm +cjz +htz +htz +rii +rii +rii +rii +rii +rii +rii +rii +gaj +gaj +xRb +gaj +gaj +rii +rii +rii +rii +rii +rii +rii +htz +htz +htz +cjz +cjz +cjz +rmu +rmu +rNm +rNm +rmu +rmu +rNm +rNm +rNm +rNm +rNm +cjz +cjz +cjz +cjz +cjz +cjz +rNm +vKI +rNm +ndg +rNm +rNm +rNm +rmu +rNm +cjz +pvB +pvB +pvB +pvB +pvB +gjK +gjK +gjK +gjK +gjK +gjK +xDn +xDn +frJ +jLp +sIM +ngc +cHP +cHP +jLp +jLp +frJ +gjK +gjK +gjK +jLp +cHP +jLp +gjK +tNu +tNu +tNu +tNu +vIn +tNu +tNu +tNu +ewT +uWL +eCh +dvO +uAd +uAd +lDx +lDx +frw +tMu +tNu +tNu +tNu +tNu +bJx +bJx +bJx +ite +sJW +xMB +ggD +tDf +apU +rVn +bJx +bJx +oLW +jpS +bDA +oEG +fVh +ces +apU +rVn +oLW +ite +ite +ite +bJx +bJx +bJx +bJx +bJx +byZ +byZ +byZ +byZ +oLW +oLW +ite +ite +bCq +kKf +lyq +nzM +jqX +arh +euw +jBS +hZb +hMN +kKf +tvh +nxH +bCq +ifU +pab +tYM +nNI +ley +ley +ley +ley +ley +ngJ +jeo +pNG +uTV +wRm +jeP +tPX +tPX +tPX +tPX +tPX +eOq +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +ipG +wRm +dAg +vjc +rKB +vjc +dAg +nBC +pNG +ngJ +ngJ +jIV +jIV +jIV +sbF +sbF +sbF +sbF +sbF +jIV +bJY +nuv +nuv +nuv +nuv +"} +(155,1,1) = {" +bJY +pvB +pvB +pvB +sak +udm +udm +cjz +htz +htz +htz +rii +rii +rii +rii +rii +rii +rii +gaj +gaj +gaj +gaj +gaj +rii +rii +rii +rii +rii +rii +rii +htz +htz +htz +htz +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rmu +rmu +cjz +cjz +cEi +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +cjz +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +gjK +gjK +gjK +xDn +xDn +frJ +xDn +cHP +cHP +frJ +frJ +frJ +gjK +gjK +gjK +pdH +ngc +ngc +frJ +gjK +tNu +tNu +iqT +wqx +vIn +hMa +tNu +ccf +tFk +tOU +kzp +eCh +tFk +iIQ +dvO +dvO +iqp +wqx +iqT +tNu +tNu +tNu +bJx +byZ +oUe +kKj +jpS +prH +xng +ces +ggD +apU +rVn +oLW +oLW +eBQ +xQv +voT +iPA +fVh +ces +mpH +oLW +ite +ite +tTe +ite +ite +bJx +bJx +bJx +byZ +byZ +byZ +oLW +oLW +ite +ite +tTe +bCq +kKf +kKf +ngZ +ngZ +sSO +tsB +sOD +vTk +snI +anh +qDR +mhW +bCq +nNI +wXM +ppB +nNI +ley +ley +ley +ley +ngJ +ngJ +ngJ +pNG +uTV +wRm +qrV +tPX +tPX +tPX +tPX +tPX +tPX +tPX +aoa +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +egR +wRm +dAg +eDz +eDz +eDz +dAg +nBC +pNG +ngJ +ley +jIV +xDX +jIV +sbF +nsj +hdP +sbF +jIV +jIV +bJY +nuv +nuv +nuv +nuv +"} +(156,1,1) = {" +bJY +pvB +pvB +pvB +sak +cjz +cjz +cjz +cjz +htz +htz +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +htz +htz +htz +htz +rNm +rNm +rNm +cjz +cjz +cjz +cjz +cEi +cjz +cjz +cjz +cjz +rNm +rNm +rmu +rNm +rNm +rNm +rNm +rmu +rmu +cjz +rNm +rNm +rmu +rNm +rNm +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pvB +ndg +pvB +pvB +pvB +gjK +gjK +gjK +xDn +xDn +frJ +frJ +frJ +frJ +cHP +frJ +gjK +gjK +frJ +ngc +uyf +jLp +gjK +gjK +tNu +tNu +uAd +uin +eEh +hMa +vIn +ccf +tFk +eCh +fZC +fZC +tFk +iIQ +nZx +nZx +iqp +uin +uAd +tNu +tNu +bJx +kCv +byZ +ijh +iAh +xMB +voT +iPA +fVh +ces +ggD +apU +rVn +oLW +ygc +jpS +voT +iPA +iPA +irC +mpH +oLW +oLW +ite +ite +ite +ite +ite +ite +oLW +oLW +byZ +oLW +oLW +ite +ite +ite +ite +bCq +bCq +bCq +bCq +bCq +euw +sOD +sOD +auv +bCq +jfo +bCq +bCq +bCq +nNI +nNI +nNI +nNI +ley +ley +ley +ngJ +ngJ +ngJ +rEb +pNG +uTV +wRm +agg +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +fsy +wRm +dAg +uWJ +hBw +vjc +dAg +nBC +pNG +ley +ley +jIV +sbF +sbF +sbF +mku +vJj +sbF +jIV +jIV +bJY +nuv +nuv +nuv +nuv +"} +(157,1,1) = {" +bJY +pvB +pvB +cjz +cjz +cjz +cjz +cjz +cjz +htz +htz +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +htz +htz +htz +lAD +qcR +sNN +cjz +cjz +pvB +sak +sak +wHF +wHF +cjz +cjz +cjz +kSY +rNm +rNm +rNm +rNm +rNm +rNm +rNm +cjz +cjz +cjz +rNm +rNm +kSY +cjz +cjz +pvB +pvB +pvB +pvB +ndg +pvB +cjz +cjz +cjz +pvB +pvB +gjK +gjK +gjK +gjK +xDn +xDn +xDn +frJ +cHP +dil +cHP +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +tNu +tNu +iqT +wqx +eEh +nZx +vIn +ccf +tFk +dvO +nfE +fZC +tFk +eEh +nZx +nZx +eUv +wqx +iqT +tNu +dqy +dqy +kCv +kCv +byZ +byZ +ggD +voT +iPA +iPA +fVh +ces +xAv +apU +muC +muC +xMB +voT +iPA +iPA +irC +mpH +oLW +oLW +oLW +ite +ite +ite +ite +ite +ite +oLW +ppc +aWc +sJa +ite +ite +ite +ite +ltg +oLW +dbu +dbu +bCq +bCq +icC +uQv +bCq +bCq +cQt +cMJ +cMJ +cQt +jIV +jIV +jIV +jIV +ley +ley +ley +ngJ +vAw +ngJ +ngJ +pNG +uTV +wRm +lPA +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +vIT +wRm +dAg +uWJ +hBw +vjc +vbn +nBC +pNG +ngJ +ley +jIV +sbF +sbF +nsj +xdc +lEm +sbF +sbF +jIV +bJY +nuv +nuv +nuv +nuv +"} +(158,1,1) = {" +bJY +pvB +pvB +cjz +njV +cjz +wSL +cjz +htz +htz +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +htz +htz +gKY +gKv +eSp +sak +pvB +pvB +pvB +pvB +sak +sak +kNH +wHF +cjz +cjz +cjz +cjz +rNm +rNm +rNm +sak +sak +sak +rNm +rNm +rNm +rNm +rNm +cjz +cjz +pvB +pvB +pvB +pvB +cjz +cjz +rNm +rNm +wSL +cjz +pvB +pvB +gjK +gjK +gjK +xDn +xDn +frJ +cHP +cHP +ldi +frJ +frJ +gjK +gjK +gjK +gjK +gjK +gjK +gjK +tNu +vIn +vIn +epW +vVu +nZx +tNu +tNu +uAd +eCh +nZx +tLR +ewT +tNu +tNu +tNu +tmX +tMu +tNu +tNu +dqy +dqy +dqy +kCv +kCv +byZ +xQv +bDA +oEG +iPA +iPA +fVh +xng +ces +ggD +tDf +prH +haP +iPA +iPA +irC +apU +rVn +oLW +oLW +oLW +oLW +oLW +xov +ite +ite +ite +xyU +fiC +fiC +sJa +ite +ite +ite +oLW +dbu +dbu +dbu +rIx +byZ +byZ +byZ +byZ +rIx +cMJ +cMJ +cMJ +cMJ +cQt +cQt +jIV +jIV +ley +ley +ley +ngJ +ngJ +ngJ +ngJ +ngJ +uTV +wRm +jeP +tPX +oJu +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +oJu +tPX +tPX +tPX +tPX +tPX +tPX +tPX +tPX +oJu +tPX +ipG +wRm +dAg +vjc +jZS +vjc +dAg +nBC +pNG +ngJ +ngJ +jIV +jIV +nct +mku +vJj +sbF +jIV +sbF +jIV +bJY +nuv +nuv +nuv +nuv +"} +(159,1,1) = {" +bJY +pvB +pvB +cjz +cjz +cjz +wSL +cjz +htz +htz +rii +nMq +rii +rii +rii +rii +rii +rii +rii +rii +gtN +rii +rii +rii +rii +rii +rii +rii +yfQ +rii +rii +htz +htz +gKY +uWj +eSp +sak +pvB +pvB +pvB +pvB +pvB +pvB +pvB +wHF +wHF +wHF +cjz +cjz +cjz +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +cjz +pvB +ndg +cjz +cjz +rNm +rNm +rNm +rNm +rNm +cjz +cjz +pvB +gjK +gjK +gjK +gjK +frJ +frJ +jLp +jLp +frJ +frJ +cHP +cHP +gjK +gjK +gjK +gjK +gjK +gjK +tNu +vIn +nZx +nZx +nZx +nZx +nZx +lDx +xEX +eCh +nZx +eHV +wvr +nZx +tNu +tNu +uAd +tNu +tNu +tNu +dqy +dqy +dqy +kCv +byZ +byZ +jpS +tDf +bDA +oEG +iPA +iPA +iPA +fVh +xng +xng +haP +iPA +iPA +iPA +fVh +ces +apU +rVn +oLW +oLW +mSZ +xov +xov +xov +nei +ite +fOT +fiC +fiC +ucN +ite +ite +ite +oLW +dbu +dbu +dbu +dbu +dbu +byZ +byZ +byZ +byZ +cMJ +cMJ +cMJ +cMJ +cMJ +cMJ +cQt +jIV +ley +ley +ley +sLN +avJ +ngJ +ngJ +ngJ +uTV +wRm +tPX +dHc +cDd +kSc +hfM +dHc +cDd +kSc +hfM +dHc +cDd +kSc +hfM +dHc +cDd +kSc +hfM +dHc +cDd +kSc +hfM +dHc +tPX +wRm +dAg +eDz +eDz +eDz +dAg +nBC +pNG +ngJ +jeo +jIV +sbF +sbF +jUc +lEm +jIV +sbF +sbF +jIV +bJY +nuv +nuv +nuv +nuv +"} +(160,1,1) = {" +bJY +pvB +pvB +cjz +cjz +cjz +cjz +cjz +cjz +htz +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +rii +htz +htz +htz +loa +rnm +mVX +sak +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +njV +cjz +cjz +rNm +rNm +rNm +rNm +cjz +cjz +cjz +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +cjz +rNm +rNm +rNm +cjz +pvB +gjK +gjK +gjK +gjK +ngc +frJ +frJ +jLp +frJ +cHP +cHP +cHP +cHP +cHP +gjK +gjK +gjK +gjK +tNu +vIn +nZx +nZx +nZx +nZx +lDx +lDx +tFk +eCh +eCh +eHV +tFk +nZx +nZx +tNu +tNu +tMu +tNu +tNu +dqy +dqy +dqy +bJx +byZ +wCv +bIf +xQv +ggD +bDA +oEG +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +fVh +ces +apU +rVn +oLW +oLW +oLW +xov +oLW +ite +ite +ite +xyU +fiC +ucN +ite +ite +ite +oLW +oLW +dbu +dbu +dbu +dbu +dbu +dbu +dbu +byZ +cQt +cQt +cQt +cMJ +cMJ +cMJ +cQt +jIV +ley +ley +ley +ley +gAC +sLN +avJ +ngJ +uTV +uNO +hVx +hVx +hVx +hVx +hVx +hVx +hVx +hVx +hVx +hVx +hVx +hVx +hVx +hVx +hVx +hVx +hVx +hVx +hVx +hVx +hVx +hVx +hVx +wRm +dAg +vjc +hBw +kgJ +dAg +nBC +pNG +xrp +ngJ +jIV +jIV +sbF +sbF +sbF +sbF +sbF +sbF +jIV +bJY +nuv +nuv +nuv +nuv +"} +(161,1,1) = {" +bJY +pvB +cjz +cjz +vKI +rNm +cjz +cjz +cjz +htz +htz +rii +rii +rii +rii +htz +htz +htz +htz +htz +rii +rii +rii +rii +rii +rii +rii +rii +rii +htz +htz +htz +htz +htz +cjz +cjz +sak +sak +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +cjz +cjz +cjz +rNm +rNm +cjz +cEi +wSL +cjz +njV +rNm +rNm +rNm +rNm +rNm +rNm +cjz +cjz +cjz +cjz +ndg +cjz +rNm +cjz +pvB +pvB +gjK +gjK +ngc +xPA +ngc +frJ +olL +olL +cHP +cHP +cHP +ngc +cHP +cHP +gjK +gjK +gjK +tNu +tNu +nZx +nZx +nZx +nZx +tFk +lDx +tFk +dvO +eCh +nfE +nfE +tNu +nZx +nZx +vIn +tMu +tNu +bJx +dqy +wUj +wUj +doS +gHG +ijh +oFr +bIf +xQv +ggD +bDA +oEG +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +iPA +fVh +ces +apU +muC +tPC +oLW +oLW +oLW +hOO +ite +ite +xyU +fiC +ucN +rqF +ite +ite +oLW +oLW +dbu +dbu +dbu +dbu +dbu +dbu +dbu +dbu +cQt +cQt +cQt +cMJ +cMJ +cQt +jIV +jIV +ley +ley +ley +ley +ley +gAC +gAC +avJ +mhr +uTV +pNG +pNG +pNG +uTV +uTV +uTV +uTV +uTV +uTV +uTV +uTV +uTV +uTV +uTV +uTV +uTV +uTV +uTV +pNG +pNG +pNG +uTV +mhr +wRm +dAg +tqx +jXy +qxK +dAg +nBC +pNG +pNG +ley +jIV +ksa +hFd +ksa +sbF +sbF +sbF +jIV +jIV +bJY +nuv +nuv +nuv +nuv +"} +(162,1,1) = {" +bJY +pvB +cjz +cjz +rNm +rNm +rNm +cjz +cjz +cjz +htz +htz +ezt +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +htz +cjz +cjz +sak +sak +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +cjz +rNm +rNm +cjz +cjz +sak +rNm +cjz +cjz +rNm +rNm +rNm +cjz +cjz +cjz +xGB +xGB +maP +maP +ndg +cjz +cjz +cjz +pvB +gjK +jLp +frJ +cHP +cHP +cHP +cHP +olL +olL +cHP +ngc +sde +awb +ngc +cHP +cHP +jLp +tNu +tNu +ewT +aHy +nZx +dOz +hVN +oMe +dvO +dvO +dvO +eCh +nfE +vbB +hVN +xlj +oQU +hBy +uAd +bJx +dqy +doS +bkz +bkz +dbu +yli +ijh +oFr +bIf +xQv +ggD +voT +iPA +iPA +iPA +iPA +iPA +nXM +ssy +ssy +ssy +ssy +oEG +irC +ggD +ggD +mpH +oLW +oLW +oLW +ite +ite +ite +xyU +fiC +fiC +sJa +ite +ite +ite +oLW +oLW +dbu +dbu +dbu +dbu +dbu +dbu +dbu +cMJ +cQt +cQt +cQt +cQt +cQt +jIV +jIV +jIV +jIV +jIV +jIV +ley +ley +gAC +rgy +ngJ +ngJ +pNG +pNG +ngJ +ngJ +ngJ +ngJ +pNG +pNG +pNG +pNG +pNG +pNG +pNG +pNG +ngJ +ngJ +ngJ +ngJ +rEb +ngJ +pNG +pNG +uTV +wRm +dAg +vjc +hBw +vjc +dAg +nBC +pNG +ley +ley +ksa +ksa +ksa +ksa +ksa +sbF +sbF +jIV +jIV +bJY +nuv +nuv +nuv +nuv +"} +(163,1,1) = {" +bJY +pvB +pvB +cjz +cjz +rNm +rNm +rNm +rNm +cjz +cjz +ezt +htz +htz +htz +htz +cjz +cjz +cjz +cjz +cjz +htz +htz +htz +htz +htz +htz +htz +htz +cjz +cjz +cjz +htz +htz +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +pvB +cjz +cjz +rNm +rNm +cjz +sak +sak +cjz +vKI +cjz +cjz +cjz +cjz +cjz +maP +xGB +xGB +vYO +dbI +maP +maP +cjz +cjz +cjz +oGn +jLp +jLp +frJ +frJ +cHP +cHP +cHP +cHP +olL +cHP +cHP +akW +isd +rAX +cHP +ret +jLp +jLp +uAd +ewT +gNI +tFk +afM +tbd +eKZ +dvO +tsf +tsf +tsf +nfE +uTM +uin +bzr +tFk +msA +ewT +ewT +dqy +pwo +pwo +pwo +dbu +kCv +kCv +ijh +oFr +bJx +ggD +voT +iPA +iPA +iPA +iPA +nXM +wEw +ggD +odU +ehZ +inE +bDA +wEw +xFu +ces +apU +rVn +oLW +ite +ite +ite +ite +fOT +fiC +fiC +ucN +ite +ite +ite +ite +oLW +dbu +dbu +dbu +dbu +dbu +dbu +dbu +cMJ +cMJ +cQt +cQt +cQt +jIV +jIV +jIV +jIV +jIV +seE +jIV +ley +ley +ley +gAC +avJ +ngJ +ngJ +ngJ +ngJ +ngJ +ngJ +swp +avJ +ngJ +ngJ +ngJ +ngJ +ngJ +ngJ +ngJ +ngJ +ley +ley +ngJ +ley +ngJ +ngJ +ngJ +cVM +wRm +dAg +eDz +eDz +eDz +dAg +nBC +cVM +ley +xQJ +sbF +ksa +ksa +ksa +ksa +sbF +jIV +jIV +jIV +bJY +nuv +nuv +nuv +nuv +"} +(164,1,1) = {" +bJY +pvB +pvB +cjz +cjz +cjz +rNm +rNm +rNm +rNm +cjz +cjz +htz +htz +htz +cjz +cjz +njV +cjz +cjz +cjz +cjz +cjz +cjz +cjz +htz +htz +ezt +cjz +wSL +cjz +rNm +cjz +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +pvB +cjz +rNm +rNm +rNm +pvB +sak +sak +cjz +rNm +rNm +cjz +pvB +cjz +maP +maP +vYO +kLq +ezZ +rKW +xGB +cjz +ndg +wHF +wHF +oGn +jLp +jLp +olL +frJ +cHP +olL +cHP +cHP +cHP +cHP +aSp +vfF +eRh +ngc +irp +cHP +ret +ret +uAd +ezz +aHy +gNI +fvs +auH +hHy +pyb +nfE +nfE +eCh +nfE +vtF +auH +mTz +nfE +lDx +lDx +ewT +pwo +dbu +dbu +dbu +pwo +pwo +pwo +pwo +dqy +dqy +bJx +bDA +oEG +iPA +iPA +nXM +wEw +ggD +odU +uSu +ygc +eBQ +inE +ggD +voT +fVh +ces +mpH +oLW +ite +ite +ite +ite +ubS +wdB +wdB +fiC +sJa +ite +ite +ite +oLW +oLW +dbu +oLW +oLW +oLW +oLW +dbu +cMJ +cMJ +cMJ +cQt +cQt +jIV +jIV +jIV +jIV +gzv +nsj +jIV +ley +ley +ley +ley +ley +taA +ngJ +ngJ +ngJ +ley +ley +ley +ley +ngJ +jeo +ngJ +ngJ +bqW +ley +ley +ley +ley +jeo +ngJ +ley +ley +ley +gCR +gpk +gpk +mkx +mkx +mkx +mkx +mkx +gpk +gpk +gCR +sbF +sbF +sbF +sbF +sbF +sbF +jIV +jIV +jIV +jIV +bJY +nuv +nuv +nuv +nuv +"} +(165,1,1) = {" +bJY +pvB +pvB +pvB +pvB +cjz +rNm +rNm +rNm +rNm +cjz +cjz +cjz +cjz +cjz +cjz +cjz +udm +udm +udm +udm +cjz +cjz +cjz +cjz +cjz +cjz +cjz +cjz +cjz +sak +sak +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +sak +cjz +cjz +cjz +rNm +rNm +cjz +pvB +pvB +pvB +cjz +cjz +cjz +pvB +pvB +cjz +maP +maP +xem +oYB +rKW +xGB +xGB +cjz +wHF +kNH +wHF +oGn +jLp +jLp +jLp +frJ +ngc +cHP +oXX +ngc +cHP +ret +ngc +wGP +ret +oXX +oXX +ngc +ret +ret +bAp +uWL +eCh +nfE +lDx +nfE +nfE +nfE +fcx +boC +apF +wBE +nfE +nfE +nfE +nfE +nfE +nfE +kXl +pwo +dbu +dbu +dbu +dbu +pwo +pwo +pwo +doS +dqy +bJx +bJx +voT +iPA +iPA +irC +ggD +odU +uSu +oLW +oLW +oLW +eBQ +inE +voT +iPA +irC +mpH +oLW +ite +ite +ite +ite +vga +uNw +uNw +uNw +xgN +ite +ite +ite +ite +oLW +oLW +oLW +oLW +oLW +oLW +oLW +ksa +cMJ +cMJ +ksa +ksa +jIV +jIV +jIV +lEm +fHF +eFj +doG +lEm +ley +ley +ley +ley +ley +ley +ley +ley +ley +ley +ley +ley +ley +ley +ley +ley +ley +ley +ley +ley +ley +ley +ley +ley +ley +cVM +gpk +gpk +gpk +cVM +fMl +fMl +fMl +cVM +gpk +gpk +vJt +rkt +tSK +tSK +tSK +tSK +rkt +jIV +jIV +jIV +jIV +bJY +nuv +nuv +nuv +nuv +"} +(166,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +sak +sak +cjz +cjz +cjz +udm +cjz +cjz +cjz +cjz +njV +cjz +udm +udm +udm +udm +cjz +wSL +cjz +cjz +cjz +cjz +cjz +sak +sak +sak +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +sak +sak +cjz +cjz +cEi +rNm +rNm +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pvB +ndg +cjz +maP +maP +maP +xGB +xGB +xGB +wSL +cjz +wHF +wHF +wHF +oGn +jLp +jLp +jLp +jLp +cHP +ngc +xPA +ngc +ngc +ret +ret +ret +ret +ret +ret +ret +ret +ret +bAp +uWL +eCh +nfE +nfE +nfE +nfE +nfE +uyL +pbD +rbV +wBE +eCh +eCh +eCh +dvO +dvO +lDx +bAp +dbu +dbu +dbu +dbu +pwo +pwo +dbu +pwo +nBA +dqy +dqy +bJx +voT +iPA +iPA +irC +ggD +mpH +oLW +oLW +oLW +oLW +oLW +jpS +bDA +ssy +wEw +mpH +oLW +ite +ite +xov +vFQ +oLW +oLW +oLW +oLW +ite +ite +ite +ite +ite +ite +ite +ite +ite +ite +ite +ite +ksa +ksa +ksa +ksa +nsj +xdc +xdc +hdP +sbF +sbF +sbF +sbF +xDX +sbF +cQt +jIV +jIV +jIV +jIV +sbF +sbF +sbF +jIV +jIV +jIV +jIV +jIV +jIV +jIV +sbF +jIV +sbF +sbF +jIV +jIV +jIV +jIV +sbF +sbF +vJt +vJt +vJt +bna +bna +bna +bna +bna +vJt +vJt +vJt +sbF +sbF +sbF +sbF +xDX +jIV +mmN +mmN +mmN +mmN +bJY +nuv +nuv +nuv +nuv +"} +(167,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +sak +sak +cjz +udm +udm +udm +cjz +cjz +cjz +cjz +cjz +cjz +cjz +cjz +cjz +cjz +cjz +cjz +udm +udm +cjz +sak +sak +sak +sak +udm +cjz +pvB +pvB +pvB +sak +sak +pvB +pvB +pvB +pvB +pvB +sak +sak +sak +pvB +cjz +wSL +cjz +rNm +rNm +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +ndg +cjz +cjz +maP +maP +maP +cjz +cjz +cjz +wHF +cjz +cjz +wHF +oGn +jLp +jLp +uXN +jLp +cHP +uXN +cHP +cHP +cHP +cHP +cHP +cHP +cHP +cHP +xgI +ngc +ret +ret +uAd +uWL +lDx +lDx +vbB +hVN +jIz +nfE +nfE +eCh +eCh +wBE +dOz +hVN +gib +dvO +dvO +dvO +uAd +pwo +kCv +pwo +dbu +dbu +dbu +pwo +kCv +mIg +doS +dqy +ggD +voT +iPA +iPA +irC +ggD +apU +tPC +oLW +ppc +aWc +kKj +eBQ +ehZ +ehZ +ehZ +uSu +oLW +bTT +xov +xov +xov +aoM +byZ +byZ +oLW +oLW +ite +ite +ite +ite +ite +ite +pxS +ite +ite +ite +ite +sbF +sbF +sbF +sbF +jUc +xdc +xdc +lEm +sbF +sbF +sbF +nsj +hdP +cQt +cQt +cQt +sbF +sbF +jIV +sbF +jIV +jIV +jIV +kFv +jIV +sbF +sbF +jIV +xQJ +sbF +jIV +jIV +sbF +ksa +jIV +jIV +ksa +ksa +toC +ksa +rkt +ksa +mol +mol +mol +mol +mol +aqe +rkt +ksa +ksa +uzD +sbF +sbF +sbF +sbF +mmN +ksa +ksa +mmN +bJY +nuv +nuv +nuv +nuv +"} +(168,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +sak +sak +cjz +cjz +udm +cjz +wSL +cjz +rNm +rNm +rNm +cjz +cjz +cjz +pvB +pvB +pvB +pvB +udm +cjz +cjz +sak +sak +sak +udm +udm +cjz +cjz +udm +udm +cjz +sak +sak +pvB +pvB +pvB +sak +cjz +cjz +cjz +cjz +cjz +cjz +rNm +rNm +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +ndg +ndg +cjz +cjz +cjz +cjz +wHF +vjh +wHF +wHF +cjz +cjz +cjz +oGn +jLp +jLp +frJ +frJ +cHP +cHP +cHP +ldi +olL +ngc +cHP +hHD +cHP +rgm +wXv +dOW +jwC +ret +uAd +ewT +dvO +dvO +afM +uin +obn +wBE +jfN +mYj +mYj +wBE +uTM +xIR +wpz +dvO +dvO +uAd +uAd +dqy +kCv +mIg +nBA +nBA +nBA +dbu +yli +yli +byZ +jpS +ggD +voT +iPA +iPA +fVh +ces +ggD +apU +rVn +vga +wdB +wdB +kKj +oLW +oLW +oLW +oLW +oLW +ite +pxS +xov +oLW +oLW +byZ +byZ +oLW +oLW +ite +xzM +ite +ite +ite +oLW +oLW +oLW +oLW +oLW +ite +sbF +sbF +sbF +sbF +sbF +jUc +lEm +gFV +nsj +hdP +sbF +jIV +vJj +cQt +cQt +cQt +cQt +sbF +rkt +gUH +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +hFd +ksa +ksa +ksa +ksa +ksa +ksa +mol +mol +mol +mol +mol +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +oKv +ksa +ksa +mmN +bJY +nuv +nuv +nuv +nuv +"} +(169,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +sak +cjz +cjz +cjz +cjz +rNm +rNm +rNm +rNm +rNm +cjz +pvB +pvB +pvB +pvB +pvB +cjz +cjz +sak +sak +sak +udm +udm +cjz +cjz +cjz +cjz +cjz +wSL +cjz +cjz +cjz +wSL +cjz +cjz +cjz +rNm +rNm +rNm +rNm +rNm +rNm +cjz +pvB +pvB +pvB +pvB +pvB +kAL +kAL +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +cjz +wHF +kNH +cjz +cjz +pvB +pvB +pvB +gjK +frJ +frJ +ngc +ngc +cHP +cHP +olL +olL +ngc +irp +ngc +uXJ +paw +isd +crI +gjK +tNu +tNu +ufn +ufn +dvO +tPk +auH +cjc +tFk +eCh +eCh +eCh +tFk +fvs +auH +hHy +dvO +tMu +uAd +bJx +dqy +mIg +kCv +qiM +qiM +gPs +yli +yli +dbu +byZ +jpS +xAv +voT +iPA +iPA +iPA +fVh +ces +ggD +apU +rVn +vga +uNw +kno +oLW +oLW +oLW +oLW +ite +ite +ite +ite +oLW +byZ +byZ +byZ +oLW +oLW +oLW +ite +ite +ite +ite +oLW +bJx +bJx +bJx +oLW +ite +sbF +sbF +sbF +nsj +kjs +hdP +jIV +jIV +jIV +vJj +sbF +jIV +jIV +jIV +cQt +cQt +cQt +sbF +aMG +ksa +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +uSh +mol +mol +mmN +bJY +nuv +nuv +nuv +nuv +"} +(170,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +rNm +rNm +rNm +sak +sak +vKI +rNm +cjz +pvB +pvB +pvB +pvB +pvB +pvB +sak +sak +sak +sak +udm +cjz +cjz +rNm +rNm +rNm +rNm +rNm +rNm +wSL +cjz +cEi +rNm +rNm +rNm +vKI +rNm +rNm +rNm +rNm +cjz +cjz +pvB +pvB +pvB +pvB +pvB +kAL +eEE +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +cjz +cjz +cjz +pvB +pvB +pvB +pvB +gjK +gjK +gjK +xPA +ngc +oXX +olL +olL +cHP +cHP +jTH +dOW +ngc +xPA +gjK +gjK +gjK +tNu +tNu +ufn +ufn +tFk +dvO +dvO +nfE +nfE +nZx +eCh +eCh +lDx +nZx +tFk +tFk +tFk +tMu +tNu +bJx +dqy +doS +kCv +dbu +yli +yli +yli +dbu +byZ +byZ +jpS +ggD +voT +iPA +iPA +iPA +iPA +irC +ggD +ggD +mpH +oLW +oLW +oLW +oLW +oLW +oLW +ite +ite +ite +ite +ite +oLW +byZ +byZ +byZ +byZ +oLW +oLW +ite +ite +ite +ite +oLW +bJx +bJx +bJx +oLW +ite +sbF +sbF +nsj +xdc +xdc +jIV +jIV +jIV +jUc +lEm +sbF +gFV +jIV +cQt +cQt +cQt +cQt +sbF +aMG +uzD +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +uSh +mol +mol +mmN +bJY +nuv +nuv +nuv +nuv +"} +(171,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +cjz +rNm +rNm +sak +sak +sak +sak +rNm +pvB +pvB +pvB +pvB +pvB +pvB +pvB +sak +sak +sak +sak +udm +cjz +cjz +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +rNm +cjz +cjz +cjz +pvB +pvB +pvB +pvB +pvB +pvB +kAL +kAL +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +gjK +gjK +gjK +frJ +cHP +cHP +cHP +cHP +cHP +cHP +vqV +ngc +gjK +gjK +gjK +gjK +gjK +tNu +tNu +tNu +ufn +ufn +ufn +dvO +dvO +nfE +hMa +ewT +tOU +dvO +nZx +nZx +tMu +tMu +tMu +tNu +bJx +dqy +bJx +bJx +dqy +doS +mIg +dbu +dbu +byZ +byZ +jpS +ggD +voT +iPA +iPA +iPA +iPA +fVh +otQ +ggD +mpH +oLW +nrZ +oLW +oLW +oLW +ite +ite +ite +tTe +ite +oLW +oLW +byZ +byZ +byZ +byZ +byZ +oLW +oLW +ite +ite +ite +oLW +oLW +bJx +oLW +oLW +ite +sbF +sbF +jUc +xdc +lEm +sbF +sbF +som +sbF +sbF +sbF +sbF +cQt +cQt +cQt +cQt +cQt +sbF +aMG +ksa +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +uSh +mol +mol +mmN +bJY +nuv +nuv +nuv +nuv +"} +(172,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +sak +sak +pvB +rNm +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +sak +sak +pvB +pvB +pvB +cjz +cjz +cjz +cjz +rNm +rNm +rNm +rNm +sak +rNm +rNm +rNm +cjz +njV +wSL +cjz +cjz +cjz +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +gjK +gjK +gjK +frJ +frJ +cHP +cHP +cHP +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +tNu +tNu +tNu +tNu +tNu +ufn +ufn +dvO +kzp +ewT +uAd +uAd +kzp +kzp +ewT +uAd +tNu +tNu +tNu +bJx +dqy +dqy +dqy +dqy +dqy +doS +bJx +bJx +byZ +byZ +jpS +ggD +voT +iPA +iPA +iPA +iPA +iPA +irC +ggD +mpH +oLW +oLW +oLW +oLW +oLW +ite +ite +ite +ite +ite +oLW +byZ +byZ +kNZ +fbl +byZ +byZ +oLW +oLW +oLW +ite +ite +ite +oLW +oLW +oLW +ite +ite +sbF +sbF +xDX +jIV +sbF +pVO +sbF +kWy +sbF +sbF +nsj +hdP +cQt +cQt +cQt +cQt +cQt +sbF +aMG +ksa +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +mol +uSh +mol +mol +mmN +bJY +nuv +nuv +nuv +nuv +"} +(173,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +sak +sak +pvB +pvB +pvB +pvB +pvB +udm +cjz +cjz +pvB +sak +sak +pvB +pvB +pvB +pvB +pvB +pvB +sak +sak +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +tNu +tNu +tNu +tNu +tNu +uAd +uAd +iqT +iqT +uAd +uAd +uAd +iqT +iqT +uAd +uAd +tNu +tNu +tNu +tNu +bJx +dqy +bJx +bJx +dqy +dqy +dqy +dqy +byZ +byZ +jpS +tDf +voT +iPA +iPA +iPA +iPA +iPA +irC +tDf +mpH +oLW +oLW +oLW +oLW +oLW +ite +bJx +bJx +ite +ite +oLW +byZ +byZ +xov +xov +rIx +byZ +oLW +oLW +oLW +ite +ite +ite +ite +ite +ite +ite +ite +sbF +sbF +jIV +jIV +jIV +dfk +sbF +peQ +nsj +kjs +xdc +xdc +jIV +jIV +jIV +cQt +sbF +sbF +rkt +aqe +ksa +mol +mol +mol +ksa +ksa +xWI +bfo +ksa +fex +uzD +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +ksa +sbF +uvN +ksa +ksa +mmN +bJY +nuv +nuv +nuv +nuv +"} +(174,1,1) = {" +bJY +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +pvB +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +gjK +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +tNu +dqy +dqy +bJx +bJx +bJx +dqy +dqy +dqy +dqy +dqy +dqy +deM +gwF +gwF +gwF +gwF +gwF +gwF +gwF +gwF +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +bJx +jIV +jIV +jIV +jIV +jIV +jIV +jIV +jIV +jIV +jIV +jIV +jIV +jIV +jIV +jIV +mmN +mmN +mmN +mmN +mmN +mmN +mol +mol +mol +mmN +rkt +rkt +jIV +sbF +sbF +xDX +sbF +rkt +sbF +sbF +jIV +xQJ +jIV +sbF +xDX +rkt +ksa +ksa +jIV +jIV +jIV +jIV +ksa +rkt +ksa +ksa +jIV +jIV +jIV +sbF +sbF +mmN +ksa +ksa +mmN +bJY +nuv +nuv +nuv +nuv +"} +(175,1,1) = {" +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +bJY +mmN +ybs +ybs +ybs +mmN +mmN +jIV +jIV +jIV +jIV +jIV +mmN +mmN +mmN +jIV +jIV +jIV +jIV +jIV +mmN +mmN +mmN +jIV +jIV +jIV +jIV +jIV +mmN +mmN +mmN +jIV +jIV +jIV +jIV +jIV +jIV +mmN +mmN +mmN +mmN +bJY +nuv +nuv +nuv +nuv +"} diff --git a/tools/UpdatePaths/Scripts/pve673-bosenmori-subtle-area-varedits.txt b/tools/UpdatePaths/Scripts/pve673-bosenmori-subtle-area-varedits.txt new file mode 100644 index 0000000000..a8c39d0117 --- /dev/null +++ b/tools/UpdatePaths/Scripts/pve673-bosenmori-subtle-area-varedits.txt @@ -0,0 +1,42 @@ +/area/bosenmori/shuttles/drop1{base_lighting_alpha=50;} : /area/bosenmori/shuttles/drop1 +/area/bosenmori/shuttles/drop2{base_lighting_alpha=50;} : /area/bosenmori/shuttles/drop2 +/area/bosenmori/shuttles/drop3{base_lighting_alpha=50;} : /area/bosenmori/shuttles/drop3 +/area/bosenmori/interior_glass/nexus{base_lighting_alpha=50;} : /area/bosenmori/interior_glass/nexus +/area/bosenmori/interior_regular/security{base_lighting_alpha=50;} : /area/bosenmori/interior_regular/security +/area/bosenmori/interior_regular/security_armory{base_lighting_alpha=50;} : /area/bosenmori/interior_regular/security_armory +/area/bosenmori/interior_regular/kitchen{base_lighting_alpha=50;} : /area/bosenmori/interior_regular/kitchen +/area/bosenmori/interior_regular/store{base_lighting_alpha=50;} : /area/bosenmori/interior_regular/store +/area/bosenmori/interior_regular/operations{base_lighting_alpha=50;} : /area/bosenmori/interior_regular/operations +/area/bosenmori/interior_glass/cargo{base_lighting_alpha=50;} : /area/bosenmori/interior_glass/cargo +/area/bosenmori/interior_glass/shipment{base_lighting_alpha=50;} : /area/bosenmori/interior_glass/shipment +/area/bosenmori/interior_glass/tree{base_lighting_alpha=50;} : /area/bosenmori/interior_glass/tree +/area/bosenmori/interior_regular/engineering{base_lighting_alpha=50;} : /area/bosenmori/interior_regular/engineering +/area/bosenmori/interior_regular/telecommunication{base_lighting_alpha=50;} : /area/bosenmori/interior_regular/telecommunication +/area/bosenmori/interior_heavy/secured_armory{base_lighting_alpha=50;} : /area/bosenmori/interior_heavy/secured_armory +/area/bosenmori/interior_glass/corporate{base_lighting_alpha=50;} : /area/bosenmori/interior_glass/corporate +/area/bosenmori/interior_glass/offices{base_lighting_alpha=50;} : /area/bosenmori/interior_glass/offices +/area/bosenmori/interior_glass/fitness{base_lighting_alpha=50;} : /area/bosenmori/interior_glass/fitness +/area/bosenmori/interior_regular/research{base_lighting_alpha=50;} : /area/bosenmori/interior_regular/research +/area/bosenmori/interior_glass/living{base_lighting_alpha=50;} : /area/bosenmori/interior_glass/living +/area/bosenmori/interior_glass/hospital{base_lighting_alpha=50;} : /area/bosenmori/interior_glass/hospital +/area/bosenmori/interior_glass/food_processing{base_lighting_alpha=50;} : /area/bosenmori/interior_glass/food_processing +/area/bosenmori/interior_glass/filtration{base_lighting_alpha=50;} : /area/bosenmori/interior_glass/filtration +/area/bosenmori/outside/cargo{base_lighting_alpha=50;} : /area/bosenmori/outside/cargo +/area/bosenmori/outside/east_area{base_lighting_alpha=50;} : /area/bosenmori/outside/east_area +/area/bosenmori/outside/south_area{base_lighting_alpha=50;} : /area/bosenmori/outside/south_area +/area/bosenmori/outside/west_area{base_lighting_alpha=50;} : /area/bosenmori/outside/west_area +/area/bosenmori/outside/north_area{base_lighting_alpha=50;} : /area/bosenmori/outside/north_area +/area/bosenmori/outside/west_barrens{base_lighting_alpha=50;} : /area/bosenmori/outside/west_barrens +/area/bosenmori/outside/north_barrens{base_lighting_alpha=50;} : /area/bosenmori/outside/north_barrens +/area/bosenmori/outside/east_barrens{base_lighting_alpha=50;} : /area/bosenmori/outside/east_barrens +/area/bosenmori/outside/filtration{base_lighting_alpha=50;} : /area/bosenmori/outside/filtration +/area/bosenmori/outside/river{base_lighting_alpha=50;}: /area/bosenmori/outside/river +/area/bosenmori/mountain/mining{base_lighting_alpha=20;} : /area/bosenmori/mountain/mining +/area/bosenmori/mountain/abandoned{base_lighting_alpha=20;} : /area/bosenmori/mountain/abandoned +/area/bosenmori/mountain/pilgrim{base_lighting_alpha=20;} : /area/bosenmori/mountain/pilgrim +/area/bosenmori/mountain/river{base_lighting_alpha=20;} : /area/bosenmori/mountain/river +/area/bosenmori/mountain/field_post{base_lighting_alpha=20;} : /area/bosenmori/mountain/field_post +/area/bosenmori/mountain/temple_proper{base_lighting_alpha=20;} : /area/bosenmori/mountain/temple_proper +/area/bosenmori/mountain/temple_ruins{base_lighting_alpha=20;} : /area/bosenmori/mountain/temple_ruins +/area/bosenmori/mountain/clearing{base_lighting_alpha=35;} : /area/bosenmori/mountain/clearing +/turf/open/floor/almayer{icon_state="tcomms";} : /turf/open/floor/almayer/tcomms