From 02b80695efaf119bfbe965191fd83f42e11da1d3 Mon Sep 17 00:00:00 2001 From: Lagomorph121 Date: Mon, 30 Dec 2024 23:52:56 -0700 Subject: [PATCH 01/15] Taipei Station Map Jam A Map Jam Submission, and a first attempt at every part of the process. --- code/__DEFINES/__game.dm | 1 + code/game/area/Taipei.dm | 133 + code/modules/cm_marines/equipment/maps.dm | 6 + colonialmarines.dme | 1 + map_config/maps.txt | 3 + maps/Taipei_Station.json | 18 + .../Taipei_Station/Taipei_Station.dmm | 148764 +++++++++++++++ 7 files changed, 148926 insertions(+) create mode 100644 code/game/area/Taipei.dm create mode 100644 maps/Taipei_Station.json create mode 100644 maps/map_files/Taipei_Station/Taipei_Station.dmm diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm index 9a2c68e0d50..e7db2bd3901 100644 --- a/code/__DEFINES/__game.dm +++ b/code/__DEFINES/__game.dm @@ -39,6 +39,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_TAIPEI_STATION "Taipei Station" #define GAMEMODE_WHISKEY_OUTPOST "Whiskey Outpost" #define GAMEMODE_HIVE_WARS "Hive Wars" diff --git a/code/game/area/Taipei.dm b/code/game/area/Taipei.dm new file mode 100644 index 00000000000..124e22f118b --- /dev/null +++ b/code/game/area/Taipei.dm @@ -0,0 +1,133 @@ +//TAIPEI STATION AREAS// + + +/area/taipei + ceiling = CEILING_DEEP_UNDERGROUND_METAL + ceiling_muffle = FALSE + powernet_name = "Taipei" + can_build_special = TRUE + icon_state = "lv-626" + ambience_exterior = AMBIENCE_SHIP + soundscape_interval = 0 + //ambience = list('sound/ambience/shipambience.ogg) + +/area/taipei/underground + always_unpowered = 1 + name = "asteroid" + icon_state = "caves" + +/area/taipei/atrium/club + name = "The Velvet Tassle" + icon_state = "blue" + sound_environment = SOUND_ENVIRONMENT_ROOM + +/area/taipei/maints + name = "Maintenance Tunnels" + sound_environment = SOUND_ENVIRONMENT_HALLWAY + soundscape_interval = 0 + +/area/taipei/maints/south + name = "\improper Southern Maintenance Tunnels" + icon_state = "south" + +/area/taipei/maints/north + name = "\improper Northern Maintenance Tunnels" + icon_state = "north" + +/area/taipei/atrium + name = "\improper Main Atrium" + sound_environment = SOUND_ENVIRONMENT_PARKING_LOT + soundscape_playlist = SCAPE_PL_ELEVATOR_MUSIC + soundscape_interval = 120 + icon_state = "green" + +/area/taipei/atrium/medbay + name = "\improper Clinic" + icon_state = "medbay" + sound_environment = SOUND_ENVIRONMENT_ROOM + soundscape_playlist = SCAPE_PL_ELEVATOR_MUSIC + soundscape_interval = 120 + +/area/taipei/cmb + name = "\improper Colonial Marshall Bureau" + icon_state = "security" + sound_environment = SOUND_ENVIRONMENT_ROOM + +/area/taipei/cargo + name = "\improper Cargo Access" + icon_state = "primarystorage" + sound_environment = SOUND_ENVIRONMENT_HANGAR + +/area/taipei/hangar + name = "\improper Access Hangar" + icon_state = "yellow" + sound_environment = SOUND_ENVIRONMENT_HANGAR + soundscape_playlist = SCAPE_PL_HANGAR + soundscape_interval = 120 + +/area/taipei/hangar/landingzone + name = "\improper Landing Zone One" + is_landing_zone = TRUE + icon_state = "lv-626" + +/area/taipei/telecomms + name = "Telecommunications" + icon_state = "purple" + sound_environment = SOUND_ENVIRONMENT_GENERIC + +/area/taipei/atrium/laundry + name = "\improper Laundromat" + icon_state = "gruntrnr" + sound_environment = SOUND_ENVIRONMENT_ROOM + +/area/taipei/atrium/store + name = "Conveniance-Mart" + icon_state = "req" + sound_environment = SOUND_ENVIRONMENT_ROOM + +/area/taipei/atrium/theatre + name = "\improper Movie Star" + icon_state = "almayer" + sound_environment = SOUND_ENVIRONMENT_AUDITORIUM + +/area/taipei/atrium/offices + name = "\improper Management Office" + icon_state = "livingspace" + sound_environment = SOUND_ENVIRONMENT_LIVINGROOM + +/area/taipei/reactor + name = "Reactor Control Room" + icon_state = "upperengineering" + sound_environment = SOUND_ENVIRONMENT_GENERIC + soundscape_playlist = SCAPE_PL_ENG + soundscape_interval = 25 + +/area/taipei/atrium/restaurant + name = "Sal's Noodles" + icon_state = "pink" + sound_environment = SOUND_ENVIRONMENT_ROOM + +/area/taipei/atrium/bookstore + name = "Lots'o'Books" + icon_state = "yellow" + sound_environment = SOUND_ENVIRONMENT_LIVINGROOM + +/area/taipei/hangar/cargoshuttle + name = "Cargo Skiff" + icon_state = "green" + sound_environment = SOUND_ENVIRONMENT_HALLWAY + +/area/taipei/elevator + name = "Elevator" + icon_state = "yellow" + +/area/taipei/elevator/arrivals + name = "\improper Arrivals Elevator" + +/area/taipei/elevator/departures + name = "\improper Departures Elevator" + +/area/taipei/atrium/hotel + name = "Short Stay Room and Board" + icon_state = "green" + sound_environment = SOUND_ENVIRONMENT_CARPETED_HALLWAY diff --git a/code/modules/cm_marines/equipment/maps.dm b/code/modules/cm_marines/equipment/maps.dm index a6dd0660f44..63db722b466 100644 --- a/code/modules/cm_marines/equipment/maps.dm +++ b/code/modules/cm_marines/equipment/maps.dm @@ -145,6 +145,12 @@ html_link = "images/5/54/USS_Almayer.png" color = "cyan" +/obj/item/map/taipei_map + name = "\improper Taipei Station Map" + desc = "Voted Okay-est Spaceport 2164" + html_link = "" + color = "red" + GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps()) /proc/setup_all_maps() diff --git a/colonialmarines.dme b/colonialmarines.dme index 8711804923f..5b518a97dd7 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -780,6 +780,7 @@ #include "code\game\area\space_station_13_areas.dm" #include "code\game\area\strata.dm" #include "code\game\area\Sulaco.dm" +#include "code\game\area\Taipei.dm" #include "code\game\area\techtree.dm" #include "code\game\area\varadero.dm" #include "code\game\area\WhiskeyOutpost.dm" diff --git a/map_config/maps.txt b/map_config/maps.txt index bf3570e7f52..3cd19f9538e 100644 --- a/map_config/maps.txt +++ b/map_config/maps.txt @@ -71,3 +71,6 @@ endmap map whiskey_outpost_v2 endmap + +map taipei_station +endmap diff --git a/maps/Taipei_Station.json b/maps/Taipei_Station.json new file mode 100644 index 00000000000..e79cc805302 --- /dev/null +++ b/maps/Taipei_Station.json @@ -0,0 +1,18 @@ +{ + "map_name": "Taipei Way-Station", + "short_name": "Taipei Station", + "map_path": "map_files/Taipei_Station", + "map_file": "Taipei_Station.dmm", + "map_item_type": "/obj/item/map/taipei_map", + "traits": [{ "ground": true}], + "camouflage": "jungle", + "environment_traits": {}, + "announce_text": "Taipei Station, An unassuming waystation from the not-so-distant past of the colony-rush, now defunct.", + "gamemodes": [ + "Distress Signal", + "Hunter Games", + "Hive Wars", + "Faction Clash", + "Infection" + ] +} diff --git a/maps/map_files/Taipei_Station/Taipei_Station.dmm b/maps/map_files/Taipei_Station/Taipei_Station.dmm new file mode 100644 index 00000000000..ed8ba311104 --- /dev/null +++ b/maps/map_files/Taipei_Station/Taipei_Station.dmm @@ -0,0 +1,148764 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaw" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"aaJ" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/bed/sofa/south, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -9; + pixel_y = -2 + }, +/turf/open/floor/kutjevo/fake_wood, +/area/taipei/atrium/theatre) +"acu" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"acM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"add" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"adM" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"aej" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/carpet14_10/west, +/area/taipei/atrium/theatre) +"aex" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"aeB" = ( +/obj/structure/closet/crate/radiation, +/obj/structure/largecrate/random/case{ + pixel_x = 0; + pixel_y = 9 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"afc" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526" + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"afv" = ( +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 20; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/obj/structure/toilet{ + pixel_y = 12 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"afF" = ( +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/telecomms) +"afN" = ( +/obj/structure/platform, +/obj/structure/barricade/handrail/strata, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"agc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium) +"ago" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/taipei/atrium/restaurant) +"ahe" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"ahH" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"aim" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/elevator/departures) +"aip" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"aiw" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 4 + }, +/area/taipei/atrium) +"ajp" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"ajs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/cargo) +"ajy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + name = "overhead pipe"; + pixel_x = -4; + pixel_y = 14 + }, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"ajD" = ( +/obj/structure/bed/sofa/vert/white/top, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/elevator/departures) +"ajG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"akB" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"akC" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/kutjevo/smooth{ + light_power = 2; + light_range = 5; + light_on = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + light_power = 2; + light_range = 5; + light_on = 1 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/prison/chapel_carpet, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"alc" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"alr" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"alR" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/obj/item/stool{ + pixel_y = 11; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/taipei/atrium/club) +"amB" = ( +/obj/structure/platform, +/obj/structure/barricade/handrail/strata, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"amQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double{ + dir = 1 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"ans" = ( +/obj/structure/prop/turbine, +/turf/open/space/basic, +/area/taipei/reactor) +"anz" = ( +/obj/effect/decal/cleanable/cobweb2/dynamic, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"anV" = ( +/obj/structure/machinery/conveyor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"aof" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"aoh" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/east, +/area/taipei/hangar/cargoshuttle) +"aol" = ( +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/obj/structure/machinery/camera{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"aoy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/taipei/cmb) +"apD" = ( +/turf/open/space/basic, +/area/space) +"apJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"aqj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/taipei/atrium) +"aqt" = ( +/obj/item/lightstick/red/spoke/planted, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/plating, +/area/taipei/hangar) +"aqL" = ( +/turf/closed/wall/almayer, +/area/taipei/maints/north) +"asb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) +"ass" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/light{ + light_color = #00008B; + light_power = .5 + }, +/area/taipei/atrium/club) +"atd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"atN" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "node" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) +"aum" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"aus" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 6 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/taipei/atrium/offices) +"auW" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"auY" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"avn" = ( +/obj/structure/bed/sofa/vert/white/bot, +/obj/structure/platform/kutjevo/smooth, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"avR" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"awf" = ( +/obj/structure/platform_decoration, +/turf/open/gm/empty, +/area/taipei/reactor) +"awh" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"awt" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/north) +"awM" = ( +/obj/structure/bed/chair/bolted{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"axa" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"axf" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"ayj" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"ayD" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"ayO" = ( +/obj/item/stool{ + pixel_y = 11; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/taipei/atrium/club) +"azb" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"azs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison, +/area/taipei/cargo) +"azL" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"azN" = ( +/obj/structure/machinery/computer/cameras{ + pixel_x = -9; + pixel_y = 0 + }, +/obj/structure/machinery/computer/cameras/hangar{ + pixel_x = 8; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge, +/area/taipei/hangar/cargoshuttle) +"aAh" = ( +/obj/structure/machinery/light{ + dir = 8; + light_power = .50 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/wood_broken4, +/area/taipei/atrium/bookstore) +"aAX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"aBq" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"aCs" = ( +/turf/closed/shuttle/elevator/gears, +/area/taipei/elevator/departures) +"aCu" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"aCE" = ( +/obj/structure/window/framed/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"aDj" = ( +/obj/item/stool{ + pixel_y = 8; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"aDG" = ( +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 1 + }, +/area/taipei/cmb) +"aEq" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" + }, +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"aFw" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"aFH" = ( +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/ashtray/glass{ + icon_state = "ashtray_bork_gl"; + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/weapon/broken_bottle{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/taipei/reactor) +"aGb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"aGe" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/toilet{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"aGD" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"aGJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"aHr" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/cargo) +"aIC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"aJo" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"aJO" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6; + dir = 3 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/south) +"aKr" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 27; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/reactor) +"aKU" = ( +/obj/structure/prop/broken_arcade{ + pixel_y = 16; + dir = 6 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"aKV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"aLd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 10 + }, +/area/taipei/cmb) +"aLh" = ( +/obj/structure/window/reinforced, +/turf/open/floor/prison/darkredcorners2/east, +/area/taipei/atrium/theatre) +"aLy" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/taipei/atrium/store) +"aLB" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"aMy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = 1; + pixel_y = 10 + }, +/obj/structure/window_frame/corsat, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"aMD" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"aMP" = ( +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 4; + pixel_x = 2; + pixel_y = -8 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"aMW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/atrium) +"aMY" = ( +/obj/structure/window/reinforced/ultra, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"aNh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"aOi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/floor/prison/cell_stripe, +/area/taipei/atrium/hotel) +"aOk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"aOx" = ( +/obj/item/trash/hotdog, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"aON" = ( +/obj/structure/toilet{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 14 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"aOT" = ( +/obj/structure/bed/chair/comfy/black, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"aOY" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo/smooth, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"aQg" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/turf/open/floor/carpet9_4, +/area/taipei/atrium/hotel) +"aQN" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"aRc" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 9; + pixel_x = -9 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"aRp" = ( +/turf/open/floor/strata/fake_wood, +/area/taipei/cmb) +"aRP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"aRX" = ( +/obj/structure/machinery/vending/coffee{ + pixel_x = 14; + pixel_y = 14 + }, +/obj/structure/machinery/vending/snack/packaged{ + pixel_x = -7; + pixel_y = 14 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"aRZ" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/turf/open/floor/whitered{ + dir = 4 + }, +/area/taipei/atrium/restaurant) +"aSJ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"aSY" = ( +/turf/closed/shuttle/elevator/gears, +/area/taipei/elevator/arrivals) +"aTp" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"aTq" = ( +/obj/structure/bed/sofa/south/white, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"aTz" = ( +/obj/item/stool{ + pixel_y = 18 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredcorners2/east, +/area/taipei/atrium/theatre) +"aTD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/prison, +/area/taipei/cargo) +"aTL" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"aTY" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/bed/sofa/south, +/turf/open/floor/kutjevo/fake_wood, +/area/taipei/atrium/theatre) +"aUj" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.05 + }, +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/taipei/atrium) +"aVi" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/taipei/atrium/theatre) +"aWs" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/north) +"aWx" = ( +/turf/open/floor/kutjevo/tan, +/area/taipei/elevator/departures) +"aWy" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning, +/area/taipei/hangar) +"aWC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/south) +"aWF" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"aWS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 9; + pixel_x = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"aXI" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"aYp" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"aYq" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "supply_elevator_railing" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"aYK" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"aZk" = ( +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/maints/north) +"aZQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/crushed_cup, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/hangar) +"aZR" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/turf/closed/wall/biodome, +/area/taipei/atrium/laundry) +"baj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"bas" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 7; + pixel_x = 0 + }, +/obj/structure/window_frame/corsat, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"bav" = ( +/obj/structure/largecrate/supply/powerloader{ + pixel_x = 0; + pixel_y = 3 + }, +/obj/structure/catwalk, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"baP" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"bbb" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard{ + pixel_x = 6; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/tool/stamp/approved{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/tool/stamp/denied{ + pixel_x = 12; + pixel_y = 4 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"bbH" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/item/trash/crushed_cup{ + pixel_y = 10; + pixel_x = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"bbQ" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/turf/open/gm/empty, +/area/taipei/maints/south) +"bcJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/reactor) +"bdi" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/atrium) +"bdp" = ( +/obj/structure/stairs/perspective{ + dir = 8 + }, +/obj/structure/platform{ + layer = 3.1 + }, +/obj/structure/barricade/handrail/strata, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"bds" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"bdZ" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"beh" = ( +/turf/closed/mineral, +/area/taipei/maints/north) +"bej" = ( +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"bel" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/northwest, +/area/taipei/maints/north) +"beM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"beN" = ( +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/atrium) +"bfd" = ( +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"bfm" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"bgk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/taipei/elevator/arrivals) +"bgv" = ( +/obj/structure/machinery/computer/cameras/telescreen/entertainment{ + icon_state = "ai_bsod"; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"bgZ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"biK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"bje" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"bjp" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/taipei/cmb) +"bjK" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"bkG" = ( +/obj/structure/platform, +/obj/structure/barricade/handrail/strata, +/turf/open/gm/empty, +/area/taipei/reactor) +"bkU" = ( +/obj/structure/surface/rack, +/obj/structure/surface/rack{ + pixel_x = 0; + pixel_y = 16 + }, +/obj/item/trash/plate{ + pixel_x = -2; + pixel_y = 30 + }, +/obj/item/trash/plate{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/trash/plate{ + pixel_x = -2; + pixel_y = 13 + }, +/obj/item/trash/plate{ + pixel_x = 3; + pixel_y = 22 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"blm" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/taipei/atrium/medbay) +"blu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/north) +"blJ" = ( +/obj/structure/cargo_container/hd/right/alt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"blQ" = ( +/obj/structure/toilet{ + pixel_y = 12 + }, +/obj/structure/machinery/shower{ + dir = 8; + pixel_y = 5; + pixel_x = 2 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -26; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4; + icon_state = "bulb-burned"; + status = 3; + pixel_x = 3; + pixel_y = -7 + }, +/turf/open/floor/plating/bare_catwalk, +/area/taipei/reactor) +"bmh" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_y = -5 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"bnh" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"bnu" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/turf/open/floor, +/area/taipei/atrium/laundry) +"bnw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet6_2, +/area/taipei/atrium/hotel) +"bnV" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/taipei/atrium/medbay) +"bnX" = ( +/obj/structure/stairs/perspective{ + dir = 4 + }, +/obj/structure/platform/stair_cut, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"boa" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"bof" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/endcap_right/north, +/area/taipei/hangar/cargoshuttle) +"boK" = ( +/obj/item/trash/candy{ + pixel_y = -13 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"boP" = ( +/obj/structure/platform{ + layer = 3.1 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"boW" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) +"bpS" = ( +/obj/structure/platform, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"bqi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) +"bqk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"bqq" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"bqv" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/turf/open/floor/strata/fake_wood, +/area/taipei/atrium/offices) +"brm" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"brs" = ( +/turf/open/blank, +/area/taipei/atrium/theatre) +"brv" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"brG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/watatsumi/right, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"brZ" = ( +/turf/closed/wall/almayer, +/area/taipei/atrium) +"bsV" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"bth" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"btG" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"btH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"bur" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"buv" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"buz" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/bed/chair/comfy{ + buckling_y = 2; + dir = 8; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/taipei/atrium) +"bvh" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = 8 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = 8 + }, +/obj/structure/largecrate/random/case/double{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"bvC" = ( +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"bwz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/atrium/hotel) +"bwN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = -4; + pixel_y = 5 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"bwS" = ( +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"bxr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 8 + }, +/area/taipei/cmb) +"byp" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"bys" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/taipei/atrium/offices) +"byS" = ( +/obj/structure/bed{ + pixel_x = 0; + pixel_y = 17 + }, +/obj/item/bedsheet/brown{ + layer = 3.1; + pixel_x = 0; + pixel_y = 17 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -12; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/reactor) +"byZ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/north) +"bzw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/taipei/atrium) +"bzN" = ( +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"bzQ" = ( +/turf/closed/wall/almayer/outer, +/area/taipei/maints/south) +"bzW" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"bAm" = ( +/obj/structure/platform/kutjevo/smooth{ + luminosity = 15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"bAt" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"bAK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/white/hull, +/area/taipei/atrium/medbay) +"bAV" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/north) +"bBm" = ( +/obj/structure/platform_decoration/kutjevo{ + light_on = 1; + light_power = 2; + light_range = 5 + }, +/obj/structure/pipes/vents, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet7_3/west, +/area/taipei/atrium/theatre) +"bBD" = ( +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/endcap_right/east, +/area/taipei/hangar/cargoshuttle) +"bBX" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/turf/open/floor/asteroidplating, +/area/taipei/atrium/store) +"bCt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/snack/packaged{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/structure/machinery/vending/coffee{ + pixel_x = 14; + pixel_y = 14 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"bCv" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/north) +"bCD" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 6 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"bDh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"bDl" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"bEB" = ( +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"bEG" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"bEI" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"bEJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/freezer/cooler, +/obj/item/storage/beer_pack, +/obj/item/storage/beer_pack, +/obj/item/storage/beer_pack, +/turf/open/floor/plating/asteroidwarning, +/area/taipei/hangar) +"bEU" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6; + dir = 3 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/almayer/maint/autoname, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"bFq" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/north) +"bFJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/north) +"bFK" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/taipei/atrium) +"bFN" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"bGf" = ( +/obj/structure/stairs/perspective, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/east, +/area/taipei/hangar/cargoshuttle) +"bGo" = ( +/obj/structure/machinery/shower{ + dir = 8; + pixel_y = 5; + pixel_x = 2 + }, +/obj/structure/curtain/open/shower, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"bGR" = ( +/obj/structure/machinery/elevator_strut/bottom, +/obj/item/lightstick/red/variant/planted, +/turf/open/gm/empty, +/area/taipei/reactor) +"bGX" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/south) +"bHx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/taipei/atrium/theatre) +"bHG" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"bIf" = ( +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/taipei/atrium) +"bJd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 4 + }, +/area/taipei/cmb) +"bJt" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"bJY" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -7 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl"; + pixel_x = -2; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"bKY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/ucigbutt, +/obj/structure/machinery/light/double/blue{ + dir = 8; + light_color = #00008B; + pixel_x = -5; + light_power = .75 + }, +/turf/open/floor/prison/blue/east, +/area/taipei/atrium/club) +"bLA" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/obj/item/spacecash/c10{ + pixel_y = -7; + pixel_x = -1 + }, +/obj/item/stool{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"bMk" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"bMs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/south) +"bMQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"bNd" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 6; + pixel_x = 6; + pixel_y = 6 + }, +/turf/closed/wall/almayer, +/area/taipei/maints/north) +"bNw" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"bNX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + pixel_x = -6; + pixel_y = 0 + }, +/obj/structure/machinery/computer/emails{ + pixel_x = 14; + pixel_y = 4 + }, +/turf/open/floor/prison, +/area/taipei/atrium) +"bOH" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"bPx" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium/bookstore) +"bQM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/atrium) +"bRD" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 1 + }, +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/endcap_left, +/area/taipei/hangar/cargoshuttle) +"bRI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/hangar) +"bTh" = ( +/obj/structure/window/reinforced/toughened, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge, +/area/taipei/atrium/medbay) +"bTv" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/atrium) +"bUh" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/drinkingglass, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"bUr" = ( +/obj/structure/barricade/handrail/strata, +/turf/closed/wall/almayer/outer, +/area/taipei/hangar) +"bVa" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"bVs" = ( +/turf/closed/wall/almayer, +/area/taipei/atrium/club) +"bVt" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"bXl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo, +/area/taipei/atrium) +"bXy" = ( +/obj/vehicle/powerloader{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"bYk" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/taipei/atrium) +"bYy" = ( +/turf/closed/wall/almayer, +/area/taipei/telecomms) +"bZd" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 6; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"bZi" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/north) +"bZw" = ( +/obj/structure/toilet{ + pixel_y = 12 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 20; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/taipei/atrium/offices) +"bZz" = ( +/obj/structure/prop/power_transformer, +/obj/structure/lattice, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6; + dir = 3 + }, +/turf/open/space/basic, +/area/taipei/reactor) +"cac" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/item/tool/soap{ + pixel_x = 7; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"caH" = ( +/turf/open/floor/asteroid, +/area/taipei/cargo) +"caU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"cbX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/shuttle_control, +/obj/structure/machinery/computer/emails{ + pixel_x = 19; + pixel_y = 4 + }, +/obj/structure/machinery/light{ + dir = 8; + light_power = .25 + }, +/turf/open/floor/prison, +/area/taipei/telecomms) +"ccb" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"ccE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/northwest, +/area/taipei/elevator/arrivals) +"ccM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/atrium/restaurant) +"ccY" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"cdr" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"cdI" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"ceo" = ( +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = -1; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"ces" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + pixel_y = 14 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"ceK" = ( +/obj/structure/surface/table, +/obj/item/toy/desk/fan{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium/medbay) +"ceO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitered{ + dir = 6 + }, +/area/taipei/atrium/restaurant) +"cfC" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"cfN" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/blue, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -6; + pixel_y = 0 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl"; + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/toy/desk/dippingbird{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"cgf" = ( +/obj/structure/machinery/computer/cameras/telescreen/entertainment, +/obj/structure/window_frame/corsat, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/taipei/atrium) +"cgG" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + light_color = "#dae2ff"; + pixel_x = 4 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/blue/north, +/area/taipei/atrium/club) +"cgV" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller, +/turf/closed/wall/biodome, +/area/taipei/atrium) +"cgY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"chl" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/disposal{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/taipei/atrium/medbay) +"chs" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"chQ" = ( +/turf/open/floor/plating/asteroidwarning/north, +/area/taipei/hangar) +"civ" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/taipei/atrium) +"ciK" = ( +/obj/structure/machinery/washing_machine{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/structure/machinery/washing_machine{ + pixel_y = 13; + pixel_x = -16 + }, +/obj/structure/machinery/washing_machine{ + pixel_y = 28; + pixel_x = 4 + }, +/obj/structure/machinery/washing_machine{ + pixel_y = 28; + pixel_x = -16 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"ciP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) +"ciT" = ( +/obj/structure/surface/rack{ + pixel_x = 4 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = 4 + }, +/obj/item/reagent_container/food/snacks/wrapped/chunk{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"ciU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/turf/open/floor, +/area/taipei/atrium/laundry) +"ciV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/taipei/atrium/theatre) +"cjq" = ( +/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, +/area/taipei/reactor) +"cjC" = ( +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/northeast, +/area/taipei/hangar/cargoshuttle) +"cjD" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"cjE" = ( +/turf/closed/shuttle/ert{ + icon_state = "twe20" + }, +/area/taipei/hangar/cargoshuttle) +"cjL" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/hangar) +"ckc" = ( +/obj/structure/stairs/perspective{ + dir = 8 + }, +/obj/structure/platform/stair_cut/alt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/cargo) +"ckV" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"clj" = ( +/obj/structure/prop/invuln/overhead_pipe, +/turf/open/gm/empty, +/area/taipei/reactor) +"clS" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/taipei/telecomms) +"clT" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"cme" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = -12 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = -12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"cmh" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"cnN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/northeast, +/area/taipei/hangar) +"cop" = ( +/obj/structure/machinery/light{ + dir = 8; + light_power = .25 + }, +/turf/open/floor/prison, +/area/taipei/telecomms) +"coy" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"coJ" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/item/tool/soap{ + pixel_x = 7; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/atrium/medbay) +"cpu" = ( +/obj/structure/bed/sofa/south/white/left, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"cpE" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + pixel_x = 1; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"cpS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/taipei/atrium) +"cqn" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = 8 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = 8 + }, +/obj/structure/largecrate/machine/recycler, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"cqu" = ( +/obj/structure/prop/dam/truck, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"cqH" = ( +/obj/structure/sign/safety/rad_shield, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 16; + pixel_y = 0 + }, +/turf/closed/wall/almayer, +/area/taipei/reactor) +"cqI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/taipei/atrium) +"cqR" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"csj" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"csy" = ( +/obj/structure/stairs/perspective, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/west, +/area/taipei/hangar/cargoshuttle) +"csB" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "anomalybelt" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"csP" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"ctb" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/machinery/light{ + dir = 8; + light_power = .25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"ctt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/taipei/atrium) +"ctE" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"ctJ" = ( +/obj/structure/surface/table/reinforced/black{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/item/clipboard{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/folder/red{ + pixel_x = 12; + pixel_y = 6 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"ctU" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/hotdog{ + pixel_y = -2; + pixel_x = -7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"ctY" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_y = 1; + pixel_x = 9 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"cuo" = ( +/obj/structure/machinery/processor{ + pixel_x = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"cuq" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/taipei/atrium/offices) +"cvv" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"cwG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/taipei/elevator/departures) +"cwI" = ( +/obj/structure/surface/table, +/obj/item/prop/magazine/book/warisaracket{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/prop/magazine/book{ + pixel_x = 11; + pixel_y = 7 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/taipei/atrium/medbay) +"cwK" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"cxI" = ( +/obj/item/paper{ + pixel_x = -21; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"cxO" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/structure/barricade/handrail/kutjevo, +/obj/item/trash/popcorn{ + dir = 1; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"cyC" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + pixel_y = 14 + }, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"cyH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"cyM" = ( +/obj/structure/bed/chair/comfy{ + buckling_y = 2; + dir = 8; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"czj" = ( +/obj/item/lightstick/red/spoke/planted, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"czx" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/atrium/offices) +"czT" = ( +/obj/structure/window_frame/almayer, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"cAm" = ( +/obj/structure/bed/sofa/south/white/left{ + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/inner_corner, +/area/taipei/atrium/medbay) +"cAp" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"cBi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"cBl" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/north) +"cBw" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/window/reinforced/toughened, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/item/tool/pen/red/clicky, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"cBB" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"cCn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/cigarette{ + pixel_x = 4; + pixel_y = 14 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"cCJ" = ( +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 20; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/obj/structure/toilet{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"cCK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/inner_corner, +/area/taipei/cmb) +"cEn" = ( +/obj/structure/surface/table, +/obj/item/toy/plush/therapy/orange{ + pixel_y = 11; + pixel_x = -7 + }, +/obj/item/toy/desk/dippingbird{ + pixel_y = 11; + pixel_x = 4 + }, +/obj/item/toy/deck/uno, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"cEr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/taipei/atrium) +"cEB" = ( +/turf/open/floor/bar, +/area/taipei/atrium/store) +"cFF" = ( +/obj/item/stool{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/prison/blue{ + dir = 8 + }, +/area/taipei/atrium/club) +"cGq" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/left, +/obj/structure/prop/turbine_extras, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 9; + pixel_x = -4; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 16; + pixel_y = 6 + }, +/obj/item/lightstick/red/variant/planted{ + light_range = 5 + }, +/turf/open/space/basic, +/area/taipei/reactor) +"cGF" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"cHC" = ( +/obj/item/stool{ + icon_state = "stool_alt" + }, +/turf/open/floor/whitered{ + dir = 4 + }, +/area/taipei/atrium/restaurant) +"cHI" = ( +/obj/structure/window/framed/almayer, +/obj/structure/blocker/forcefield/human{ + icon = 'icons/' + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"cHV" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = -7; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"cIw" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"cIP" = ( +/obj/structure/surface/rack{ + pixel_x = 4 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = 4 + }, +/obj/item/reagent_container/food/snacks/kepler_crisps{ + pixel_y = 18 + }, +/obj/item/reagent_container/food/snacks/kepler_crisps{ + pixel_x = 9; + pixel_y = 1 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"cIQ" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"cKu" = ( +/obj/structure/flora/pottedplant{ + desc = "How did that get in there?"; + icon_state = "pottedplant_22"; + pixel_y = -2; + pixel_x = 0 + }, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/taipei/atrium/offices) +"cKG" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/obj/structure/machinery/light/spot{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"cMc" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"cMw" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"cMT" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"cNz" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/north) +"cNJ" = ( +/obj/structure/bedsheetbin{ + pixel_y = 15; + pixel_x = 5 + }, +/obj/item/clothing/accessory/black{ + pixel_y = 11; + pixel_x = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"cNY" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"cON" = ( +/obj/structure/bookcase{ + pixel_x = -3 + }, +/obj/structure/bookcase{ + pixel_x = -3; + pixel_y = 21 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"cOS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/atrium) +"cPk" = ( +/obj/structure/stairs/perspective, +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"cPC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitered{ + dir = 4 + }, +/area/taipei/atrium/restaurant) +"cPG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge, +/area/taipei/hangar/cargoshuttle) +"cPL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/prison, +/area/taipei/atrium) +"cPR" = ( +/turf/open/floor/almayer/edge/east, +/area/taipei/hangar/cargoshuttle) +"cPV" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium) +"cQn" = ( +/turf/open/floor/kutjevo/colors, +/area/taipei/atrium) +"cQW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/kutjevo/colors/red/edge, +/area/taipei/cmb) +"cRg" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/reactor) +"cRk" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"cRo" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"cRY" = ( +/obj/structure/pipes/vents, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/carpet14_10/west, +/area/taipei/atrium/theatre) +"cSO" = ( +/obj/structure/cargo_container/kelland/left{ + pixel_x = 12; + pixel_y = 0 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"cTa" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"cUb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"cUe" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet11_12/west, +/area/taipei/atrium/theatre) +"cUh" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"cUw" = ( +/obj/structure/surface/table, +/obj/item/toy/desk/fan{ + pixel_y = 8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"cUy" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/prison/bluecorner/west, +/area/taipei/atrium/club) +"cVj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/grant/right, +/turf/open/floor/plating/asteroidwarning, +/area/taipei/hangar) +"cVT" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/taipei/atrium/medbay) +"cWc" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"cXm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"cYb" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"cYh" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/kutjevo/colors/cyan/edge, +/area/taipei/atrium/medbay) +"cZJ" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/taipei/atrium) +"cZQ" = ( +/obj/structure/platform/kutjevo/smooth{ + luminosity = 15 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/kutjevo/smooth{ + light_power = 2; + light_range = 5; + light_on = 1 + }, +/turf/open/floor/prison/chapel_carpet, +/turf/open/floor/prison/chapel_carpet, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"dap" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"daB" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/atrium) +"dbA" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"dbC" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/south) +"dbT" = ( +/obj/structure/bed/chair/comfy/alpha, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"dcw" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor, +/area/taipei/atrium/laundry) +"dcL" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/cmb) +"dcQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"dcV" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_2"; + name = "remote door-control"; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_1"; + name = "remote door-control"; + pixel_x = 7; + pixel_y = 16 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"ddd" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"dem" = ( +/obj/structure/lattice, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"deH" = ( +/obj/item/storage/secure/safe{ + pixel_y = 29 + }, +/obj/item/spacecash/c1000/counterfeit{ + pixel_y = 10 + }, +/obj/item/storage/briefcase, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"deX" = ( +/obj/structure/cargo_container/hd/mid/alt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"dfJ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/obj/effect/overlay/palmtree_l, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"dgu" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 6; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"dhc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo, +/area/taipei/atrium) +"dhH" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"dij" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"dit" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison, +/area/taipei/hangar) +"diw" = ( +/obj/structure/platform_decoration, +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"diJ" = ( +/turf/closed/shuttle/ert{ + icon_state = "twe21" + }, +/area/taipei/hangar/cargoshuttle) +"djh" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/taipei/atrium/hotel) +"djy" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/hangar) +"djS" = ( +/obj/structure/platform, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"djU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"djV" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"dki" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/black_market/poncho, +/turf/open/floor/prison, +/area/taipei/cargo) +"dla" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/taipei/atrium/medbay) +"dlr" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/item/toy/desk/fan, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"dlv" = ( +/obj/structure/bed/sofa/vert/white/top, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"dlR" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"dnc" = ( +/obj/structure/bed/sofa/south/white/right, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/machinery/light/spot{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"dnG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/taipei/atrium) +"dnI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/whitered, +/area/taipei/atrium/restaurant) +"dnZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/closet/crate/freezer, +/turf/open/floor/prison, +/area/taipei/cargo) +"dov" = ( +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + dir = 4; + layer = 3.2; + pixel_x = -14; + pixel_y = 18 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet5_1, +/area/taipei/atrium/hotel) +"doI" = ( +/turf/closed/mineral, +/area/taipei/maints/south) +"doK" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/obj/item/stool{ + pixel_y = 12; + pixel_x = 4 + }, +/turf/open/floor/prison/blue, +/area/taipei/atrium/club) +"doY" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/closed/wall/almayer, +/area/taipei/maints/north) +"dqo" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"dqq" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"dqw" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"dqM" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"dro" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"drB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/cargo) +"drU" = ( +/turf/closed/shuttle/ert{ + icon_state = "twe5" + }, +/area/taipei/hangar/cargoshuttle) +"dsU" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/west, +/area/taipei/atrium/club) +"dtY" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = -24 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = -24 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"dtZ" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"duI" = ( +/obj/item/stool{ + pixel_y = 11; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"duV" = ( +/obj/structure/surface/table, +/obj/item/trash/ceramic_plate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"duY" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"dvn" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"dvs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/taipei/atrium) +"dvx" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8; + pixel_x = -1; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"dvy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"dvN" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet13_5/west, +/area/taipei/atrium/theatre) +"dvO" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"dwe" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_2"; + opacity = 0 + }, +/area/taipei/hangar/cargoshuttle) +"dwn" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"dwD" = ( +/obj/structure/window_frame/corsat, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/taipei/atrium) +"dwV" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = 9; + pixel_y = 20 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = -5; + pixel_y = 20 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet10_8, +/area/taipei/atrium/hotel) +"dwX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/taipei/atrium) +"dwY" = ( +/obj/structure/prop/turbine, +/obj/item/lightstick/red/variant/planted, +/turf/open/floor/mech_bay_recharge_floor, +/area/taipei/reactor) +"dxb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"dxd" = ( +/obj/structure/bed/sofa/vert/white/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/elevator/departures) +"dxk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/reactor) +"dxP" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/atrium) +"dyr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"dzd" = ( +/obj/structure/machinery/access_button, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/south) +"dzM" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/item/clothing/accessory/stethoscope, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/taipei/atrium/medbay) +"dAe" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"dBi" = ( +/obj/structure/pipes/vents{ + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/taipei/atrium/club) +"dBp" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/turf/open/floor/kutjevo/colors/cyan/edge, +/area/taipei/atrium/medbay) +"dBI" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/window/reinforced/toughened, +/obj/item/toy/desk/fan{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"dCp" = ( +/obj/structure/machinery/elevator_strut/bottom, +/obj/structure/prop/invuln/overhead_pipe, +/turf/open/gm/empty, +/area/taipei/reactor) +"dCF" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"dCL" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/south) +"dCM" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/machinery/access_button, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/south) +"dCZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/shuttle/ert{ + icon_state = "twe5" + }, +/area/taipei/hangar/cargoshuttle) +"dDy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitered{ + dir = 5 + }, +/area/taipei/atrium/restaurant) +"dEt" = ( +/obj/structure/prop/turbine{ + pixel_x = 16; + pixel_y = 0 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"dET" = ( +/obj/item/lightstick/red/spoke/planted, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"dFn" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"dFK" = ( +/obj/structure/machinery/light{ + dir = 8; + light_power = .25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet7_3/west, +/area/taipei/atrium/theatre) +"dGa" = ( +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/taipei/atrium) +"dGp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/atrium/theatre) +"dGJ" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"dGS" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"dHE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/north, +/area/taipei/atrium/theatre) +"dHP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/north, +/area/taipei/atrium/theatre) +"dIb" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/platform, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"dIu" = ( +/obj/structure/stairs/perspective, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"dII" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/asteroidplating, +/area/taipei/atrium) +"dJm" = ( +/obj/structure/machinery/firealarm, +/turf/closed/wall/almayer, +/area/taipei/maints/south) +"dJw" = ( +/obj/structure/dartboard{ + pixel_y = 30 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"dJx" = ( +/obj/structure/largecrate/supply/weapons/flamers{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/prop/geiger_counter{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"dJA" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"dJI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/grant/left, +/turf/open/floor/plating/asteroidwarning, +/area/taipei/hangar) +"dJV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/shaker, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"dJX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"dLf" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"dLh" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"dNs" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"dNx" = ( +/obj/structure/platform_decoration/kutjevo, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"dNF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/ferret/left, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"dNX" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/south) +"dOy" = ( +/obj/structure/window_frame/corsat, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/taipei/atrium) +"dOz" = ( +/obj/structure/surface/table, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl"; + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/storage/pill_bottle/spaceacillin/skillless, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"dOO" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/north) +"dOP" = ( +/obj/structure/toilet{ + pixel_y = 12 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 20; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"dPk" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + light_color = #00008B; + pixel_x = 4; + light_power = .50 + }, +/turf/open/floor/prison/blue{ + dir = 8 + }, +/area/taipei/atrium/club) +"dPm" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"dPn" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform/stair_cut, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526" + }, +/turf/open/floor/asteroidfloor, +/area/taipei/maints/south) +"dPy" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/space) +"dQa" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"dQc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/southwest, +/area/taipei/hangar) +"dRT" = ( +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"dSs" = ( +/obj/item/stool{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue{ + dir = 8 + }, +/area/taipei/atrium/club) +"dSv" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = -24 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = -24 + }, +/obj/structure/largecrate/supply/supplies/tables_racks{ + pixel_y = 12 + }, +/obj/structure/largecrate/random/mini{ + pixel_x = -3; + pixel_y = 27 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"dSF" = ( +/obj/structure/sign/poster/music, +/obj/structure/mirror, +/turf/closed/wall/biodome, +/area/taipei/atrium/theatre) +"dSW" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/taipei/hangar) +"dTd" = ( +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526" + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"dVp" = ( +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"dVu" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"dVY" = ( +/obj/structure/cargo_container/horizontal/blue/middle{ + pixel_x = 16 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"dWq" = ( +/obj/structure/bed/sofa/vert/white/top, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"dXb" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -8; + pixel_y = 0 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"dXc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Visitor Entrance" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitered{ + dir = 1 + }, +/area/taipei/atrium/restaurant) +"dXn" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"dXu" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"dXx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"dXZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/taipei/atrium) +"dYF" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"dYH" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/taipei/atrium) +"dZX" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"eba" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/north) +"ebp" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_x = -1; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"eby" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/hangar) +"ebX" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"ecd" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/taipei/atrium/offices) +"ecs" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"ect" = ( +/obj/structure/machinery/vending/coffee{ + pixel_x = 14; + pixel_y = 14 + }, +/obj/structure/machinery/vending/snack/packaged{ + pixel_x = -7; + pixel_y = 14 + }, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 1 + }, +/area/taipei/cmb) +"edd" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"ede" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/north) +"edf" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/south) +"edm" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"eds" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/taipei/atrium) +"edJ" = ( +/obj/structure/prop/holidays/string_lights, +/obj/structure/sign/poster/pinup, +/turf/closed/wall/almayer/outer, +/area/taipei/hangar) +"eei" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/barricade/handrail/kutjevo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"een" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/taipei/atrium) +"eeF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"eeT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"efj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 8 + }, +/area/taipei/atrium) +"efH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"efS" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"egf" = ( +/obj/item/lightstick/red/spoke/planted, +/turf/open/gm/empty, +/area/taipei/reactor) +"egt" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"egN" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"egQ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"ehn" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/taipei/atrium) +"ehu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"ehC" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 1; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"ehD" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 16; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"ehP" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison, +/area/taipei/reactor) +"ehX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4; + pixel_y = 2 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"eiv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"ejA" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitered{ + dir = 1 + }, +/area/taipei/atrium/restaurant) +"ejE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/floor, +/area/taipei/hangar/cargoshuttle) +"ejV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/taipei/maints/south) +"ejY" = ( +/obj/structure/surface/rack{ + pixel_x = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"ekq" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/elevator/departures) +"ekt" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/atrium) +"ekO" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + pixel_y = 14 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"elG" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/podhatchfloor, +/area/taipei/telecomms) +"emK" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"emO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"emS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/atrium/bookstore) +"enl" = ( +/turf/closed/wall/r_wall/elevator{ + dir = 10 + }, +/area/taipei/elevator/arrivals) +"enm" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/south) +"enT" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"eoj" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/carpet14_10/west, +/area/taipei/atrium/theatre) +"eoO" = ( +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"epx" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/turf/open/floor/whitered{ + dir = 4 + }, +/area/taipei/atrium/restaurant) +"epz" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"epL" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = -9; + pixel_y = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"epO" = ( +/turf/open/floor/kutjevo/multi_tiles, +/area/taipei/cmb) +"epS" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"epY" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"eqt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/south) +"equ" = ( +/obj/structure/machinery/power/smes/buildable/charged, +/turf/open/floor/prison, +/area/taipei/reactor) +"eqY" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/taipei/atrium) +"erc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/taipei/elevator/departures) +"erK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet6_2, +/area/taipei/atrium/hotel) +"esO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"etN" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"etP" = ( +/obj/item/trash/crushed_cup{ + pixel_y = -18; + pixel_x = -15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"euI" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"evt" = ( +/obj/structure/largecrate/supply{ + pixel_x = -14; + pixel_y = -3 + }, +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"evE" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"ewg" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/taipei/atrium/offices) +"ewl" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"ewN" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"ewP" = ( +/obj/structure/platform_decoration/kutjevo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/taipei/atrium) +"eys" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/obj/structure/stairs/perspective, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"eyX" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison, +/area/taipei/atrium) +"eza" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"ezz" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) +"ezH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"ezN" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/north) +"eAp" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"eAs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/powerloader_wreckage, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/taipei/cargo) +"eAu" = ( +/turf/open/space/basic, +/area/taipei/cargo) +"eAQ" = ( +/obj/item/stool{ + pixel_y = 15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/taipei/atrium/theatre) +"eBz" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"eCr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/north, +/area/taipei/atrium/theatre) +"eCv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"eCy" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"eCz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/atrium) +"eCH" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/turf/closed/wall/biodome, +/area/taipei/atrium/store) +"eCP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/asteroidwarning, +/area/taipei/hangar) +"eCV" = ( +/obj/structure/stairs/perspective{ + dir = 4 + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/prison, +/area/taipei/maints/north) +"eDc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 8; + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"eDn" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 7 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium/medbay) +"eDp" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"eDs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 4 + }, +/area/taipei/cmb) +"eDy" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 80; + pixel_y = 7 + }, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/prison/bluecorner/west, +/area/taipei/atrium/club) +"eDM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"eEb" = ( +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"eEi" = ( +/obj/structure/machinery/door/poddoor/almayer/locked, +/obj/structure/blocker/forcefield/human, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/north) +"eEo" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + pixel_y = 14 + }, +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"eEy" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"eEM" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = 7 + }, +/obj/item/book/manual/surgery{ + pixel_x = -8; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/pill_bottle/stimulant{ + pixel_x = -1; + pixel_y = 22 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium/medbay) +"eFZ" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"eGO" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/south) +"eGP" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/atrium) +"eIa" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 + }, +/obj/item/spacecash/c10{ + pixel_y = 4; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"eIq" = ( +/obj/docking_port/stationary/marine_dropship, +/turf/open/floor/plating, +/area/taipei/hangar/landingzone) +"eIR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/prison/darkbrowncorners2/southwest, +/area/taipei/atrium/theatre) +"eKu" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 3 + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"eKU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/taipei/atrium) +"eKV" = ( +/obj/effect/vehicle_spawner/van/decrepit, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"eLj" = ( +/obj/structure/bed/chair/comfy{ + buckling_y = 2; + dir = 8; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"eMb" = ( +/turf/closed/wall/biodome, +/turf/open/floor/whitered{ + dir = 4 + }, +/area/taipei/atrium/restaurant) +"eMt" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"eNI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/taipei/atrium/restaurant) +"eNU" = ( +/obj/structure/bed/sofa/vert/white/bot, +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"eNX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"eOh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/floor, +/area/taipei/hangar/cargoshuttle) +"eOl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"eOt" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"eOL" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/taipei/atrium/medbay) +"eOW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"ePz" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"ePC" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"ePI" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/desk/newtoncradle, +/turf/open/floor/prison, +/area/taipei/cargo) +"ePR" = ( +/obj/structure/bed/sofa/south/white/right{ + pixel_y = 16 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium/medbay) +"eQf" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"eQP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison/darkred2/east, +/area/taipei/atrium/theatre) +"eSC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"eSK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"eTy" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/wood/ship, +/area/taipei/atrium/offices) +"eUc" = ( +/obj/structure/barricade/handrail/type_b, +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"eUM" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + layer = 4.3; + pixel_y = 13 + }, +/obj/item/trash/chips, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"eVv" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"eWg" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/taipei/atrium) +"eWm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 5 + }, +/area/taipei/cmb) +"eWu" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"eWv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/turf/open/floor/prison/cell_stripe, +/area/taipei/atrium/hotel) +"eWE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/turf/closed/wall/almayer, +/area/taipei/reactor) +"eWQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/r_wall/prison, +/area/taipei/cmb) +"eXw" = ( +/obj/structure/machinery/line_nexter/med, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"eYD" = ( +/turf/open/floor/prison, +/area/taipei/maints/north) +"eYP" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/item/paper_bin, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"eZk" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"eZo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/southwest, +/area/taipei/hangar) +"eZv" = ( +/obj/structure/prop/power_transformer, +/obj/structure/lattice, +/obj/structure/prop/static_tank, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"eZE" = ( +/obj/structure/bed/chair/comfy{ + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"eZW" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"eZX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 8; + dir = 4 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"faq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"faN" = ( +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs, +/obj/structure/closet/secure_closet/security_empty, +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 1 + }, +/area/taipei/cmb) +"faQ" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_half_cap" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"fbc" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/left, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 9; + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/taipei/reactor) +"fby" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"fbR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/north, +/area/taipei/hangar) +"fcj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"fcp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/taipei/atrium) +"fcD" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/cobweb2/dynamic{ + pixel_x = 0; + pixel_y = -26 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"fcH" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"fdn" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"fdE" = ( +/obj/structure/flora/bush/ausbushes/var3, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"fdU" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/taipei/atrium/offices) +"fed" = ( +/turf/closed/shuttle/ert{ + icon_state = "twe2" + }, +/area/taipei/hangar/cargoshuttle) +"fer" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"feF" = ( +/obj/structure/shuttle/engine/propulsion{ + pixel_x = 16; + pixel_y = 7 + }, +/obj/item/lightstick/red/variant/planted, +/turf/open/gm/empty, +/area/taipei/reactor) +"feT" = ( +/obj/structure/bed/sofa/south/white, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"fft" = ( +/obj/structure/machinery/conveyor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"ffK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"ffL" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = -1; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium/medbay) +"ffX" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"fgw" = ( +/obj/item/stool{ + pixel_y = 8; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"fgE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/atrium) +"fhB" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"fhG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 6; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/north) +"fhK" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/atrium) +"fhQ" = ( +/obj/item/stool{ + icon_state = "stool_alt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitered{ + dir = 4 + }, +/area/taipei/atrium/restaurant) +"fhU" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = 15 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/taipei/atrium/medbay) +"fih" = ( +/obj/structure/bookcase{ + pixel_x = 3; + pixel_y = 20 + }, +/obj/structure/bookcase{ + pixel_x = 3; + pixel_y = 42 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"fjx" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 8 + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"flb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/taipei/hangar/landingzone) +"flj" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/north) +"flt" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"flG" = ( +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 13; + pixel_y = -35 + }, +/turf/closed/wall/almayer/white, +/area/taipei/reactor) +"flR" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/floor/prison, +/area/taipei/telecomms) +"flS" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/item/storage/briefcase{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"fmQ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/cargo) +"fny" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"fnB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/taipei/atrium/offices) +"fnG" = ( +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"foy" = ( +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"foN" = ( +/obj/structure/surface/rack{ + pixel_x = -5 + }, +/obj/structure/surface/rack{ + pixel_x = 18 + }, +/obj/item/prop/magazine/dirty/torn{ + pixel_y = 12 + }, +/obj/item/prop/magazine/boots/n117{ + pixel_y = 4; + pixel_x = -27 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"foU" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"foW" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"fph" = ( +/obj/structure/machinery/conveyor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/taipei/atrium) +"fpJ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"fpX" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/hangar) +"fqc" = ( +/obj/structure/cargo_container/kelland/right{ + pixel_x = 0; + pixel_y = -8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"fqd" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"fql" = ( +/obj/structure/machinery/light/small{ + dir = 4; + icon_state = "bulb-burned"; + status = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"fqw" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"fqy" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"fqO" = ( +/obj/effect/decal/grass_overlay/grass1/inner, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"frb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/taipei/elevator/arrivals) +"frf" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/reactor) +"frt" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 4 + }, +/obj/item/stool{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"frY" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"fsy" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"fsI" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.05 + }, +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/atrium) +"ftR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"fuw" = ( +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = -10; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"fuB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/atrium/laundry) +"fuE" = ( +/turf/closed/wall/almayer, +/area/taipei/atrium/laundry) +"fve" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"fvi" = ( +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"fvv" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/reactor) +"fwD" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"fwT" = ( +/turf/closed/wall/biodome, +/area/taipei/atrium/club) +"fxe" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"fxA" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 3 + }, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"fyn" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"fzp" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"fzM" = ( +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/floor, +/area/taipei/hangar/cargoshuttle) +"fAG" = ( +/obj/structure/prop/turbine, +/obj/item/lightstick/red/variant/planted{ + light_range = 5 + }, +/turf/open/space/basic, +/area/taipei/reactor) +"fBF" = ( +/obj/structure/bed/sofa/south/white/left{ + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium/medbay) +"fBH" = ( +/obj/structure/device/broken_piano, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/item/device/flashlight/lamp/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/wood_broken6, +/area/taipei/atrium/restaurant) +"fDt" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"fDw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/northwest, +/area/taipei/maints/north) +"fDX" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"fEh" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/southeast, +/area/taipei/hangar/cargoshuttle) +"fEj" = ( +/obj/structure/stairs/perspective{ + dir = 4 + }, +/turf/closed/wall/almayer, +/area/taipei/maints/south) +"fEF" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/item/tool/soap{ + pixel_x = 7; + pixel_y = -10 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"fHg" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/taipei/atrium) +"fHj" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/restaurant) +"fHn" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/structure/largecrate/mule, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"fKi" = ( +/obj/structure/cargo_container/kelland/left{ + pixel_x = 0; + pixel_y = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"fKL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"fKX" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/north) +"fLj" = ( +/obj/structure/machinery/light/double{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 4 + }, +/area/taipei/atrium) +"fLv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/machine/sleeper, +/turf/open/floor/prison, +/area/taipei/cargo) +"fLE" = ( +/turf/closed/wall/almayer, +/area/taipei/hangar) +"fLR" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 1 + }, +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/endcap_right, +/area/taipei/hangar/cargoshuttle) +"fMz" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"fMR" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"fMW" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/bed/chair/comfy{ + buckling_y = 2; + dir = 8; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"fNc" = ( +/obj/structure/platform/kutjevo/smooth{ + luminosity = 15 + }, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/barricade/handrail/kutjevo, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"fNo" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/bed/sofa/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/fake_wood, +/area/taipei/atrium/theatre) +"fOo" = ( +/obj/structure/machinery/conveyor, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"fOI" = ( +/obj/structure/sign/safety/reception, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/atrium/hotel) +"fOL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"fOS" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"fPu" = ( +/obj/item/lightstick/red/spoke/planted, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"fPx" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium/bookstore) +"fPH" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/north) +"fPY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/reactor) +"fQr" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/closed/wall/almayer, +/area/taipei/maints/north) +"fQu" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/structure/machinery/light_switch{ + pixel_x = -10; + pixel_y = 0 + }, +/obj/structure/sign/poster/music{ + pixel_x = -1; + pixel_y = -1 + }, +/turf/closed/wall/almayer/white, +/area/taipei/reactor) +"fRb" = ( +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"fRl" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"fRG" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"fSe" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"fSv" = ( +/turf/closed/wall/almayer/white, +/area/taipei/reactor) +"fTg" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"fVs" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/reactor) +"fVz" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"fVD" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"fVU" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"fWd" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/south) +"fWG" = ( +/obj/structure/machinery/shower{ + dir = 8; + pixel_y = 5; + pixel_x = 2 + }, +/obj/structure/curtain/open/shower, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"fWR" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"fXg" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/hangar) +"fXj" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/machinery/light/spot, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"fXz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/hangar) +"fYz" = ( +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 20; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/obj/structure/toilet{ + pixel_y = 12 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"fYB" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/floor/almayer/edge/east, +/area/taipei/hangar/cargoshuttle) +"fZq" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" + }, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/south) +"fZP" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + light_color = "#dae2ff"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue{ + dir = 8 + }, +/area/taipei/atrium/club) +"gak" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.05 + }, +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/atrium) +"gaU" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/north) +"gaX" = ( +/obj/structure/platform/shiva/catwalk, +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner, +/area/taipei/atrium/club) +"gbt" = ( +/turf/closed/wall/biodome, +/area/taipei/atrium/theatre) +"gbD" = ( +/turf/open/floor/corsat/marked, +/area/taipei/elevator/arrivals) +"gbE" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_y = 12 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/atrium) +"gbO" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/largecrate/random/case/double{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/structure/largecrate/random/case/small{ + pixel_x = -5; + pixel_y = -11 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"gbP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 8 + }, +/area/taipei/cmb) +"gdg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/taipei/atrium/club) +"gds" = ( +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"gdx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/taipei/atrium/club) +"gdN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/south) +"gdR" = ( +/obj/effect/decal/strata_decals/grime/grime1, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"gfa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"gfO" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/hangar) +"gfR" = ( +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/colors/red/edge, +/area/taipei/cmb) +"ghB" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"giM" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"gje" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/north) +"gjh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/atrium) +"gjo" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"gjX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/elevator/arrivals) +"gkT" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"glh" = ( +/turf/open/floor/prison, +/area/taipei/hangar) +"glQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/taipei/atrium) +"glU" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"gmr" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"gmT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"gnc" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkredcorners2/east, +/area/taipei/atrium/theatre) +"gnu" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/maints/north) +"gnx" = ( +/obj/structure/urinal{ + pixel_y = 25 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"gog" = ( +/obj/structure/cargo_container/kelland/left{ + pixel_x = 0; + pixel_y = -8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"goT" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/elevator/arrivals) +"gpg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/hangar) +"gpl" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = -12 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = -12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"gpw" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/cargo) +"gqz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"gqB" = ( +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"gqW" = ( +/obj/structure/machinery/camera{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 8 + }, +/area/taipei/atrium) +"gqY" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"gra" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"grj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"gsM" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"gte" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"gtg" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/machinery/light{ + dir = 8; + light_power = .25 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"gtn" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"gtr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"gtV" = ( +/obj/structure/prop/invuln/lattice_prop, +/obj/structure/prop/power_transformer, +/obj/structure/prop/structure_lattice, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6; + dir = 3 + }, +/turf/open/space/basic, +/area/taipei/reactor) +"gua" = ( +/turf/open/space/basic, +/area/taipei/reactor) +"guf" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/hangar) +"guC" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/hangar) +"gvn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/supply/supplies/water{ + pixel_x = 6; + pixel_y = -19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"gvH" = ( +/turf/open/gm/empty, +/area/taipei/maints/north) +"gwB" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"gxp" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/taipei/atrium/offices) +"gxK" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"gxY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/ferret/mid, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"gyw" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"gyV" = ( +/obj/structure/prop/holidays/string_lights, +/turf/closed/wall/almayer/outer, +/area/taipei/hangar) +"gzG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"gzS" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/restaurant) +"gAi" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/asteroid, +/area/taipei/cargo) +"gAS" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/taipei/atrium) +"gBM" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"gBW" = ( +/obj/structure/surface/table, +/obj/item/trash/ceramic_plate, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"gCt" = ( +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) +"gCK" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner, +/area/taipei/atrium/club) +"gCN" = ( +/obj/structure/platform, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"gDd" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/prison, +/area/taipei/maints/south) +"gEA" = ( +/turf/open/floor/almayer/empty, +/area/taipei/reactor) +"gEE" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"gFF" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner, +/area/taipei/atrium/club) +"gFL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/carpet15_15/west, +/area/taipei/atrium/theatre) +"gFX" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"gGE" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"gHz" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/chapel_carpet, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"gHA" = ( +/obj/structure/surface/rack{ + pixel_x = -5 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = -5 + }, +/obj/structure/surface/rack{ + pixel_x = 18 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = 18 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"gHK" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/machinery/light{ + dir = 8; + light_power = .25 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"gHQ" = ( +/obj/structure/cargo_container/ferret/mid, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/catwalk, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"gIr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = 10; + pixel_y = -1 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"gIS" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/taipei/atrium) +"gJg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/taipei/atrium) +"gKn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"gKF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"gLk" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/maints/north) +"gMD" = ( +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/taipei/atrium) +"gME" = ( +/obj/structure/machinery/camera{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 8 + }, +/area/taipei/cmb) +"gMS" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"gOA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/south) +"gOS" = ( +/obj/structure/platform/stair_cut/alt, +/obj/structure/stairs/perspective{ + dir = 8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"gOX" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"gPd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"gPy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_x = 5; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner, +/area/taipei/atrium/medbay) +"gPK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/maints/south) +"gRR" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/prison, +/area/taipei/cargo) +"gSa" = ( +/obj/structure/machinery/disposal{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 1 + }, +/area/taipei/cmb) +"gSg" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"gSl" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/taipei/atrium) +"gSp" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"gSR" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 15 + }, +/turf/closed/wall/biodome, +/area/taipei/atrium) +"gUc" = ( +/obj/structure/platform/strata/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"gUf" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/cmb) +"gVl" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"gWs" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"gWM" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"gXe" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"gXu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitered{ + dir = 1 + }, +/area/taipei/atrium/restaurant) +"gYN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/endcap_left/east, +/area/taipei/hangar/cargoshuttle) +"gZb" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet6_2, +/area/taipei/atrium/hotel) +"hbh" = ( +/turf/closed/wall/almayer/outer, +/area/taipei/cargo) +"hbE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"hbS" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "supply_elevator_railing" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"hbY" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/south) +"hbZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"hcq" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"hcw" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/cobweb2/dynamic{ + pixel_x = 0; + pixel_y = -26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"hdb" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 10; + pixel_y = 14 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"hdS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"hec" = ( +/obj/structure/window/reinforced, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/darkbrowncorners2/southwest, +/area/taipei/atrium/theatre) +"heo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/north) +"hfC" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"hfD" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"hgl" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"hgs" = ( +/obj/structure/machinery/disposal{ + density = 0; + pixel_x = 6; + pixel_y = 16 + }, +/obj/item/trash/popcorn{ + pixel_y = 27; + pixel_x = 2 + }, +/obj/item/trash/crushed_cup, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet10_8/west, +/area/taipei/atrium/theatre) +"hhI" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"hhN" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"hib" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"hir" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison, +/area/taipei/maints/north) +"hjy" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"hjX" = ( +/obj/structure/platform/kutjevo/smooth{ + luminosity = 15 + }, +/obj/structure/barricade/handrail/kutjevo, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = 0; + pixel_y = -15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"hke" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/seegson/left, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"hkk" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"hlk" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/atrium) +"hlR" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"hmJ" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/taipei/atrium) +"hnj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/taipei/elevator/departures) +"hnB" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 8 + }, +/area/taipei/atrium) +"hnF" = ( +/obj/structure/window/framed/almayer, +/turf/closed/wall/almayer, +/area/taipei/telecomms) +"hnO" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/cargo) +"hnP" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow"; + color = "#E10600"; + dir = 8 + }, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "vehicle_elevator_railing_aux" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"hnU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/south) +"hob" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 1 + }, +/area/taipei/cmb) +"hpD" = ( +/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"hpF" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/item/stool{ + icon_state = "stool_alt"; + pixel_y = 7; + pixel_x = -5 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/restaurant) +"hpZ" = ( +/obj/structure/machinery/conveyor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"hqb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"hrp" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"hrv" = ( +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"hrA" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"hrB" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/bed/sofa/south, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/fake_wood, +/area/taipei/atrium/theatre) +"hrQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"hsj" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/muffin{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"hsz" = ( +/obj/vehicle/powerloader{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"hsC" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/almayer/edge/east, +/area/taipei/hangar/cargoshuttle) +"hsO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/taipei/atrium/restaurant) +"hsW" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"htk" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"htn" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/turf/open/floor/prison, +/area/taipei/telecomms) +"htv" = ( +/obj/structure/bedsheetbin{ + pixel_y = 15; + pixel_x = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"htJ" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"htQ" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"hum" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"huQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/research, +/obj/structure/machinery/door/airlock/multi_tile/elevator/access, +/turf/open/floor/corsat/marked, +/area/taipei/elevator/arrivals) +"hvq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/taipei/hangar) +"hvr" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"hvt" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/cigarettes/lady_finger{ + pixel_x = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"hvy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/taipei/cmb) +"hvF" = ( +/obj/item/stool{ + pixel_y = 11; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"hwO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"hxt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/glass, +/obj/structure/machinery/light/double/blue{ + dir = 8; + light_color = #00008B; + pixel_x = -5; + light_power = .75 + }, +/turf/open/floor/prison/blue/east, +/area/taipei/atrium/club) +"hyf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow"; + color = "#E10600"; + dir = 8 + }, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "vehicle_elevator_railing_aux" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"hyw" = ( +/turf/closed/shuttle/ert{ + icon_state = "twe23" + }, +/area/taipei/hangar/cargoshuttle) +"hzr" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"hBn" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"hBQ" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"hCE" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/taipei/atrium) +"hCN" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"hDa" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"hDf" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/item/tool/soap{ + pixel_x = 7; + pixel_y = -10 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/taipei/atrium/offices) +"hDg" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 5; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"hDo" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"hDp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"hDM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"hDR" = ( +/obj/structure/bed/chair/comfy{ + pixel_y = -2 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"hDS" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/taipei/atrium/medbay) +"hDV" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/cargo) +"hEZ" = ( +/obj/structure/platform_decoration/strata/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"hFG" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/taipei/telecomms) +"hFH" = ( +/obj/structure/prop/server_equipment, +/turf/open/floor/podhatchfloor, +/area/taipei/telecomms) +"hGe" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"hGM" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"hHb" = ( +/obj/structure/cargo_container/arious/right, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"hHo" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/taipei/atrium) +"hHv" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/south) +"hHL" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"hIg" = ( +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"hIz" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"hIA" = ( +/obj/structure/bookcase{ + pixel_x = 9; + pixel_y = 20 + }, +/obj/item/prop/magazine/book/bladerunner{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5"; + pixel_x = 9; + pixel_y = 42 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8; + light_power = .25 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"hJN" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/obj/item/stool{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"hJS" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"hJX" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails{ + dir = 4; + pixel_y = 2 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"hKe" = ( +/obj/structure/stairs/perspective{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/floor/prison, +/area/taipei/telecomms) +"hKJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/north) +"hLc" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/taipei/atrium/theatre) +"hLu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"hLG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"hMz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"hMB" = ( +/obj/structure/machinery/conveyor{ + dir = 9; + id = "anomalybelt" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"hMF" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"hMK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/taipei/atrium) +"hNt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"hOD" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"hOI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge{ + dir = 9 + }, +/area/taipei/atrium/medbay) +"hOJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl"; + pixel_x = -2; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"hON" = ( +/turf/open/floor/corsat/marked, +/area/taipei/elevator/departures) +"hOX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/taipei/atrium) +"hQZ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space/basic, +/area/space) +"hRn" = ( +/obj/structure/prop/turbine, +/obj/item/lightstick/red/variant/planted, +/turf/open/gm/empty, +/area/taipei/reactor) +"hSu" = ( +/obj/item/stool{ + pixel_y = 14 + }, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"hSG" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"hTw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Visitor Entrance" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"hTM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/taipei/atrium/medbay) +"hTN" = ( +/obj/structure/bed/sofa/south/white/right, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"hTU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"hTX" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"hUr" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/turf/open/floor/prison, +/area/taipei/telecomms) +"hVi" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"hVs" = ( +/obj/item/lightstick/red/spoke/planted, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"hWd" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/obj/item/stool{ + pixel_y = 11; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"hWH" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison, +/area/taipei/cargo) +"hYm" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"hYn" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"hYN" = ( +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/floor, +/area/taipei/hangar/cargoshuttle) +"hZU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"iaj" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"ian" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"iaq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/north) +"iaN" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"ibn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"ici" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"icK" = ( +/obj/structure/toilet{ + pixel_y = 15; + pixel_x = 1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/decal/strata_decals/grime/grime2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"icV" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"idf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/maints/north) +"idh" = ( +/turf/open/floor/carpet10_8, +/area/taipei/atrium/hotel) +"idu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/glass, +/obj/item/trash/cigbutt, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"idY" = ( +/obj/structure/machinery/washing_machine{ + pixel_y = 13; + pixel_x = -5 + }, +/obj/structure/machinery/washing_machine{ + pixel_y = 28; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"iez" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"ieT" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/north) +"ife" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/secure_data{ + dir = 8; + pixel_x = 0; + pixel_y = 7 + }, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = null; + pixel_x = 0; + pixel_y = -6 + }, +/turf/open/floor/strata/fake_wood, +/area/taipei/cmb) +"ifL" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"igm" = ( +/obj/structure/bed/sofa/vert/white/bot, +/turf/open/floor/kutjevo/tan, +/area/taipei/elevator/arrivals) +"igp" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/taipei/atrium) +"igI" = ( +/obj/structure/closet/secure_closet/security_empty, +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 8 + }, +/area/taipei/cmb) +"igT" = ( +/obj/structure/surface/table, +/obj/structure/machinery/door/window/brigdoor/southleft, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"ihA" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"ihD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"ihM" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"ihO" = ( +/obj/structure/sign/double/maltesefalcon/right, +/turf/closed/wall/biodome, +/area/taipei/atrium/restaurant) +"iid" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitered{ + dir = 9 + }, +/area/taipei/atrium/restaurant) +"iif" = ( +/obj/structure/machinery/camera{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"iiq" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"iiw" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"iiO" = ( +/obj/structure/machinery/light/double{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"ijT" = ( +/obj/structure/window_frame/corsat, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/taipei/atrium) +"ikP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"imr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"inE" = ( +/obj/structure/window/reinforced/toughened, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"inP" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 8; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/hangar) +"ipj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/taipei/atrium) +"ipQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/reactor) +"isO" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"itn" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"itu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 14; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 4; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + layer = 3.1; + pixel_x = 15; + pixel_y = 17 + }, +/obj/item/storage/beer_pack{ + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"itw" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"itE" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"itI" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_x = 0; + pixel_y = 15 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_x = 0; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/reactor) +"itO" = ( +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = 17 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"iuy" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"iuB" = ( +/obj/structure/machinery/conveyor{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/taipei/atrium) +"ivo" = ( +/obj/item/tool/wet_sign{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"ivC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"ivI" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/north) +"iwc" = ( +/obj/structure/surface/table, +/obj/item/toy/desk/dippingbird{ + on = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"iwk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"iws" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/shaker{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double/blue{ + dir = 4; + light_color = "#dae2ff"; + pixel_x = 4; + light_power = .50 + }, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"iwv" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/cargo) +"iwD" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/north) +"iwQ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/taipei/cmb) +"iwV" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/obj/item/stool{ + pixel_y = 11; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"ixH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet15_15/west, +/area/taipei/atrium/theatre) +"iyX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/hangar) +"izb" = ( +/obj/structure/machinery/conveyor, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"izj" = ( +/turf/closed/wall/almayer/white, +/area/taipei/atrium/medbay) +"izo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"izW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light_switch{ + pixel_x = 10; + pixel_y = 9 + }, +/turf/closed/wall/almayer/white, +/area/taipei/reactor) +"iBq" = ( +/turf/open/floor/kutjevo/tan/grey_edge, +/area/taipei/atrium) +"iBU" = ( +/obj/item/stool{ + icon_state = "stool_alt" + }, +/turf/open/floor/whitered{ + dir = 8 + }, +/area/taipei/atrium/restaurant) +"iCh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"iCF" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"iCX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"iDf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/atrium/club) +"iDD" = ( +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/endcap_left/west, +/area/taipei/hangar/cargoshuttle) +"iDU" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"iDW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/maints/south) +"iEW" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/paper_bin, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"iFi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/freezer, +/turf/open/floor/prison, +/area/taipei/maints/north) +"iGC" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/south) +"iGG" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/item/lightstick/red/variant/planted{ + light_range = 5; + pixel_x = 13; + pixel_y = 0 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"iGJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/electrical{ + pixel_x = -5; + pixel_y = 9 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"iGO" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"iGP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"iHm" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/taipei/atrium) +"iHx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1; + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"iHD" = ( +/turf/open/floor/kutjevo/colors/cyan/edge{ + dir = 5 + }, +/area/taipei/atrium) +"iIC" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"iJo" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/popcorn{ + pixel_x = -5 + }, +/obj/item/reagent_container/food/snacks/popcorn{ + pixel_x = 11; + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/popcorn{ + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/taipei/atrium/theatre) +"iJD" = ( +/turf/closed/wall/biodome, +/area/taipei/atrium/hotel) +"iJQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"iKC" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"iKI" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"iLk" = ( +/obj/structure/bed/sofa/vert/white/top, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/elevator/arrivals) +"iLx" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/stairs/perspective/kutjevo, +/turf/open/floor/strata/fake_wood, +/area/taipei/atrium/offices) +"iLz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/taipei/atrium) +"iLJ" = ( +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + dir = 4; + layer = 3.2; + pixel_x = -14; + pixel_y = 18 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet5_1, +/area/taipei/atrium/hotel) +"iLW" = ( +/obj/structure/machinery/conveyor, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"iMa" = ( +/obj/structure/machinery/door/poddoor/almayer/locked, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"iMT" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/west, +/area/taipei/hangar/cargoshuttle) +"iOi" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "supply_elevator_railing" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"iOl" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"iOX" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/taipei/atrium) +"iPe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"iPf" = ( +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"iPR" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium) +"iQa" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = -8 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = -8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"iQr" = ( +/turf/closed/mineral, +/area/taipei/underground) +"iQs" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/west, +/area/taipei/atrium/theatre) +"iQx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/atrium) +"iQN" = ( +/obj/structure/bed/sofa/vert/white, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"iQS" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/prop/rock/brown, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"iRG" = ( +/obj/effect/decal/strata_decals/grime/grime1, +/obj/item/storage/secure/safe{ + pixel_y = 29 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/taipei/atrium/club) +"iRX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/northwest, +/area/taipei/hangar) +"iSC" = ( +/turf/closed/wall/almayer/outer, +/area/taipei/telecomms) +"iTd" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"iTm" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + layer = 3.1; + pixel_x = 15; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + layer = 3.1; + pixel_x = 9; + pixel_y = 1 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7; + pixel_y = 2 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"iUr" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"iUA" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"iVg" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"iVM" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/north) +"iWH" = ( +/obj/structure/bed/sofa/vert/white/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/elevator/departures) +"iXm" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"iXB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"iXE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whitered{ + dir = 8 + }, +/area/taipei/atrium/restaurant) +"iXI" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"iXV" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/red, +/area/taipei/atrium) +"iYd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"iYe" = ( +/obj/structure/machinery/light, +/turf/open/floor/carpet13_5, +/area/taipei/atrium/theatre) +"iYm" = ( +/obj/structure/surface/table/holotable, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"iYA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/walkman, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"iYN" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = 8 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"iZe" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison, +/area/taipei/telecomms) +"iZZ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 16; + pixel_y = 6 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/south) +"jal" = ( +/obj/effect/elevator, +/turf/open/space/basic, +/area/taipei/cargo) +"jav" = ( +/obj/structure/bookcase{ + pixel_x = 3; + pixel_y = 20 + }, +/obj/structure/bookcase{ + pixel_x = 3; + pixel_y = 42 + }, +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"jaM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/shuttle/ert{ + icon_state = "twe8" + }, +/area/taipei/hangar/cargoshuttle) +"jaT" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/taipei/atrium) +"jbQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"jcg" = ( +/obj/structure/platform/kutjevo/smooth{ + luminosity = 15 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"jcP" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"jcR" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"jdb" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"jdh" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"jdk" = ( +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/camera{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/taipei/atrium/medbay) +"jdo" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"jdw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/taipei/cmb) +"jef" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/toilet{ + dir = 8; + layer = 2.9; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"jeg" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/obj/structure/machinery/light/spot{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"jem" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/gm/empty, +/area/taipei/reactor) +"jes" = ( +/obj/structure/curtain/medical, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/taipei/atrium/medbay) +"jeA" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"jeK" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"jeM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"jeQ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"jfa" = ( +/turf/open/floor/kutjevo/colors/cyan/inner_corner, +/area/taipei/atrium) +"jgo" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + icon_state = "conveyor-1" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"jgy" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 9; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"jgX" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/closed/wall/r_wall/bunker, +/area/taipei/cmb) +"jhe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"jhE" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"jhL" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/obj/structure/flora/bush/desert{ + icon_state = "tree_2" + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"jhZ" = ( +/obj/structure/machinery/camera{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge, +/area/taipei/cmb) +"jin" = ( +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 10 + }, +/area/taipei/cmb) +"jix" = ( +/obj/structure/mirror{ + pixel_y = -10 + }, +/turf/closed/wall/almayer, +/area/taipei/maints/north) +"jiy" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"jiD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/taipei/hangar) +"jiE" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/south) +"jiF" = ( +/obj/structure/bed/sofa/south/white/left, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"jiZ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"jjX" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"jkk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/space/basic, +/area/space) +"jkp" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 + }, +/turf/open/floor, +/area/taipei/atrium/laundry) +"jku" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Visitor Entrance" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium/bookstore) +"jkG" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"jkL" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"joa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/taipei/atrium/theatre) +"jop" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"joE" = ( +/turf/closed/wall/almayer, +/area/taipei/cargo) +"joW" = ( +/obj/structure/surface/table, +/obj/structure/machinery/door/window/brigdoor/southright, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"jpJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/taipei/atrium/hotel) +"jpK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"jqd" = ( +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/hangar) +"jqe" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"jqK" = ( +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + pixel_x = -1; + pixel_y = 0 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"jqV" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 6 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"jrf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"juo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/r_wall/prison, +/area/taipei/cmb) +"juE" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"jvg" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"jvs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"jvB" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/obj/item/lightstick/red/spoke/planted, +/turf/open/gm/empty, +/area/taipei/reactor) +"jvY" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) +"jwm" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/taipei/atrium) +"jxa" = ( +/obj/structure/machinery/door/poddoor/almayer/locked, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/asteroid, +/area/taipei/maints/south) +"jya" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1" + }, +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"jym" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/kutjevo/smooth{ + light_power = 2; + light_range = 5; + light_on = 1 + }, +/turf/open/floor/prison/chapel_carpet, +/turf/open/floor/prison/chapel_carpet, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"jyx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"jyY" = ( +/obj/structure/sign/safety/bathunisex, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/atrium/restaurant) +"jzB" = ( +/obj/structure/pipes/vents, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison, +/area/taipei/hangar) +"jAa" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" + }, +/obj/structure/surface/table, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 7 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/taipei/atrium/medbay) +"jAd" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/structure/barricade/handrail/kutjevo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"jAx" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"jAS" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"jAX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 5 + }, +/area/taipei/atrium) +"jBA" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 10 + }, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"jBY" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/taipei/hangar/cargoshuttle) +"jCj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/cargo) +"jCm" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"jCt" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"jDX" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"jEe" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"jEl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet13_5/west, +/area/taipei/atrium/theatre) +"jEJ" = ( +/obj/structure/barricade/handrail/kutjevo, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"jEM" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"jEU" = ( +/obj/structure/machinery/line_nexter/med, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"jEW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"jEX" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"jFB" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"jFX" = ( +/obj/structure/machinery/vending/cigarette{ + pixel_x = 4; + pixel_y = 14 + }, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 1 + }, +/area/taipei/cmb) +"jGS" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"jHa" = ( +/turf/open/floor/plating/asteroidwarning/southwest, +/area/taipei/hangar) +"jHf" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/item/tool/soap{ + pixel_x = 7; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"jHB" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/south) +"jIA" = ( +/obj/structure/surface/rack{ + pixel_x = 4 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = 4 + }, +/obj/item/reagent_container/food/snacks/chips{ + pixel_y = -3 + }, +/obj/item/reagent_container/food/snacks/chips{ + pixel_y = 22; + pixel_x = 9 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"jJr" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"jJT" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/recharger, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/red/inner_corner, +/area/taipei/cmb) +"jKm" = ( +/obj/structure/cable/heavyduty, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/prison, +/area/taipei/maints/south) +"jKu" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/bed/sofa/vert/white/top, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"jKz" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/taipei/atrium/restaurant) +"jKQ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/south) +"jLy" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/device/healthanalyzer{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/taipei/atrium/medbay) +"jNe" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"jNg" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"jNj" = ( +/obj/structure/machinery/door/window/ultra{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"jNO" = ( +/turf/open/floor/prison, +/area/taipei/atrium) +"jOj" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"jOn" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"jOB" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"jOE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"jOF" = ( +/obj/structure/machinery/camera{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/taipei/atrium/club) +"jPj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/south) +"jQT" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"jSa" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"jSI" = ( +/obj/item/stool{ + pixel_y = 11; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"jSY" = ( +/obj/structure/window/framed/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"jTf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison, +/area/taipei/cargo) +"jTj" = ( +/obj/structure/bed/chair/bolted{ + dir = 1 + }, +/turf/open/floor, +/area/taipei/atrium/laundry) +"jUx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"jUZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/taipei/atrium) +"jVt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet14_10/west, +/area/taipei/atrium/theatre) +"jVD" = ( +/obj/structure/machinery/elevator_strut/top, +/turf/open/gm/empty, +/area/taipei/maints/north) +"jVM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/taipei/atrium) +"jVW" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/platform_decoration, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"jWc" = ( +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = -1; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) +"jWO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/south) +"jXI" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"jYp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/vehicle/powerloader, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/taipei/cargo) +"jZh" = ( +/obj/structure/platform, +/obj/structure/barricade/handrail/strata, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"jZx" = ( +/turf/open/floor/kutjevo/colors/cyan/edge{ + dir = 9 + }, +/area/taipei/atrium) +"jZK" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"jZZ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/north) +"kak" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"kas" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"kaR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Visitor Entrance" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"kbx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/atrium) +"kby" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) +"kbQ" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_y = -10; + pixel_x = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"kcf" = ( +/turf/open/floor/kutjevo/tan, +/area/taipei/elevator/arrivals) +"kcB" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"kcX" = ( +/obj/structure/bed/chair/comfy/alpha, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"kde" = ( +/obj/structure/cargo_container/kelland/right{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"ket" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"keI" = ( +/obj/structure/stairs/perspective{ + dir = 4 + }, +/obj/structure/platform/stair_cut, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"kfg" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"kgc" = ( +/obj/structure/platform/kutjevo/smooth{ + luminosity = 15 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"kgq" = ( +/obj/structure/machinery/power/reactor, +/turf/open/floor/prison, +/area/taipei/reactor) +"kgJ" = ( +/obj/structure/machinery/conveyor, +/obj/structure/plasticflaps, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"khb" = ( +/obj/structure/cargo_container/ferret/right, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/floor/almayer/edge/east, +/area/taipei/hangar/cargoshuttle) +"khP" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"khY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/taipei/hangar/landingzone) +"kin" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"kja" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"kjb" = ( +/obj/structure/cargo_container/watatsumi/left, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"kjl" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/south) +"kjv" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"kjT" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"klI" = ( +/obj/structure/surface/rack{ + pixel_x = -5 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = -5 + }, +/obj/structure/surface/rack{ + pixel_x = 18 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = 18 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"klL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"kmf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/maint/autoname, +/turf/open/floor/corsat/marked, +/area/taipei/atrium/theatre) +"kms" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium) +"kmM" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/taipei/atrium/medbay) +"knc" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/north) +"knq" = ( +/obj/item/stool{ + pixel_y = 8; + pixel_x = -5 + }, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/prison/blue/east, +/area/taipei/atrium/club) +"knG" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"knO" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"knT" = ( +/obj/structure/toilet{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"knZ" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15 + }, +/obj/structure/sign/safety/stairs, +/turf/closed/wall/almayer/outer, +/area/taipei/reactor) +"kop" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4; + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"kow" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"koO" = ( +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/prison/bluecorner, +/area/taipei/atrium/club) +"koW" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/taipei/atrium/offices) +"koZ" = ( +/obj/structure/toilet{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"kpg" = ( +/obj/structure/machinery/conveyor, +/obj/structure/plasticflaps, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"kqo" = ( +/obj/item/lightstick/red/variant/planted{ + pixel_x = -12; + pixel_y = 0 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"kqv" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/hangar) +"krj" = ( +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/elevator/departures) +"krw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"krM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"ksJ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/closed/wall/biodome, +/area/taipei/atrium/restaurant) +"ksU" = ( +/obj/item/stool{ + pixel_y = 12; + pixel_x = 4 + }, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"kum" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/taipei/atrium/offices) +"kuy" = ( +/turf/open/floor/kutjevo/tan/alt_edge/northwest, +/area/taipei/atrium) +"kuT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet13_5, +/area/taipei/atrium/theatre) +"kuZ" = ( +/turf/open/floor/prison, +/area/taipei/maints/south) +"kwc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southwest, +/area/taipei/maints/south) +"kwi" = ( +/obj/structure/powerloader_wreckage, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"kwj" = ( +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/structure/platform/stair_cut/alt{ + icon_state = "kutjevo_platform_sm_stair_alt" + }, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/taipei/atrium) +"kwP" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/window/reinforced/toughened, +/obj/item/restraint/handcuffs{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"kxn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"kxp" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"kxK" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 3 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"kxT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"kya" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"kzb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"kzi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"kzK" = ( +/obj/structure/platform_decoration, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"kAA" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/north) +"kAP" = ( +/obj/structure/surface/rack{ + pixel_x = -5 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = -5 + }, +/obj/item/reagent_container/food/snacks/wrapped/chunk{ + pixel_y = 13; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"kBm" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"kBE" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/effect/overlay/palmtree_r, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"kBV" = ( +/obj/structure/bookcase{ + pixel_x = -8 + }, +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5"; + pixel_y = 21; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"kBW" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"kCg" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"kCr" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/northwest, +/area/taipei/atrium) +"kCu" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4; + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"kCA" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/south) +"kCX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"kCZ" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"kDG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow"; + color = "#E10600"; + dir = 8 + }, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "vehicle_elevator_railing_aux" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"kDQ" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "vehicle_elevator_railing_aux" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"kEa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/atrium/club) +"kEu" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"kEV" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/research, +/obj/structure/machinery/door/airlock/multi_tile/elevator/access, +/turf/open/floor/corsat/marked, +/area/taipei/elevator/departures) +"kFL" = ( +/obj/structure/pipes/vents, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"kFV" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"kHh" = ( +/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/taipei/atrium/club) +"kHz" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"kHO" = ( +/obj/structure/machinery/light{ + brightness = 3; + light_power = .50 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"kJO" = ( +/turf/open/floor/carpet14_10/west, +/area/taipei/atrium/theatre) +"kKt" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/auto_turf/strata_grass/layer1{ + light_range = . + }, +/area/taipei/atrium) +"kKS" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526" + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"kLo" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4; + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"kLK" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"kMg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/east, +/area/taipei/atrium/theatre) +"kMk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"kMx" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/burger, +/obj/item/ashtray/plastic{ + pixel_x = -15; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"kNh" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl"; + pixel_x = -4; + pixel_y = 0 + }, +/obj/item/paper{ + pixel_x = 10; + pixel_y = 5 + }, +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"kNn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/ferret/right, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"kOX" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/north) +"kPa" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/kitchen, +/area/taipei/atrium/restaurant) +"kPr" = ( +/obj/structure/cargo_container/horizontal/blue/bottom{ + pixel_x = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"kPD" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison, +/area/taipei/maints/north) +"kPG" = ( +/obj/structure/machinery/light/spot, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"kPL" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"kPN" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/taipei/atrium) +"kQa" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium) +"kQy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"kQA" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/hangar) +"kQD" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6; + dir = 3 + }, +/turf/closed/wall/almayer, +/area/taipei/maints/south) +"kRz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/inner_corner, +/area/taipei/atrium) +"kRG" = ( +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/reactor) +"kRV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge{ + dir = 5 + }, +/area/taipei/atrium) +"kRY" = ( +/obj/item/trash/wy_chips_pepper{ + pixel_y = 21 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"kSG" = ( +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/structure/platform/stair_cut/alt{ + icon_state = "kutjevo_platform_sm_stair_alt" + }, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/turf/open/floor/asteroidplating, +/area/taipei/atrium) +"kSP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/taipei/atrium/club) +"kSV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"kTm" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"kTY" = ( +/obj/structure/machinery/vending/coffee{ + pixel_x = 14; + pixel_y = 14 + }, +/obj/structure/machinery/vending/snack/packaged{ + pixel_x = -7; + pixel_y = 14 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"kUb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/maint/autoname, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"kUu" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison, +/area/taipei/telecomms) +"kUB" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/hangar) +"kVc" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"kVP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/south) +"kWp" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/bed/sofa/south, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/kutjevo/fake_wood, +/area/taipei/atrium/theatre) +"kWJ" = ( +/obj/structure/platform{ + layer = 3.1 + }, +/obj/structure/window/framed/almayer, +/obj/structure/blocker/forcefield/human{ + icon = 'icons/' + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"kWK" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"kXy" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"kXH" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"kXR" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/atrium) +"kYs" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"kYx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/trijent/right, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/hangar) +"kYI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/reactor) +"kZe" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"laO" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"lbh" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"lby" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"ldJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced, +/turf/open/floor/prison/bluecorner/west, +/area/taipei/atrium/club) +"leH" = ( +/obj/structure/platform/strata/metal, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"leV" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/taipei/atrium) +"lfa" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/muffin{ + pixel_y = 14; + pixel_x = 21 + }, +/obj/item/storage/donut_box{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"lfp" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"lfN" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/item/lightstick/red/spoke/planted, +/turf/open/gm/empty, +/area/taipei/reactor) +"lgm" = ( +/obj/structure/pipes/vents, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/carpet14_10/west, +/area/taipei/atrium/theatre) +"lgD" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/bed/sofa/south, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/kutjevo/fake_wood, +/area/taipei/atrium/theatre) +"lgN" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"lhH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/reactor) +"lid" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"lih" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"liy" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/coffeecup, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"liI" = ( +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"liU" = ( +/obj/structure/machinery/light/double{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/red/inner_corner, +/area/taipei/atrium) +"liW" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"ljh" = ( +/obj/structure/surface/rack{ + pixel_x = 4 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"ljN" = ( +/obj/item/stool{ + icon_state = "stool_alt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitered, +/area/taipei/atrium/restaurant) +"ljT" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 16; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"ljU" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"lke" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/largecrate/supply/generator{ + pixel_x = -4; + pixel_y = 0 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"lkh" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"lkp" = ( +/obj/item/lightstick/red/spoke/planted, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"lkz" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl"; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/taipei/atrium) +"lmm" = ( +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"lmu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"lmv" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"lmR" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"lng" = ( +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"lnZ" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/taipei/atrium/offices) +"lov" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/north) +"loN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"loZ" = ( +/turf/closed/shuttle/ert{ + icon_state = "twe_leftengine" + }, +/area/taipei/hangar/cargoshuttle) +"lph" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"lpk" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"lpz" = ( +/obj/structure/bed/sofa/vert/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"lpT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/taipei/atrium) +"lqt" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/closed/wall/almayer, +/area/taipei/maints/south) +"lqv" = ( +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 4 + }, +/area/taipei/atrium) +"lrH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"lrP" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"lsf" = ( +/turf/closed/wall/almayer/white/hull, +/area/taipei/atrium/medbay) +"lss" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 9 + }, +/area/taipei/cmb) +"ltb" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/obj/structure/machinery/light/spot{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/taipei/atrium) +"lto" = ( +/obj/structure/machinery/firealarm, +/turf/closed/wall/almayer, +/area/taipei/cargo) +"ltr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"ltv" = ( +/obj/structure/surface/table, +/obj/item/toy/desk/dippingbird{ + pixel_y = 23; + pixel_x = -1; + on = 1 + }, +/obj/item/tool/surgery/scalpel, +/obj/item/storage/pill_bottle/spaceacillin/skillless, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) +"ltx" = ( +/turf/closed/wall/almayer, +/area/space) +"ltG" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"ltW" = ( +/obj/structure/toilet{ + pixel_y = 15; + pixel_x = 1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"luj" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"luW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"luZ" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/floor/almayer/edge/east, +/area/taipei/hangar/cargoshuttle) +"lvH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"lwl" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"lwp" = ( +/obj/item/stool{ + pixel_y = 8; + pixel_x = -5 + }, +/turf/open/floor/prison/blue/east, +/area/taipei/atrium/club) +"lwq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge, +/area/taipei/hangar/cargoshuttle) +"lwK" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"lwV" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/obj/effect/overlay/palmtree_r, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"lxq" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/item/tool/soap{ + pixel_x = 7; + pixel_y = -10 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/taipei/atrium/medbay) +"lxB" = ( +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"lxH" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"lxO" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/taipei/atrium) +"lyg" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"lzj" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + pixel_y = 14 + }, +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"lzr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"lzA" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 16; + pixel_y = 6 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"lzK" = ( +/turf/open/floor/prison/kitchen, +/area/taipei/atrium/restaurant) +"lAj" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/taipei/atrium) +"lAS" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/atrium) +"lAV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"lBe" = ( +/turf/closed/wall/r_wall/elevator{ + dir = 10 + }, +/area/taipei/elevator/departures) +"lBy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/south) +"lBC" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"lBY" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"lCd" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/north) +"lCh" = ( +/turf/open/floor/kutjevo/colors/red/inner_corner, +/area/taipei/atrium) +"lCt" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/almayer/edge/east, +/area/taipei/hangar/cargoshuttle) +"lCF" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot, +/obj/structure/machinery/light/spot{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"lCU" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/taipei/atrium) +"lDa" = ( +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 20; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/obj/structure/toilet{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/taipei/atrium/offices) +"lEq" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"lEC" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"lER" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"lFH" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = -12 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = -12 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"lGj" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"lGx" = ( +/turf/open/floor/prison/darkred2/north, +/area/taipei/atrium/theatre) +"lGP" = ( +/obj/structure/window/framed/almayer/white, +/obj/item/cpr_dummy{ + pixel_x = 8; + pixel_y = -8 + }, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) +"lGS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"lGV" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/bed/sofa/vert/white/top, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"lGZ" = ( +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"lHv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/south) +"lIh" = ( +/obj/structure/bed/chair/comfy{ + buckling_y = 2; + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"lIl" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5; + dir = 8 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"lIv" = ( +/obj/structure/closet/crate/freezer/rations{ + pixel_x = 1; + pixel_y = 17 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"lIN" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"lIO" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"lIS" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_y = 20; + pixel_x = 8 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_y = 20; + pixel_x = -7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"lJu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredcorners2/north, +/area/taipei/atrium/theatre) +"lKe" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/structure/platform/stair_cut{ + icon_state = "kutjevo_platform_sm_stair" + }, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"lKR" = ( +/obj/structure/safe, +/turf/open/floor/carpet, +/area/taipei/atrium/offices) +"lLn" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"lLw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/darkbrowncorners2/southwest, +/area/taipei/atrium/theatre) +"lLD" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"lLE" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"lLK" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"lMG" = ( +/obj/structure/sign/catclock, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/cargo) +"lNr" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"lNB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/atrium) +"lOz" = ( +/turf/open/floor/prison, +/area/taipei/cargo) +"lPp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitered{ + dir = 1 + }, +/area/taipei/atrium/restaurant) +"lPM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/atrium) +"lQI" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"lQJ" = ( +/turf/open/floor/asteroidfloor, +/area/taipei/maints/south) +"lQM" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"lQO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/maints/north) +"lQQ" = ( +/obj/structure/machinery/line_nexter/med, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"lRl" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/asteroidfloor, +/area/taipei/maints/south) +"lRT" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/obj/structure/cable/heavyduty{ + icon_state = "node" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"lRW" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/hangar) +"lSk" = ( +/turf/open/floor/prison/blue/east, +/area/taipei/atrium/club) +"lSq" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium) +"lTl" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"lTp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"lTI" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredcorners2/east, +/area/taipei/atrium/theatre) +"lUk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/taipei/atrium/club) +"lUO" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/prop/server_equipment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/reactor) +"lVk" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/taipei/atrium) +"lVJ" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"lWe" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"lXo" = ( +/obj/structure/machinery/elevator_strut/bottom, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -8; + pixel_y = 0 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"lXI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/structure/flora/bush/desert, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium/offices) +"lYR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"lYS" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"lZD" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"lZQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"lZU" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison, +/area/taipei/reactor) +"mai" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium/medbay) +"may" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/bed/sofa/south, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/kutjevo/fake_wood, +/area/taipei/atrium/theatre) +"maN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid, +/obj/structure/machinery/door/poddoor/almayer/closed, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/cmb) +"mbc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/taipei/atrium/store) +"mbn" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"mbF" = ( +/obj/structure/sign/double/maltesefalcon/left, +/turf/closed/wall/biodome, +/area/taipei/atrium/restaurant) +"mcg" = ( +/turf/closed/shuttle/ert{ + icon_state = "twe27" + }, +/area/taipei/hangar/cargoshuttle) +"mdh" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"mdk" = ( +/obj/structure/prop/dam/crane/cargo{ + dir = 4; + pixel_y = -2 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"mdu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double/blue{ + dir = 8; + light_color = "#dae2ff"; + pixel_x = -5; + light_power = .25 + }, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"mdJ" = ( +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/reactor) +"meB" = ( +/obj/structure/toilet{ + pixel_y = 15; + pixel_x = 1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"meD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/prison/kitchen, +/area/taipei/atrium/restaurant) +"meS" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/taipei/atrium/medbay) +"mff" = ( +/obj/structure/pipes/vents, +/turf/open/floor/prison, +/area/taipei/hangar) +"mft" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/watatsumi/mid, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"mfT" = ( +/obj/structure/lattice, +/obj/item/lightstick/red/spoke/planted, +/turf/open/gm/empty, +/area/taipei/reactor) +"mgb" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_full" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/turf/open/floor/asteroid, +/area/taipei/atrium/theatre) +"mgc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow" + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"mge" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"mgv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"mhw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/cargo) +"mhA" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"mhE" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"mhJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/line_nexter_control{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/structure/machinery/computer/cameras{ + dir = 1; + pixel_x = -13; + pixel_y = -4 + }, +/turf/open/floor/prison, +/area/taipei/atrium) +"mid" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"miq" = ( +/obj/structure/largecrate/random/barrel/red{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/structure/largecrate/random/barrel/red{ + pixel_x = -6; + pixel_y = -16 + }, +/obj/structure/largecrate/random/barrel/red{ + pixel_x = -6; + pixel_y = -30 + }, +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"miH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"mjp" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"mjW" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"mkc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"mlE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/atrium) +"mlF" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"mmL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/northeast, +/area/taipei/hangar) +"mmO" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"mmU" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"mmZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/atrium/club) +"mnw" = ( +/obj/item/tool/mop{ + pixel_x = -22; + pixel_y = -6 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"mnA" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet9_4, +/area/taipei/atrium/hotel) +"mow" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"moD" = ( +/obj/structure/machinery/elevator_strut/bottom, +/turf/open/gm/empty, +/area/taipei/maints/north) +"moK" = ( +/obj/structure/surface/rack{ + pixel_x = -5 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = -5 + }, +/obj/structure/surface/rack{ + pixel_x = 18 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = 18 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"moP" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/north) +"moZ" = ( +/obj/item/trash/chunk{ + pixel_y = 20; + pixel_x = -4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"mpi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/taipei/atrium) +"mpG" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"mpN" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"mpR" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/prison, +/area/taipei/telecomms) +"mpX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"mre" = ( +/turf/closed/wall/r_wall/elevator{ + dir = 6 + }, +/area/taipei/elevator/arrivals) +"mrU" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 17; + pixel_y = 6 + }, +/obj/structure/shuttle/engine/heater{ + dir = 4; + pixel_x = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 5; + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"msJ" = ( +/obj/structure/machinery/light/blue, +/obj/structure/coatrack{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/clothing/suit/storage/windbreaker/windbreaker_covenant{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/clothing/shoes/stompers{ + pixel_x = 6; + pixel_y = 0 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"mtu" = ( +/obj/structure/surface/table, +/turf/open/floor/bar, +/turf/open/floor/whitered{ + dir = 4 + }, +/area/taipei/atrium/restaurant) +"mtx" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "vehicle_elevator_railing_aux" + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"mtL" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/hangar) +"muQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/carpet13_5/west, +/area/taipei/atrium/theatre) +"muT" = ( +/obj/structure/pipes/vents, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/taipei/telecomms) +"mvh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"mvj" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/hangar) +"mvG" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"mvZ" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"mwy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526" + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"mxB" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"mxI" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"mxT" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"mAf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/taipei/atrium/theatre) +"mAV" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/taipei/atrium/medbay) +"mBk" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/hangar) +"mBC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 4 + }, +/area/taipei/cmb) +"mBF" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 + }, +/turf/open/floor/prison/bluecorner, +/area/taipei/atrium/club) +"mBI" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = -24 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = -24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"mBX" = ( +/turf/closed/wall/almayer/outer, +/area/taipei/atrium/offices) +"mCK" = ( +/obj/structure/prop/power_transformer, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"mDl" = ( +/obj/structure/bed/sofa/vert/white/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"mDn" = ( +/obj/structure/closet{ + pixel_x = -17; + pixel_y = 0 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/barcardine{ + pixel_x = 5; + pixel_y = -11 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 14; + pixel_y = -12 + }, +/obj/structure/machinery/microwave{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"mDC" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/taipei/atrium) +"mDD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/maints/north) +"mDX" = ( +/turf/closed/wall/biodome, +/area/taipei/maints/south) +"mEi" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/prison/bluecorner, +/area/taipei/atrium/club) +"mEH" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"mFy" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"mFC" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 6 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"mFX" = ( +/obj/structure/stairs/perspective{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/barricade/handrail/strata, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"mGf" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/item/trash/wy_chips_pepper{ + pixel_x = 6; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"mGh" = ( +/obj/structure/bed/sofa/vert/white/bot, +/turf/open/floor/kutjevo/tan, +/area/taipei/elevator/departures) +"mGo" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"mGR" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"mHE" = ( +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"mIv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"mJe" = ( +/obj/structure/pipes/vents, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"mJr" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"mLa" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"mMa" = ( +/turf/open/floor/carpet13_5, +/area/taipei/atrium/theatre) +"mMx" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"mMG" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"mNy" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/hangar) +"mOh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 6 + }, +/area/taipei/cmb) +"mOz" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/taipei/atrium/store) +"mOW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"mPg" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"mPs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"mPE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"mPR" = ( +/turf/open/floor/prison/darkred2/east, +/area/taipei/atrium/theatre) +"mQE" = ( +/obj/structure/flora/pottedplant/random{ + pixel_x = 0; + pixel_y = 9 + }, +/obj/structure/window_frame/corsat, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"mRb" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"mRh" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/surface/table/almayer{ + color = #96918c + }, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"mRM" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/taipei/cmb) +"mRO" = ( +/obj/structure/machinery/conveyor{ + dir = 9; + id = "anomalybelt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/taipei/atrium) +"mRP" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"mRR" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"mSh" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"mSG" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"mTi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/inner_corner, +/area/taipei/atrium) +"mTy" = ( +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/hangar) +"mUp" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/structure/largecrate/black_market/confiscated_equipment, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"mVf" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"mVp" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/bed/sofa/south, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/item/trash/buritto, +/turf/open/floor/kutjevo/fake_wood, +/area/taipei/atrium/theatre) +"mWy" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/toy/desk/newtoncradle{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/structure/barricade/handrail/kutjevo, +/turf/open/floor/carpet, +/area/taipei/atrium/offices) +"mWM" = ( +/obj/item/spacecash/c50, +/obj/item/spacecash/c20{ + pixel_y = 9; + pixel_x = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/light{ + light_color = #00008B; + light_power = .5 + }, +/area/taipei/atrium/club) +"mXX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 4 + }, +/area/taipei/atrium) +"mYx" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"mYK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/southwest, +/area/taipei/atrium/theatre) +"mZM" = ( +/obj/structure/platform_decoration, +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning, +/area/taipei/cargo) +"nam" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 6 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"nat" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/prison, +/area/taipei/maints/south) +"naz" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = 0; + pixel_y = -7 + }, +/turf/open/floor/kutjevo/colors/red/edge, +/area/taipei/cmb) +"naG" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"naJ" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/chips, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"nbd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"nbs" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"nbz" = ( +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 9 + }, +/area/taipei/cmb) +"nbA" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"nbG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"nbW" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 9; + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"ncn" = ( +/obj/structure/stairs/perspective{ + dir = 8 + }, +/obj/structure/platform/stair_cut/alt, +/obj/structure/platform, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"ncW" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/cargo) +"ndq" = ( +/obj/structure/stairs/perspective, +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"ndy" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/cargo) +"ndL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredcorners2/east, +/area/taipei/atrium/theatre) +"nec" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"nek" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"neY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/taipei/elevator/arrivals) +"nfR" = ( +/obj/structure/catwalk, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"nhs" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"nhv" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"nik" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/taipei/atrium) +"nix" = ( +/obj/structure/machinery/door/window/ultra, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"niN" = ( +/obj/structure/bed/alien, +/obj/structure/bed/alien{ + pixel_x = 0; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"niQ" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 7 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"niX" = ( +/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_x = -5; + pixel_y = 16 + }, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"njf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/reactor) +"njh" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/brigdoor/southleft, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"njs" = ( +/obj/structure/flora/pottedplant{ + desc = "How did that get in there?"; + icon_state = "pottedplant_22"; + pixel_y = -1; + pixel_x = 0 + }, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"njE" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe, +/area/taipei/atrium/hotel) +"njF" = ( +/obj/structure/surface/table, +/obj/item/trash/ceramic_plate{ + pixel_y = 10 + }, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"nkd" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "vehicle_elevator_railing_aux" + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"nkj" = ( +/obj/structure/machinery/light{ + dir = 8; + light_power = .25 + }, +/turf/open/floor/carpet7_3/west, +/area/taipei/atrium/theatre) +"nkn" = ( +/obj/structure/surface/rack, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge, +/area/taipei/cmb) +"nkt" = ( +/obj/structure/machinery/photocopier, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/taipei/cmb) +"nkR" = ( +/obj/structure/lattice, +/obj/structure/prop/static_tank, +/turf/open/gm/empty, +/area/taipei/reactor) +"nkV" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/south) +"nlB" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/bed/sofa/south, +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -9; + pixel_y = -2 + }, +/turf/open/floor/kutjevo/fake_wood, +/area/taipei/atrium/theatre) +"nnh" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/floor, +/area/taipei/hangar/cargoshuttle) +"noy" = ( +/obj/structure/pipes/vents, +/turf/open/floor, +/area/taipei/atrium/laundry) +"npD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/southwest, +/area/taipei/maints/north) +"npR" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"nqh" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"nqr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 8 + }, +/area/taipei/cmb) +"nrh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/taipei/elevator/departures) +"nrm" = ( +/turf/open/floor/prison, +/area/taipei/reactor) +"nrZ" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"nsc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"nsd" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 4 + }, +/area/taipei/atrium) +"nsj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"nsv" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"ntC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + pixel_x = 1; + pixel_y = 7 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"nug" = ( +/obj/structure/window/framed/almayer/white, +/turf/closed/wall/almayer/white/reinforced, +/area/taipei/atrium/medbay) +"nuJ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/reagent_container/food/drinks/drinkingglass, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"nvh" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"nvl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"nvz" = ( +/obj/structure/surface/table, +/obj/item/trash/ceramic_plate{ + pixel_x = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"nvI" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + layer = 4.3; + pixel_y = 13 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"nvS" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/south) +"nvW" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_y = 5; + pixel_x = -9 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"nwf" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_full" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroid, +/area/taipei/atrium/theatre) +"nwx" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "node" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"nwO" = ( +/obj/item/hardpoint/locomotion/van_wheels{ + pixel_x = 12; + pixel_y = 14 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"nxk" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/turf/closed/wall/almayer, +/area/space) +"nxq" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = -8 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"nxU" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/desk/fan{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"nyU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + density = 0; + pixel_y = 0; + pixel_x = -5 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/taipei/atrium/medbay) +"nzd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"nAm" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"nAT" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/structure/janitorialcart, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"nCx" = ( +/obj/structure/machinery/elevator_strut/top, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/turf/open/gm/empty, +/area/taipei/maints/south) +"nCy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/carpet14_10/west, +/area/taipei/atrium/theatre) +"nCA" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"nCB" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"nCN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge, +/area/taipei/atrium/medbay) +"nCR" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium/medbay) +"nCX" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/cargo) +"nDR" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"nDZ" = ( +/obj/structure/bookcase{ + pixel_x = -14 + }, +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5"; + pixel_x = -14; + pixel_y = 21 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"nEm" = ( +/obj/structure/surface/table, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"nFr" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"nFA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/taipei/atrium) +"nGI" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"nGR" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/closed/wall/almayer/outer, +/area/taipei/hangar) +"nHi" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3"; + opacity = 0 + }, +/area/taipei/hangar/cargoshuttle) +"nIh" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = -1; + pixel_y = 9 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/taipei/atrium/offices) +"nIU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/inner_corner, +/area/taipei/atrium/medbay) +"nIY" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"nJk" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + light_color = "#dae2ff"; + pixel_x = -5 + }, +/turf/open/floor/prison/blue/east, +/area/taipei/atrium/club) +"nJy" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"nLb" = ( +/obj/structure/barricade/handrail/type_b, +/obj/structure/catwalk, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"nLu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"nLH" = ( +/obj/structure/machinery/conveyor_switch, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"nLW" = ( +/turf/open/floor/mech_bay_recharge_floor, +/area/taipei/reactor) +"nNw" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"nND" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"nOk" = ( +/obj/structure/platform, +/obj/structure/barricade/handrail/strata, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"nOm" = ( +/obj/structure/barricade/handrail/type_b, +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"nPn" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/north) +"nPP" = ( +/obj/structure/machinery/door/window/brigdoor/southleft, +/turf/open/floor/prison/darkredcorners2/east, +/area/taipei/atrium/theatre) +"nPW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 2; + pixel_x = 5 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"nQk" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"nQn" = ( +/obj/structure/machinery/door/window/brigdoor/southleft, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge, +/area/taipei/atrium/medbay) +"nQJ" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/taipei/atrium/offices) +"nQP" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/taipei/hangar/cargoshuttle) +"nRq" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"nRA" = ( +/obj/structure/machinery/conveyor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"nRE" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"nRF" = ( +/obj/structure/surface/table/holotable, +/obj/item/book, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"nSn" = ( +/obj/structure/bookcase{ + pixel_x = -8; + pixel_y = 21 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"nTf" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = -10; + pixel_y = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"nTo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium) +"nTD" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/bed/chair/comfy{ + buckling_y = 2; + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"nTK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"nTN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/taipei/atrium/hotel) +"nTX" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/pizzacutter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/taipei/atrium/restaurant) +"nUc" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"nUg" = ( +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = 11; + pixel_y = 0 + }, +/obj/effect/decal/strata_decals/grime/grime3, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = 5; + pixel_y = -11 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"nUs" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"nUz" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/taipei/atrium) +"nUE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"nUH" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"nVM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue{ + dir = 8 + }, +/area/taipei/atrium/club) +"nWA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/trijent/mid, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"nWK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/elevator/arrivals) +"nXT" = ( +/obj/item/lightstick/red/spoke/planted, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/plating, +/area/taipei/hangar) +"nYX" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"nZf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/elevator/arrivals) +"nZn" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"nZJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/endcap_left/north, +/area/taipei/hangar/cargoshuttle) +"nZM" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"nZZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"oah" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 + }, +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/west, +/area/taipei/atrium/club) +"obk" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/cargo) +"obs" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/south) +"obC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"ocv" = ( +/obj/structure/platform{ + layer = 3.1 + }, +/obj/structure/window/framed/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/human{ + icon = 'icons/' + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"ocK" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 9; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"odz" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/atrium/medbay) +"oet" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/trash/plate{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = -8; + pixel_y = 14 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 11; + pixel_y = 1 + }, +/obj/item/storage/pill_bottle/mystery/skillless{ + pixel_x = -12; + pixel_y = 0 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"oeU" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"ofq" = ( +/turf/closed/mineral, +/area/taipei/atrium/hotel) +"ofP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/surface/table, +/obj/item/storage/donut_box/empty{ + pixel_x = 0; + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/donut{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/taipei/atrium/offices) +"ogc" = ( +/obj/structure/surface/table, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"ogl" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"ogs" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/item/tool/soap{ + pixel_x = 7; + pixel_y = -10 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"ogF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/taipei/atrium/medbay) +"ogJ" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"ogN" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"ogZ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison, +/area/taipei/reactor) +"ohK" = ( +/obj/structure/stairs/perspective{ + dir = 8 + }, +/obj/structure/platform/stair_cut/alt, +/obj/structure/platform, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"ohL" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"oiy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + name = "overhead pipe"; + pixel_x = -4; + pixel_y = 14 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_y = -10; + pixel_x = -8 + }, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"oiM" = ( +/obj/structure/toilet{ + pixel_y = 12 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 20; + pixel_x = -2 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"oiQ" = ( +/obj/structure/stairs/perspective{ + dir = 8 + }, +/obj/structure/platform/stair_cut/alt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"oje" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"ojq" = ( +/obj/structure/machinery/shower{ + dir = 8; + pixel_y = 5; + pixel_x = 2 + }, +/obj/structure/curtain/open/shower, +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 10; + pixel_y = 0 + }, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"ojT" = ( +/obj/structure/machinery/door/airlock/almayer/maint/autoname, +/turf/open/floor/corsat/marked, +/area/taipei/hangar) +"okm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"okM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"okN" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform/stair_cut/alt, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526" + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"okU" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/reactor) +"okZ" = ( +/obj/structure/surface/table, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl"; + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/trash/cigbutt{ + pixel_y = 14; + pixel_x = 4 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 5 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 10; + pixel_y = 14 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/restaurant) +"ola" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/brigdoor/southright, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"ole" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"olh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/taipei/atrium) +"olm" = ( +/obj/structure/window_frame/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"olB" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/powerloader_clamp, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/cargo) +"olG" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"omo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/northwest, +/area/taipei/atrium) +"omI" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"omJ" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"omW" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/reactor) +"onB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/elevator/departures) +"onZ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"ooi" = ( +/obj/structure/stairs/perspective{ + dir = 4 + }, +/obj/structure/platform/stair_cut, +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"ook" = ( +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/maints/north) +"ooq" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/swimsuit/green, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"ooB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/taipei/atrium) +"opc" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison, +/area/taipei/maints/south) +"opt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/reactor) +"opZ" = ( +/obj/structure/closet/secure_closet/detective{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/taipei/cmb) +"oqb" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"oqi" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"oqv" = ( +/obj/structure/window/framed/prefab, +/obj/structure/window/framed/corsat, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroid, +/area/taipei/atrium) +"orb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/floor, +/area/taipei/hangar/cargoshuttle) +"orr" = ( +/obj/structure/surface/table, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium/medbay) +"orR" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/atrium) +"osb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"osU" = ( +/obj/structure/sign/safety/maint, +/turf/closed/wall/almayer, +/area/taipei/atrium/club) +"oty" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access, +/turf/open/floor/corsat/marked, +/area/taipei/elevator/arrivals) +"ouc" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 8 + }, +/obj/item/stool{ + pixel_y = 11; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"oud" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet9_4, +/area/taipei/atrium/hotel) +"oup" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"ouq" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/platform_decoration, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"ouu" = ( +/obj/structure/sign/safety/maint, +/turf/closed/wall/almayer, +/area/taipei/maints/south) +"ouv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"ouF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"ouQ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"ouS" = ( +/obj/structure/machinery/light/spot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"ovS" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/space/basic, +/area/taipei/cargo) +"oxM" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"oxS" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"oyv" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/cargo) +"oyR" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/elevator/departures) +"ozJ" = ( +/obj/structure/platform_decoration, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"ozO" = ( +/obj/structure/largecrate/machine, +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_y = 15; + pixel_x = -2 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/cargo) +"ozV" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"oAf" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"oAr" = ( +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"oAy" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = -1; + pixel_y = 9 + }, +/obj/structure/window/reinforced, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/taipei/atrium/offices) +"oBa" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/atrium) +"oBM" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/cargo) +"oBV" = ( +/obj/structure/machinery/conveyor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"oCM" = ( +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"oDE" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/cargo) +"oDH" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"oEd" = ( +/obj/structure/sign/safety/elevator, +/turf/closed/wall/biodome, +/area/taipei/atrium) +"oEH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth, +/area/taipei/hangar/cargoshuttle) +"oFA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"oFP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/cargo) +"oFT" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"oHu" = ( +/obj/structure/machinery/disposal{ + density = 0; + pixel_x = -6; + pixel_y = 16 + }, +/obj/item/trash/popcorn, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet6_2, +/area/taipei/atrium/theatre) +"oIc" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/obj/effect/decal/grass_overlay/grass1/inner, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"oIt" = ( +/obj/item/stool{ + icon_state = "stool_alt" + }, +/turf/open/floor/whitered, +/area/taipei/atrium/restaurant) +"oIP" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/taipei/atrium) +"oJA" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"oKK" = ( +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = -10; + pixel_y = 0 + }, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = -1; + pixel_y = 18 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"oLm" = ( +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/north) +"oLD" = ( +/obj/structure/machinery/conveyor_switch, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"oLV" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/taipei/atrium) +"oLW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"oMd" = ( +/obj/structure/stairs/perspective{ + dir = 8 + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"oMq" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/obj/item/stool{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"oMS" = ( +/obj/structure/machinery/light{ + dir = 8; + light_power = .50 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"oNi" = ( +/obj/structure/machinery/light, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"oNr" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"oNt" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"oOf" = ( +/obj/structure/platform/strata/metal, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"oOp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/north) +"oOu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning, +/area/taipei/hangar) +"oOP" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/taipei/atrium) +"oPv" = ( +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/taipei/atrium) +"oPH" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"oQw" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"oRe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2, +/area/taipei/atrium/theatre) +"oSi" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/structure/largecrate/machine/bodyscanner{ + pixel_x = -6; + pixel_y = -4 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"oSj" = ( +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = 9; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"oSu" = ( +/obj/structure/surface/table/holotable, +/obj/item/toy/desk/fan, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"oSG" = ( +/obj/structure/platform/stair_cut, +/obj/structure/stairs/perspective{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"oTa" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"oTp" = ( +/obj/structure/cargo_container/watatsumi/mid, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/north) +"oTP" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 1 + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"oUf" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"oUS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + light_color = "#dae2ff"; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/taipei/atrium/club) +"oVF" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/south) +"oVW" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/machinery/light{ + dir = 8; + light_power = .25 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"oWq" = ( +/obj/structure/machinery/washing_machine{ + pixel_y = 13; + pixel_x = -5 + }, +/obj/structure/machinery/washing_machine{ + pixel_y = 28; + pixel_x = -5 + }, +/turf/open/floor, +/area/taipei/atrium/laundry) +"oXs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/hangar) +"oXw" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/southwest, +/area/taipei/hangar/cargoshuttle) +"oXz" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 + }, +/obj/item/spacecash/c10, +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/west, +/area/taipei/atrium/club) +"oXI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"oYd" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"oYL" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"oYQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/taipei/atrium/medbay) +"oYS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"oZJ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"oZS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitered{ + dir = 10 + }, +/area/taipei/atrium/restaurant) +"pay" = ( +/obj/structure/machinery/atm{ + name = "Automatic Teller Machine"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"paD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/trijent/left, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"pbt" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/left, +/obj/structure/prop/turbine_extras, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 5; + pixel_x = -4; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 16; + pixel_y = 6 + }, +/obj/item/lightstick/red/variant/planted{ + light_range = 5 + }, +/turf/open/space/basic, +/area/taipei/reactor) +"pbP" = ( +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 20; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/obj/structure/toilet{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium/medbay) +"pcj" = ( +/obj/structure/window/reinforced/toughened, +/turf/open/floor/kutjevo/colors/cyan/edge, +/area/taipei/atrium/medbay) +"pcv" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "supply_elevator_railing" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"pdn" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 4 + }, +/obj/item/stool{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/effect/decal/strata_decals/grime/grime3, +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/ucigbutt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"pdt" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"pdx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + name = "overhead pipe"; + pixel_x = -4; + pixel_y = 14 + }, +/turf/open/floor/light{ + light_color = #00008B; + light_power = .5 + }, +/area/taipei/atrium/club) +"pdA" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/cargo) +"pdD" = ( +/turf/closed/wall/r_wall/elevator, +/area/taipei/elevator/departures) +"pdG" = ( +/obj/structure/window/reinforced, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/darkredcorners2/north, +/area/taipei/atrium/theatre) +"pdP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"pea" = ( +/obj/structure/platform/strata/metal, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"pew" = ( +/turf/closed/wall/almayer/outer, +/area/taipei/hangar) +"peI" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/north, +/area/taipei/hangar) +"peW" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"peY" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 9; + pixel_y = 11 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"pfy" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"pfF" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"pfW" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/south) +"pgd" = ( +/obj/structure/machinery/disposal{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 8 + }, +/area/taipei/cmb) +"pho" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/research, +/obj/structure/machinery/door/airlock/multi_tile/elevator/access, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/elevator/departures) +"php" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/closed/wall/almayer, +/area/taipei/maints/south) +"pic" = ( +/obj/structure/sign/poster/pinup, +/obj/structure/mirror, +/turf/closed/wall/biodome, +/area/taipei/atrium/theatre) +"pig" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/machinery/faxmachine, +/obj/structure/machinery/light/double/blue{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/taipei/atrium) +"pim" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/taipei/atrium) +"pjr" = ( +/turf/open/floor/asteroid, +/area/space) +"pjR" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_2"; + opacity = 0 + }, +/area/taipei/hangar/cargoshuttle) +"pku" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/item/trash/cigbutt{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"plc" = ( +/obj/structure/machinery/washing_machine{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/structure/machinery/washing_machine{ + pixel_y = 13; + pixel_x = -16 + }, +/obj/structure/machinery/washing_machine{ + pixel_y = 28; + pixel_x = 4 + }, +/obj/structure/machinery/washing_machine{ + pixel_y = 28; + pixel_x = -16 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/taipei/atrium/laundry) +"pmM" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/closed/wall/almayer, +/area/taipei/maints/north) +"pnr" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"pnz" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"pow" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"poI" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 4 + }, +/area/taipei/atrium) +"poN" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/weapon/baton, +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 4 + }, +/area/taipei/cmb) +"poO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"poQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/west, +/area/taipei/atrium/club) +"ppk" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"pps" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"pqe" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning, +/area/taipei/hangar) +"pqL" = ( +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/taipei/atrium/theatre) +"pqP" = ( +/obj/structure/toilet{ + pixel_y = 15; + pixel_x = 1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"pqY" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/atrium) +"prc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/watatsumi/left, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"pru" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"prI" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/taipei/atrium/medbay) +"prM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/double{ + pixel_x = 0; + pixel_y = 7 + }, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/reactor) +"psc" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning, +/area/taipei/hangar) +"psy" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe, +/area/taipei/atrium/hotel) +"psB" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/prison, +/area/taipei/telecomms) +"psQ" = ( +/obj/structure/machinery/light/spot, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"ptI" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/south) +"puY" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"pva" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/north, +/area/taipei/cargo) +"pvk" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"pvw" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/item/trash/cigbutt{ + pixel_x = 12; + pixel_y = 18 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"pvI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/taipei/telecomms) +"pws" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/hangar) +"pwu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"pwz" = ( +/obj/structure/window/framed/almayer/white, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/white/reinforced, +/area/taipei/atrium/medbay) +"pwM" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"pwN" = ( +/obj/structure/platform_decoration/kutjevo, +/obj/structure/pipes/vents, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet7_3/west, +/area/taipei/atrium/theatre) +"pxr" = ( +/obj/structure/blocker/forcefield/human{ + icon = 'icons/' + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/prison, +/area/taipei/reactor) +"pxG" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/north) +"pyb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"pyO" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/turf/open/floor/prison, +/area/taipei/atrium) +"pyS" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"pza" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + light_power = 2; + light_range = 5; + light_on = 1 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/prison/chapel_carpet, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"pzg" = ( +/obj/structure/platform/shiva/catwalk, +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner, +/area/taipei/atrium/club) +"pzh" = ( +/obj/effect/elevator, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/asteroid, +/area/taipei/cargo) +"pzk" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/maints/south) +"pzM" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/machinery/computer/cameras{ + dir = 1; + pixel_x = 5; + pixel_y = -1 + }, +/obj/structure/barricade/handrail/kutjevo, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/taipei/atrium/offices) +"pzV" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison, +/area/taipei/maints/north) +"pBd" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"pCa" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/floor/prison, +/area/taipei/atrium) +"pCs" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/machinery/light/spot{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"pCy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/hangar) +"pCL" = ( +/turf/closed/wall/r_wall/elevator{ + dir = 5 + }, +/area/taipei/elevator/departures) +"pCX" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/cargo) +"pDV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/floodlights{ + pixel_x = 0; + pixel_y = -8 + }, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"pEh" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/endcap_right/west, +/area/taipei/hangar/cargoshuttle) +"pEn" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"pEF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"pEQ" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"pFc" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"pFN" = ( +/obj/structure/largecrate/random/mini/chest/c{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/structure/catwalk, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"pFZ" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/atrium) +"pGy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/hangar) +"pGL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"pGZ" = ( +/turf/closed/shuttle/ert{ + icon_state = "twe4" + }, +/area/taipei/hangar/cargoshuttle) +"pHd" = ( +/obj/item/stool{ + pixel_y = 11; + pixel_x = -5 + }, +/turf/open/floor/prison/blue/east, +/area/taipei/atrium/club) +"pHQ" = ( +/obj/structure/sign/banners/united_americas_flag{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/taipei/atrium/club) +"pIu" = ( +/obj/item/storage/briefcase{ + pixel_y = -13; + pixel_x = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"pIB" = ( +/obj/structure/bookcase{ + pixel_x = -14 + }, +/obj/structure/bookcase{ + pixel_x = -14; + pixel_y = 21 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"pIY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"pJt" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 4; + icon_state = "leftsecure"; + id = "brg" + }, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Security Desk" + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"pJx" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"pJC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/line_nexter_control{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/prison, +/area/taipei/atrium) +"pJR" = ( +/obj/structure/window/framed/prefab, +/obj/structure/window/framed/corsat, +/turf/open/floor/asteroid, +/area/taipei/atrium) +"pKv" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/tool/pen/fountain{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/carpet, +/area/taipei/atrium/offices) +"pKx" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/taipei/atrium) +"pLb" = ( +/turf/open/floor/light{ + light_color = #00008B; + light_power = .5 + }, +/area/taipei/atrium/club) +"pLt" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double/blue{ + dir = 8; + light_color = "#dae2ff"; + pixel_x = -5; + light_power = .25 + }, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"pLA" = ( +/obj/structure/machinery/door/window/brigdoor/southright, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/darkbrowncorners2/southwest, +/area/taipei/atrium/theatre) +"pLN" = ( +/turf/open/floor/carpet11_12/west, +/area/taipei/atrium/hotel) +"pLS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"pLT" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/north) +"pMl" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"pMv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/taipei/atrium/club) +"pMJ" = ( +/obj/item/lightstick/red/variant/planted, +/turf/open/gm/empty, +/area/taipei/reactor) +"pMK" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"pMR" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"pNb" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"pNl" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"pNR" = ( +/obj/structure/machinery/washing_machine{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/structure/machinery/washing_machine{ + pixel_y = 13; + pixel_x = -16 + }, +/obj/structure/machinery/washing_machine{ + pixel_y = 28; + pixel_x = 4 + }, +/obj/structure/machinery/washing_machine{ + pixel_y = 28; + pixel_x = -16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"pNX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"pOj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/taipei/atrium) +"pOl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/glass, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"pOp" = ( +/obj/item/trash/popcorn{ + dir = 1; + pixel_y = 10 + }, +/obj/structure/platform/kutjevo/smooth{ + light_power = 2; + light_range = 5; + light_on = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/kutjevo/smooth{ + light_power = 2; + light_range = 5; + light_on = 1 + }, +/turf/open/floor/prison/chapel_carpet, +/turf/open/floor/prison/chapel_carpet, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"pOq" = ( +/turf/open/floor/plating, +/area/taipei/hangar/landingzone) +"pOr" = ( +/obj/structure/bed/sofa/vert/white/top, +/turf/open/floor/kutjevo/tan, +/area/taipei/elevator/arrivals) +"pOK" = ( +/turf/open/gm/empty, +/area/taipei/reactor) +"pPy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"pPz" = ( +/turf/closed/wall/biodome, +/area/taipei/atrium) +"pPO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"pQN" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/south) +"pQV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral, +/area/taipei/maints/north) +"pQW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + brightness = 3; + light_power = .50 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"pRe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"pRp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = 0; + pixel_y = 8 + }, +/obj/structure/window_frame/corsat, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"pRt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 9 + }, +/area/taipei/atrium) +"pRA" = ( +/turf/open/floor/strata/fake_wood, +/area/taipei/atrium/offices) +"pRS" = ( +/obj/structure/machinery/conveyor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/taipei/atrium) +"pRU" = ( +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/elevator/arrivals) +"pSa" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"pSB" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/north) +"pTc" = ( +/obj/structure/machinery/door/window/brigdoor/southleft, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/darkredcorners2/north, +/area/taipei/atrium/theatre) +"pTu" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"pTJ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"pUK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/northwest, +/area/taipei/hangar) +"pUQ" = ( +/obj/structure/bed/sofa/vert/white/top, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"pVu" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"pVD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"pWj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"pWk" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/cargo) +"pWq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge, +/area/taipei/cmb) +"pWD" = ( +/turf/closed/wall/biodome, +/area/taipei/atrium/laundry) +"pWM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"pXa" = ( +/obj/structure/surface/table, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"pXg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"pYh" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"pYl" = ( +/obj/structure/sign/poster/pinup, +/obj/structure/sign/poster/hunk, +/obj/structure/sign/poster/propaganda{ + pixel_y = 7; + pixel_x = 10 + }, +/turf/closed/wall/almayer, +/area/taipei/atrium/club) +"pZD" = ( +/obj/structure/machinery/light/double{ + dir = 1 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"pZV" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"qan" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 5; + pixel_x = -4; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 16; + pixel_y = 6 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/taipei/reactor) +"qaS" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"qbd" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/taipei/telecomms) +"qbq" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"qbv" = ( +/turf/open/floor/asteroidwarning, +/area/taipei/maints/south) +"qbR" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"qen" = ( +/obj/structure/closet/secure_closet/fridge/meat/stock, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"qex" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"qeW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/southeast, +/area/taipei/hangar) +"qfb" = ( +/obj/item/lightstick/red/spoke/planted, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"qfi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 8 + }, +/area/taipei/atrium) +"qgc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/north, +/area/taipei/hangar) +"qgh" = ( +/obj/structure/sign/poster/io, +/obj/structure/mirror, +/turf/closed/wall/biodome, +/area/taipei/atrium/theatre) +"qgs" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"qgQ" = ( +/obj/structure/sign/safety/autodoc, +/obj/structure/sign/safety/outpatient{ + pixel_x = 15; + pixel_y = 0 + }, +/turf/closed/wall/almayer/white, +/area/taipei/atrium/medbay) +"qhD" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 6 + }, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"qii" = ( +/turf/closed/wall/r_wall/elevator{ + dir = 5 + }, +/area/taipei/elevator/arrivals) +"qiv" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/south) +"qiK" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + light_color = "#dae2ff"; + pixel_x = -5 + }, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"qjd" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/turf/closed/wall/biodome, +/area/taipei/atrium/store) +"qjE" = ( +/obj/structure/sign/banners/colonial_marines_flag{ + pixel_y = -3 + }, +/turf/closed/wall/almayer, +/area/taipei/atrium/club) +"qjJ" = ( +/obj/structure/sign/safety/opens_up, +/turf/closed/wall/almayer, +/area/taipei/maints/south) +"qjL" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"qjY" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/reactor) +"qkb" = ( +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"qkf" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"qko" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"qkq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/taipei/atrium/club) +"qkv" = ( +/obj/item/stool{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"qky" = ( +/turf/closed/wall/almayer, +/area/taipei/atrium/hotel) +"qkL" = ( +/obj/structure/machinery/light/double/blue, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/taipei/atrium) +"qkT" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/machinery/vending/cigarette{ + pixel_x = -9; + pixel_y = 0 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"qlb" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"qlC" = ( +/obj/structure/toilet{ + pixel_y = 15; + pixel_x = 1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"qmd" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/taipei/atrium/offices) +"qmz" = ( +/obj/structure/window_frame/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"qoc" = ( +/obj/structure/cargo_container/arious/mid, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"qog" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 6 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"qoj" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"qou" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"qpi" = ( +/obj/structure/toilet{ + pixel_y = 12 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 20; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"qpE" = ( +/turf/open/floor/prison/blue{ + dir = 8 + }, +/area/taipei/atrium/club) +"qpY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"qqa" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"qqg" = ( +/obj/structure/bed/chair/comfy, +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor/carpet, +/area/taipei/atrium/offices) +"qqj" = ( +/obj/effect/decal/cleanable/cobweb2/dynamic, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"qrl" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/cargo) +"qrU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/turf/open/floor/whitered{ + dir = 4 + }, +/area/taipei/atrium/restaurant) +"qsk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/cable/heavyduty, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"qsO" = ( +/obj/structure/catwalk, +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/turf/open/floor/almayer/edge/east, +/area/taipei/hangar/cargoshuttle) +"qts" = ( +/obj/structure/stairs/perspective{ + dir = 4 + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/prison, +/area/taipei/maints/south) +"qtE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/floor/corsat/marked, +/area/taipei/cmb) +"qtT" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"qud" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/taipei/atrium) +"quS" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access, +/turf/open/floor/corsat/marked, +/area/taipei/elevator/departures) +"quX" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/north) +"qvZ" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"qwG" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = 8 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = 8 + }, +/obj/structure/largecrate/random/barrel/true_random, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = 19; + pixel_y = -1 + }, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = 9; + pixel_y = 20 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"qxh" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"qxw" = ( +/turf/closed/wall/biodome, +/area/taipei/atrium/restaurant) +"qxG" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/reactor) +"qxS" = ( +/obj/item/stool{ + pixel_y = 6 + }, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"qyk" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"qyT" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"qzs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/elevator/departures) +"qzx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/elevator/arrivals) +"qAE" = ( +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"qAG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"qBh" = ( +/obj/structure/machinery/door/window/brigdoor/southright, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/taipei/atrium/theatre) +"qBL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_x = 5; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"qBP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"qCK" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/knife/butcher, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/taipei/atrium/restaurant) +"qCY" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"qDd" = ( +/obj/structure/surface/rack{ + pixel_x = 4 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"qDe" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"qDp" = ( +/obj/item/spacecash/c20, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/light{ + light_color = #00008B; + light_power = .5 + }, +/area/taipei/atrium/club) +"qDy" = ( +/obj/structure/machinery/deployable, +/turf/closed/mineral, +/area/taipei/underground) +"qDX" = ( +/turf/closed/shuttle/ert{ + icon_state = "twe_rightengine" + }, +/area/taipei/hangar/cargoshuttle) +"qEM" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"qGU" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"qHa" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 5; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"qHf" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + light_color = #00008B; + pixel_x = 4; + light_power = .50 + }, +/obj/structure/machinery/camera, +/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/west, +/area/taipei/atrium/club) +"qHh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/atrium/restaurant) +"qHs" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"qHB" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/item/trash/crushed_cup, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"qHO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet7_3, +/area/taipei/atrium/hotel) +"qId" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/hangar) +"qIy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/hangar) +"qII" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/taipei/maints/south) +"qIP" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/case{ + pixel_x = 0; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/west, +/area/taipei/hangar/cargoshuttle) +"qJb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null + }, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) +"qJh" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 9; + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/pill_bottle/packet/oxycodone{ + pixel_x = -1; + pixel_y = 22 + }, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"qJJ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"qKn" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.05 + }, +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/taipei/atrium) +"qLL" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"qLN" = ( +/obj/structure/machinery/computer/cameras/telescreen/entertainment{ + icon_state = "ai_bsod"; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"qMO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/south) +"qMR" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"qMW" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"qNf" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + luminosity = 15 + }, +/obj/structure/barricade/handrail/kutjevo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"qNy" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"qOn" = ( +/obj/structure/platform, +/obj/structure/barricade/handrail/strata, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/north, +/area/taipei/hangar) +"qOy" = ( +/obj/item/lightstick/red/spoke/planted, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"qQq" = ( +/obj/structure/sink{ + pixel_x = 1; + pixel_y = 23 + }, +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"qQs" = ( +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/obj/structure/bed/chair/bolted, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"qQU" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"qRc" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 10; + pixel_y = 7 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/taipei/atrium/medbay) +"qRu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning, +/area/taipei/hangar) +"qRP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"qRR" = ( +/obj/structure/platform/strata/metal, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"qRT" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"qSj" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"qSm" = ( +/obj/structure/largecrate/random/case/double{ + pixel_x = 8; + pixel_y = 0 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"qSI" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"qTh" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"qTx" = ( +/obj/effect/decal/grass_overlay/grass1/inner, +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"qTC" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_full" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroid, +/area/taipei/atrium/theatre) +"qTZ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"qUG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/elevator/departures) +"qUP" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_y = 5; + pixel_x = -9 + }, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"qVT" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"qWl" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"qXg" = ( +/obj/structure/sign/safety/opens_up, +/turf/closed/wall/almayer, +/area/taipei/maints/north) +"qXw" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"qXz" = ( +/obj/structure/prop/turbine, +/turf/open/floor/mech_bay_recharge_floor, +/area/taipei/reactor) +"qXE" = ( +/turf/open/floor/plating/wood_broken2, +/area/taipei/atrium/bookstore) +"qXL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/taipei/atrium) +"qYb" = ( +/obj/structure/sign/poster/hunk, +/obj/structure/mirror, +/turf/closed/wall/biodome, +/area/taipei/atrium/theatre) +"qYe" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"qYq" = ( +/obj/structure/coatrack, +/obj/item/clothing/head/det_hat/black{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/strata/fake_wood, +/area/taipei/cmb) +"qYY" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"qZd" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"qZy" = ( +/obj/structure/platform, +/obj/structure/barricade/handrail/strata, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"rbc" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"rdf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/north) +"rdp" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison, +/area/taipei/maints/south) +"rdN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge{ + dir = 10 + }, +/area/taipei/atrium/medbay) +"rek" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"reD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/maints/north) +"reM" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/bed/sofa/south, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/fake_wood, +/area/taipei/atrium/theatre) +"rfk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 1 + }, +/area/taipei/cmb) +"rfD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredcorners2/east, +/area/taipei/atrium/theatre) +"rfT" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"rfW" = ( +/turf/open/floor/kutjevo, +/area/taipei/atrium) +"rgI" = ( +/obj/structure/shuttle/engine/heater{ + pixel_x = 16; + pixel_y = 0 + }, +/obj/item/defenses/handheld/tesla_coil{ + pixel_x = 16; + pixel_y = 9 + }, +/obj/structure/lattice, +/obj/item/lightstick/red/spoke/planted, +/turf/open/gm/empty, +/area/taipei/reactor) +"rgP" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = -8 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/south) +"rhb" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "anomalybelt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/taipei/atrium) +"rhi" = ( +/obj/structure/machinery/camera, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 1 + }, +/area/taipei/cmb) +"rhs" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"rhI" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"rij" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"riq" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"riX" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6; + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/maints/south) +"rjP" = ( +/obj/structure/machinery/door/window/brigdoor/southright, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge, +/area/taipei/atrium/medbay) +"rjX" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/atrium) +"rkp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/hangar) +"rkq" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/item/trash/popcorn{ + dir = 3; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"rkA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = 4; + pixel_y = 0 + }, +/turf/open/floor/plating/asteroidwarning/north, +/area/taipei/hangar) +"rkV" = ( +/obj/structure/bed/chair/comfy/alpha, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"rkX" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/item/trash/crushed_cup{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -9; + pixel_y = -2 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"rlh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/prison/darkredcorners2/north, +/area/taipei/atrium/theatre) +"rly" = ( +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"rma" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/taipei/elevator/arrivals) +"rmf" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/taipei/elevator/departures) +"rms" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 16; + pixel_y = 6 + }, +/obj/item/lightstick/red/variant/planted, +/turf/open/floor/mech_bay_recharge_floor, +/area/taipei/reactor) +"rmW" = ( +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/taipei/atrium) +"rnB" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/south) +"rnW" = ( +/turf/open/floor/prison/bluecorner, +/area/taipei/atrium/club) +"rnX" = ( +/obj/structure/cargo_container/arious/leftmid, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"rod" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/southeast, +/area/taipei/hangar) +"roF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/prison, +/area/taipei/cargo) +"rpf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/endcap_right/west, +/area/taipei/hangar/cargoshuttle) +"rpk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/hangar) +"rpF" = ( +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/east, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"rqE" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"rqJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"rqN" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"rqT" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"rqY" = ( +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/reactor) +"rrg" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper/crumpled{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/paper{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/tool/pen, +/turf/open/floor/prison, +/area/taipei/cargo) +"rrA" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"rrE" = ( +/obj/structure/curtain/red, +/turf/open/floor/asteroidplating, +/area/taipei/atrium/theatre) +"rrU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/south) +"rsN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"rsS" = ( +/obj/item/stool{ + icon_state = "stool_alt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitered{ + dir = 8 + }, +/area/taipei/atrium/restaurant) +"rtt" = ( +/obj/structure/machinery/door/window{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"ruS" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/cargo) +"ruT" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"rwb" = ( +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5"; + pixel_y = 20; + pixel_x = 9 + }, +/obj/structure/bookcase{ + pixel_x = 9; + pixel_y = 42 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"rwk" = ( +/obj/structure/platform, +/obj/structure/machinery/light/spot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/north, +/area/taipei/hangar) +"rwz" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/taipei/atrium) +"rwD" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = 9; + pixel_y = 20 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = -5; + pixel_y = 20 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/carpet10_8, +/area/taipei/atrium/hotel) +"rxc" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"rxj" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"rxr" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform_decoration, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"rxA" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"rxL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/elevator/departures) +"ryf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"ryp" = ( +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 4 + }, +/area/taipei/atrium) +"ryw" = ( +/obj/structure/surface/rack{ + pixel_x = -5 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = -5 + }, +/obj/structure/surface/rack{ + pixel_x = 18 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = 18 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"ryG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 6 + }, +/area/taipei/atrium) +"ryI" = ( +/turf/closed/wall/biodome, +/area/taipei/atrium/bookstore) +"rzB" = ( +/obj/structure/barricade/handrail/strata, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"rzW" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"rAd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"rAv" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "vehicle_elevator_railing_aux" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"rBh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/taipei/atrium) +"rBn" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"rBo" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"rBv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"rBE" = ( +/obj/structure/machinery/access_button, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"rCo" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = 8 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = 8 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"rCq" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"rCL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitered{ + dir = 4 + }, +/area/taipei/atrium/restaurant) +"rDp" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"rDH" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"rDO" = ( +/obj/structure/mirror{ + pixel_y = -10 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"rEc" = ( +/obj/structure/largecrate/random/barrel/blue{ + pixel_x = -10 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"rEH" = ( +/obj/structure/window/framed/prefab, +/obj/structure/window/framed/corsat, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroid, +/area/taipei/atrium) +"rEN" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"rEP" = ( +/turf/closed/wall/almayer/outer, +/area/space) +"rFg" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"rFY" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/restaurant) +"rGd" = ( +/obj/structure/stairs, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"rGH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"rGO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8; + light_power = .25 + }, +/turf/open/floor/prison, +/area/taipei/telecomms) +"rHb" = ( +/obj/structure/pipes/vents, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"rHy" = ( +/obj/structure/stairs/perspective, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"rHV" = ( +/obj/structure/lattice, +/obj/structure/prop/structure_lattice{ + pixel_x = 16; + pixel_y = 0 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"rIm" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"rIo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"rIv" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/south) +"rIO" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 7 + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"rJg" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"rJl" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/structure/platform/stair_cut{ + icon_state = "kutjevo_platform_sm_stair" + }, +/obj/structure/platform/kutjevo/smooth, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"rKi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/northeast, +/area/taipei/maints/north) +"rKm" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/taipei/atrium/offices) +"rKz" = ( +/obj/structure/barricade/handrail/kutjevo, +/turf/open/floor/prison/chapel_carpet, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"rKL" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/south) +"rLB" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"rLH" = ( +/obj/item/stool{ + pixel_y = 9; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue{ + dir = 8 + }, +/area/taipei/atrium/club) +"rLX" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"rMu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/atrium/restaurant) +"rMP" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"rNz" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"rNN" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"rNR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner, +/area/taipei/atrium/club) +"rOq" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + pixel_x = 1; + pixel_y = 0 + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/taipei/cmb) +"rOz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"rOH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"rON" = ( +/obj/structure/stairs/perspective{ + dir = 4 + }, +/obj/structure/platform/stair_cut, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"rQp" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"rQu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/prison, +/area/taipei/atrium) +"rRc" = ( +/obj/structure/window/reinforced/ultra, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"rRi" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"rRj" = ( +/obj/structure/platform/strata/metal, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"rRo" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + pixel_y = 13 + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"rRr" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/item/trash/candy{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"rRE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/hangar) +"rRY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"rSw" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/machinery/light/spot, +/obj/structure/machinery/light/spot{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"rSH" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"rSP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/kutjevo/colors/cyan/inner_corner, +/area/taipei/atrium/medbay) +"rTe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 11; + pixel_y = 5 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"rTf" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"rTi" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/prison, +/area/taipei/cargo) +"rTm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/hangar) +"rTq" = ( +/obj/structure/sign/safety/reception, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/atrium) +"rTs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 9; + pixel_y = 15 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"rTR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/shuttle/ert{ + icon_state = "twe9" + }, +/area/taipei/hangar/cargoshuttle) +"rUe" = ( +/obj/structure/cargo_container/seegson/mid, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"rUn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 8 + }, +/area/taipei/cmb) +"rUR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/carpet15_15/west, +/area/taipei/atrium/theatre) +"rVb" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + icon_state = "fernybush_2"; + pixel_y = 10 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"rVd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/taipei/atrium) +"rVs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge, +/area/taipei/hangar/cargoshuttle) +"rWl" = ( +/obj/structure/platform/strata/metal, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"rWn" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/taipei/atrium) +"rWU" = ( +/obj/structure/machinery/light, +/turf/open/floor/kutjevo, +/area/taipei/atrium) +"rXc" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/north) +"rXm" = ( +/turf/closed/shuttle/ert{ + icon_state = "twe25" + }, +/area/taipei/hangar/cargoshuttle) +"rYc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"rYl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge{ + dir = 9 + }, +/area/taipei/atrium) +"rYm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/taipei/cmb) +"rZm" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/machinery/elevator_strut/bottom, +/turf/open/gm/empty, +/area/taipei/maints/south) +"rZo" = ( +/obj/effect/decal/grass_overlay/grass1/inner, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"rZr" = ( +/obj/structure/curtain/red, +/obj/item/trash/crushed_cup, +/turf/open/floor/carpet7_3/west, +/area/taipei/atrium/theatre) +"rZT" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/taipei/atrium) +"sad" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/chapel_carpet, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"sao" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/north) +"sck" = ( +/obj/structure/sign/safety/coffee{ + pixel_x = 7; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"scs" = ( +/obj/structure/bed/sofa/south/white/right{ + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium/medbay) +"scP" = ( +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 4; + pixel_x = 2; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/south) +"scR" = ( +/turf/closed/wall/r_wall/elevator{ + dir = 9 + }, +/area/taipei/elevator/departures) +"scU" = ( +/obj/structure/cargo_container/kelland/right{ + pixel_x = 12; + pixel_y = 0 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"scZ" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + icon_state = "conveyor-1" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/taipei/atrium) +"sdS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/taipei/atrium/medbay) +"sef" = ( +/obj/structure/bed/chair/comfy/alpha, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"sen" = ( +/obj/structure/platform, +/obj/structure/barricade/handrail/strata, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6; + dir = 3 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"seC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/plating/asteroidwarning, +/area/taipei/hangar) +"seH" = ( +/turf/open/floor/kutjevo/colors/red/inner_corner, +/area/taipei/cmb) +"seS" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"sfA" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"sfE" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 10 + }, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"sgg" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"sgr" = ( +/obj/structure/platform{ + layer = 3.1 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"sgE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = -7; + pixel_y = 0 + }, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = 13; + pixel_y = -1 + }, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = 2; + pixel_y = 17 + }, +/turf/open/floor/plating/asteroidwarning/north, +/area/taipei/hangar) +"shc" = ( +/obj/structure/machinery/iv_drip{ + pixel_x = 8; + pixel_y = 17 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium/medbay) +"shB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkredcorners2/east, +/area/taipei/atrium/theatre) +"shQ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"shX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet11_12/west, +/area/taipei/atrium/hotel) +"sin" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"siU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/carpet14_10/west, +/area/taipei/atrium/theatre) +"sjh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/north) +"sjG" = ( +/obj/structure/toilet{ + pixel_y = 12 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 20; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/taipei/atrium/medbay) +"sjQ" = ( +/turf/closed/wall/almayer, +/area/taipei/atrium/theatre) +"skD" = ( +/obj/structure/bed/sofa/south/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"skG" = ( +/obj/item/spacecash/c10, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_y = 17; + pixel_x = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/light{ + light_color = #00008B; + light_power = .5 + }, +/area/taipei/atrium/club) +"skO" = ( +/obj/structure/machinery/light{ + dir = 8; + light_power = .25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"slb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"slw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"slH" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/taipei/atrium/offices) +"slJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral, +/area/taipei/underground) +"slN" = ( +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"smE" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"smV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue{ + dir = 8 + }, +/area/taipei/atrium/club) +"snK" = ( +/turf/open/floor/kutjevo/colors/cyan/edge, +/area/taipei/atrium/medbay) +"soA" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/taipei/atrium) +"spe" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/cargo) +"sph" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 10 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"spB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"spC" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_full" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/turf/open/floor/asteroid, +/area/taipei/atrium/theatre) +"sqd" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"sqz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/item/reagent_container/food/snacks/popcorn{ + pixel_x = 11; + pixel_y = 10 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/darkredcorners2/north, +/area/taipei/atrium/theatre) +"sqO" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/restraint/handcuffs/zip{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/restraint/handcuffs/zip{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 4 + }, +/area/taipei/cmb) +"srh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random, +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = 2; + pixel_y = 16 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"srp" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/bed/sofa/south, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/fake_wood, +/area/taipei/atrium/theatre) +"srJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/west, +/area/taipei/atrium/theatre) +"ssc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/taipei/atrium/medbay) +"ssB" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/east, +/area/taipei/hangar/cargoshuttle) +"ssE" = ( +/obj/structure/machinery/conveyor, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"ssQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/taipei/cmb) +"svl" = ( +/obj/structure/surface/table, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"svr" = ( +/obj/structure/machinery/door/airlock/almayer/medical, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) +"svu" = ( +/obj/structure/machinery/door/window/brigdoor/southright, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/taipei/atrium) +"svA" = ( +/obj/structure/bed/sofa/south/white/left, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"swd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/supply/supplies/water{ + pixel_x = -2; + pixel_y = -22 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"swI" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 16; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"sxK" = ( +/obj/structure/machinery/camera{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 8 + }, +/area/taipei/cmb) +"syB" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/north) +"szG" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/atrium/medbay) +"sAI" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526" + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"sAL" = ( +/turf/open/floor/carpet6_2, +/area/taipei/atrium/hotel) +"sAT" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/desk/officetoy{ + pixel_x = 55; + pixel_y = -2 + }, +/obj/item/tool/pen/fountain{ + pixel_x = 16; + pixel_y = 8 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/taipei/cmb) +"sBx" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/item/lightstick/red/spoke/planted, +/turf/open/gm/empty, +/area/taipei/reactor) +"sBy" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/cargo) +"sBT" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"sCT" = ( +/obj/structure/platform/stair_cut/alt, +/obj/structure/stairs/perspective{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"sCY" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/toy/desk/dippingbird{ + pixel_y = 23; + pixel_x = -1; + on = 1 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"sDn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"sDz" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = 8 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"sEY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor, +/area/taipei/atrium/laundry) +"sFc" = ( +/obj/item/stool{ + pixel_y = 4; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue{ + dir = 8 + }, +/area/taipei/atrium/club) +"sFd" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/kutjevo/smooth{ + light_power = 2; + light_range = 5; + light_on = 1 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/prison/chapel_carpet, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"sFS" = ( +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/south) +"sFZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/taipei/atrium) +"sGq" = ( +/obj/structure/machinery/computer/arcade{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"sGs" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/prison, +/area/taipei/reactor) +"sGu" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/taipei/atrium) +"sGD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/taipei/elevator/departures) +"sGR" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge, +/area/taipei/cmb) +"sHa" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"sHM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"sIl" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/effect/overlay/palmtree_r, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"sIN" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/taipei/atrium) +"sIV" = ( +/obj/item/trash/kepler{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"sJr" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/north) +"sJt" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"sJR" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = -8 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = -8 + }, +/obj/structure/closet/crate/freezer/cooler{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"sLg" = ( +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = 9; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"sLp" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/obj/structure/prop/server_equipment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/reactor) +"sLT" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"sMK" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"sNu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_y = 5 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"sNF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"sOg" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/prop/rock, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"sOY" = ( +/obj/structure/stairs/perspective{ + dir = 8 + }, +/obj/structure/platform/stair_cut/alt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"sPg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/taipei/cargo) +"sPn" = ( +/obj/structure/toilet{ + pixel_y = 12 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 20; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"sPo" = ( +/obj/structure/window/framed/corsat/cell, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"sPt" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"sPB" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"sQC" = ( +/obj/structure/stairs/perspective{ + dir = 4 + }, +/obj/structure/platform/stair_cut, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"sRa" = ( +/obj/structure/machinery/door/poddoor/almayer/closed, +/turf/open/floor/corsat/marked, +/area/taipei/cmb) +"sRn" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/taipei/atrium/offices) +"sRq" = ( +/obj/item/storage/toolbox/electrical{ + pixel_y = 8 + }, +/obj/structure/cable{ + icon_state = "0-2"; + layer = 2.36; + pixel_y = -3; + pixel_x = -3 + }, +/obj/structure/cable{ + icon_state = "0-2"; + layer = 2.36; + pixel_y = -3; + pixel_x = -1 + }, +/obj/structure/cable{ + icon_state = "0-2"; + layer = 2.36; + pixel_y = -3; + pixel_x = 1 + }, +/obj/structure/cable{ + icon_state = "0-2"; + layer = 2.36; + pixel_y = -3; + pixel_x = 3 + }, +/obj/item/stack/cable_coil/cut{ + pixel_x = 12; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/taipei/atrium) +"sSo" = ( +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/reactor) +"sSu" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"sSF" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"sSV" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + pixel_y = 5 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"sTQ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/north) +"sTW" = ( +/turf/open/floor, +/area/taipei/atrium/laundry) +"sUP" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/taipei/atrium/theatre) +"sVa" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot, +/turf/open/floor/plating/asteroidwarning/north, +/area/taipei/hangar) +"sVb" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"sVk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"sVv" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"sVw" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/west, +/area/taipei/atrium/club) +"sVA" = ( +/obj/structure/closet/secure_closet/medical2{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/structure/machinery/iv_drip{ + pixel_x = -8; + pixel_y = 0 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/taipei/atrium/medbay) +"sVC" = ( +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"sXt" = ( +/obj/structure/platform_decoration/kutjevo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"sXD" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/turf/open/floor/prison, +/area/taipei/reactor) +"sYj" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"sYW" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"sYX" = ( +/obj/structure/machinery/light, +/turf/open/floor/carpet13_5/west, +/area/taipei/atrium/theatre) +"sZf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"taf" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/endcap_right/east, +/area/taipei/hangar/cargoshuttle) +"tai" = ( +/obj/structure/sign/safety/luggageclaim{ + pixel_x = 15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/atrium) +"taq" = ( +/obj/structure/machinery/vending/coffee{ + pixel_x = 14; + pixel_y = 14 + }, +/obj/structure/machinery/vending/snack/packaged{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/effect/decal/strata_decals/grime/grime1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"tat" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/taipei/atrium/offices) +"tau" = ( +/obj/structure/machinery/door/poddoor/almayer/locked, +/obj/structure/blocker/forcefield/human, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/north) +"taO" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/structure/largecrate/random, +/obj/structure/largecrate/random/case{ + pixel_x = 2; + pixel_y = 17 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"tbd" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 9; + pixel_x = -3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"tbG" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"tbW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"tcf" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"tco" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl"; + pixel_x = -13; + pixel_y = 5 + }, +/turf/open/floor/strata/fake_wood, +/area/taipei/cmb) +"tcp" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/north) +"tcq" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/taipei/atrium/medbay) +"tcT" = ( +/turf/closed/shuttle/ert{ + icon_state = "twe1" + }, +/area/taipei/hangar/cargoshuttle) +"tea" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"tee" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"tei" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"tem" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + light_power = 2; + light_range = 5; + light_on = 1 + }, +/turf/open/floor/prison/chapel_carpet, +/turf/open/floor/prison/chapel_carpet, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"ten" = ( +/obj/structure/bed{ + pixel_x = 0; + pixel_y = 17 + }, +/obj/item/bedsheet/medical{ + pixel_x = 0; + pixel_y = 17 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/taipei/atrium/medbay) +"tey" = ( +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 4 + }, +/area/taipei/cmb) +"teY" = ( +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 1 + }, +/area/taipei/cmb) +"tfm" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"tfp" = ( +/turf/open/floor/kutjevo/multi_tiles/west, +/area/taipei/atrium) +"tfF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/north) +"tgu" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet9_4, +/area/taipei/atrium/hotel) +"thq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"thQ" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 1 + }, +/area/taipei/atrium) +"tiJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_y = 5; + pixel_x = -9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"tjb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"tjm" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/structure/platform/stair_cut{ + icon_state = "kutjevo_platform_sm_stair" + }, +/obj/structure/platform/kutjevo/smooth, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"tjp" = ( +/turf/closed/wall/biodome, +/area/space) +"tjr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"tjA" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"tjC" = ( +/obj/structure/barricade/handrail/strata, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"tjI" = ( +/obj/structure/sink{ + pixel_x = 1; + pixel_y = 23 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"tjL" = ( +/obj/structure/window/framed/prison/cell, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"tjQ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"tjZ" = ( +/obj/item/toy/desk/officetoy, +/obj/structure/surface/table/woodentable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"tkR" = ( +/turf/closed/wall/almayer, +/area/taipei/reactor) +"tlA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/seegson/right, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"tlC" = ( +/obj/structure/surface/table, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/turf/open/floor, +/area/taipei/atrium/laundry) +"tlS" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"tmq" = ( +/turf/closed/wall/r_wall/elevator{ + dir = 4 + }, +/area/taipei/elevator/departures) +"tni" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/atrium) +"tns" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/elevator/departures) +"tnH" = ( +/obj/structure/machinery/vending/security/riot, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 1 + }, +/area/taipei/cmb) +"tnW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"tnX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/atrium/theatre) +"toi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet14_10/west, +/area/taipei/atrium/theatre) +"toC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/southwest, +/area/taipei/hangar/cargoshuttle) +"toR" = ( +/obj/structure/bed/sofa/vert/white/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/elevator/arrivals) +"toY" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"tpA" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"tpZ" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"tqk" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/taipei/atrium/medbay) +"tqI" = ( +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/reactor) +"trs" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"try" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet13_5, +/area/taipei/atrium/theatre) +"trY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"tso" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner, +/area/taipei/atrium/club) +"tsy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "node" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"ttc" = ( +/turf/closed/wall/biodome, +/area/taipei/atrium/store) +"tuD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/taipei/atrium/theatre) +"tuF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/taipei/atrium/store) +"tuI" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"tuM" = ( +/obj/structure/machinery/conveyor, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"tuV" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"tuY" = ( +/turf/closed/mineral, +/area/space) +"tvp" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"tvy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/west, +/area/taipei/atrium/club) +"tvQ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning, +/area/taipei/hangar) +"tvW" = ( +/obj/structure/largecrate/random/barrel/yellow{ + pixel_y = 20; + pixel_x = 5 + }, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/reactor) +"twB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"twQ" = ( +/obj/item/stool{ + pixel_y = 8; + pixel_x = -5 + }, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"twU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"tym" = ( +/obj/structure/stairs/perspective{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"tyo" = ( +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = 9; + pixel_y = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"tyv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge{ + dir = 6 + }, +/area/taipei/atrium/medbay) +"tyN" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"tyZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/space) +"tzy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/maint/autoname, +/turf/open/floor/corsat/marked, +/area/taipei/atrium/store) +"tzW" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 7 + }, +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"tAf" = ( +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"tAZ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"tBa" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_x = -1; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"tBj" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/hangar) +"tBS" = ( +/obj/item/reagent_container/food/snacks/kepler_crisps/flamehot{ + pixel_y = 3; + pixel_x = -15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"tBT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"tDQ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6; + dir = 3 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"tEq" = ( +/obj/structure/machinery/washing_machine{ + pixel_x = -4; + pixel_y = 0 + }, +/obj/structure/machinery/washing_machine{ + pixel_x = -4; + pixel_y = 15 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"tEJ" = ( +/obj/structure/largecrate/random/case/double{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"tFe" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"tFq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"tGp" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/effect/overlay/palmtree_l, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"tGC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/southeast, +/area/taipei/hangar/cargoshuttle) +"tGI" = ( +/obj/structure/platform/stair_cut{ + icon_state = "kutjevo_platform_sm_stair" + }, +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double{ + dir = 1 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"tGK" = ( +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = 17; + pixel_y = -4 + }, +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = -2; + pixel_y = -9 + }, +/obj/structure/largecrate/random/barrel/yellow{ + pixel_y = 12; + pixel_x = 6 + }, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"tGY" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/obj/item/stool{ + pixel_y = 11; + pixel_x = -5 + }, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"tHU" = ( +/turf/open/floor/prison, +/area/taipei/atrium/club) +"tIH" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"tIV" = ( +/obj/structure/surface/table, +/obj/item/trash/ceramic_plate{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"tLl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/south) +"tLK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"tLQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge, +/area/taipei/hangar/cargoshuttle) +"tLU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/south) +"tMt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/cargo) +"tMz" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/stripper/mankini, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"tMF" = ( +/obj/structure/platform/kutjevo/smooth{ + luminosity = 15 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/kutjevo/smooth{ + light_power = 2; + light_range = 5; + light_on = 1 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/prison/chapel_carpet, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"tMI" = ( +/obj/structure/toilet{ + pixel_y = 12 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 20; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"tNd" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"tNq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/telecomms) +"tNB" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"tNG" = ( +/obj/structure/machinery/atm, +/turf/closed/wall/biodome, +/area/taipei/atrium/bookstore) +"tNW" = ( +/obj/structure/machinery/vending/cigarette{ + pixel_x = 4; + pixel_y = 14 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"tOa" = ( +/obj/structure/window/framed/corsat, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitered{ + dir = 4 + }, +/area/taipei/atrium/restaurant) +"tOn" = ( +/obj/structure/stairs/perspective{ + dir = 4 + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"tOt" = ( +/obj/structure/prop/dam/truck/cargo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"tON" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"tPv" = ( +/obj/structure/urinal{ + pixel_y = 25 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_inner_edge, +/area/taipei/atrium/offices) +"tPK" = ( +/turf/open/floor/asteroid, +/area/taipei/underground) +"tPV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/atrium) +"tQe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"tQr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/double{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/structure/largecrate/random/mini{ + pixel_x = 7; + pixel_y = -6 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"tRV" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"tSF" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4; + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/north) +"tSI" = ( +/obj/structure/closet/cabinet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"tSZ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"tTn" = ( +/obj/structure/prop/power_transformer, +/obj/structure/lattice, +/turf/open/space/basic, +/area/taipei/reactor) +"tTE" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/south) +"tUg" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "supply_elevator_railing" + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"tUB" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/chem_dispenser/soda, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"tVc" = ( +/obj/structure/prop/invuln/lattice_prop, +/obj/structure/prop/power_transformer, +/obj/structure/prop/structure_lattice, +/turf/open/space/basic, +/area/taipei/reactor) +"tWa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/taipei/atrium) +"tXQ" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/cargo) +"tYd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/atrium/club) +"tYp" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/turf/open/floor/asteroid, +/area/taipei/atrium/laundry) +"tYy" = ( +/obj/effect/vehicle_spawner/van/fixed, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"tYB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southeast, +/area/taipei/maints/south) +"tYE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80; + pixel_y = 7 + }, +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/darkbrowncorners2/southwest, +/area/taipei/atrium/theatre) +"uaq" = ( +/turf/closed/wall/almayer, +/area/taipei/atrium/offices) +"uaA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/carpet9_4/west, +/area/taipei/atrium/theatre) +"ubP" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"ucs" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/ship, +/area/taipei/atrium/offices) +"ucZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/taipei/atrium) +"udr" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/taipei/atrium) +"udD" = ( +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 4 + }, +/area/taipei/cmb) +"ueo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southwest, +/area/taipei/maints/south) +"ueq" = ( +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"ueR" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"ufs" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl"; + pixel_x = -13; + pixel_y = 5 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"ugA" = ( +/obj/structure/machinery/disposal{ + density = 0; + pixel_x = -6; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"ugQ" = ( +/obj/structure/sign/safety/security, +/turf/closed/wall/biodome, +/area/taipei/atrium) +"uho" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 10; + pixel_y = 14 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"uhv" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"uhX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/hangar) +"uin" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"uiH" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"uiL" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = 8 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"ujm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl"; + pixel_x = -2; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"ujx" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/south) +"ujM" = ( +/obj/item/paper{ + pixel_x = -59 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"uka" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/taipei/atrium/medbay) +"ukq" = ( +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 8 + }, +/area/taipei/cmb) +"ukr" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"ukC" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/window/reinforced/toughened, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"ukG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"ukM" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/south) +"ukN" = ( +/obj/structure/platform_decoration/strata/metal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"ulA" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"ulR" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_y = 5; + pixel_x = -9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"umd" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_y = 20; + pixel_x = 8 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_y = 20; + pixel_x = -7 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"umj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"unn" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"unz" = ( +/obj/item/lightstick/red/spoke/planted, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/machinery/light/spot{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"unG" = ( +/obj/structure/bed/sofa/south/white/left, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"uod" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/north, +/area/taipei/maints/north) +"uop" = ( +/obj/structure/cargo_container/kelland/right{ + pixel_x = 0; + pixel_y = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"uot" = ( +/turf/closed/wall/almayer, +/area/taipei/maints/south) +"uoF" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"uoV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/carpet13_5, +/area/taipei/atrium/theatre) +"upf" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth, +/area/taipei/hangar/cargoshuttle) +"upq" = ( +/turf/closed/wall/biodome, +/area/taipei/maints/north) +"upF" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/kutjevo/colors/cyan/inner_corner, +/area/taipei/atrium/medbay) +"upZ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"uql" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"uqp" = ( +/obj/structure/platform_decoration, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"uqP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow"; + dir = 8 + }, +/turf/closed/mineral, +/area/taipei/underground) +"urd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/atrium) +"urP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"usJ" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/item/trash/hotdog, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"utr" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/bed/chair/comfy{ + buckling_y = 2; + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/atrium) +"utB" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/bed/sofa/south, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -9; + pixel_y = -2 + }, +/turf/open/floor/kutjevo/fake_wood, +/area/taipei/atrium/theatre) +"utK" = ( +/obj/structure/surface/rack{ + pixel_x = 4 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = 4 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"utX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"uuz" = ( +/obj/structure/machinery/firealarm, +/turf/closed/wall/almayer/white, +/area/taipei/atrium/medbay) +"uuL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/south) +"uvp" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = -12 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = -12 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"uwa" = ( +/obj/structure/sign/safety/maint, +/turf/closed/wall/almayer, +/area/taipei/maints/north) +"uwC" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6; + dir = 3 + }, +/turf/closed/wall/almayer, +/area/space) +"uwK" = ( +/obj/structure/platform/stair_cut/alt, +/obj/structure/stairs/perspective{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroid, +/area/taipei/atrium) +"uwM" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/taipei/atrium) +"uxl" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + icon_state = "fernybush_2"; + pixel_y = 10 + }, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/obj/item/trash/pistachios{ + pixel_y = -13; + pixel_x = 8 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"uxN" = ( +/turf/closed/shuttle/ert{ + icon_state = "twe22" + }, +/area/taipei/hangar/cargoshuttle) +"uxZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/atrium) +"uym" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"uyx" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"uyE" = ( +/obj/structure/machinery/camera, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/bluecorner, +/area/taipei/atrium/club) +"uyN" = ( +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"uyV" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/machinery/vending/snack/packaged{ + pixel_x = 10; + pixel_y = 0 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/taipei/atrium) +"uAn" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"uAt" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/cargo) +"uAB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"uAS" = ( +/turf/open/floor/plating/asteroidwarning, +/area/taipei/hangar) +"uCk" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"uCn" = ( +/obj/structure/platform_decoration/kutjevo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/atrium) +"uDV" = ( +/obj/structure/machinery/vending/snack/packaged{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/structure/machinery/vending/coffee{ + pixel_x = 14; + pixel_y = 14 + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"uEA" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"uFI" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + light_color = "#dae2ff"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"uGe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/south) +"uGQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/reactor) +"uHf" = ( +/turf/open/floor/prison, +/area/taipei/telecomms) +"uHi" = ( +/obj/structure/surface/rack{ + pixel_x = -5 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = -5 + }, +/obj/structure/surface/rack{ + pixel_x = 18 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = 18 + }, +/obj/item/prop/geiger_counter{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"uHy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/northwest, +/area/taipei/elevator/departures) +"uHN" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"uIK" = ( +/obj/structure/window/reinforced, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/taipei/atrium/theatre) +"uIO" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"uJj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"uJs" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"uKQ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"uLX" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"uMw" = ( +/obj/structure/bed/sofa/south/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"uMA" = ( +/obj/structure/bed/sofa/south/white/right{ + pixel_x = 0; + pixel_y = 12 + }, +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/taipei/atrium/medbay) +"uMK" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/prison, +/area/taipei/atrium) +"uOD" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/taipei/atrium) +"uPB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"uQW" = ( +/obj/structure/sign/safety/bathunisex, +/turf/closed/wall/biodome, +/area/taipei/atrium/restaurant) +"uRA" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"uRW" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/south) +"uSc" = ( +/turf/open/floor/prison/darkred2, +/area/taipei/atrium/theatre) +"uSs" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison, +/area/taipei/cargo) +"uTb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"uUb" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"uUy" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/taipei/telecomms) +"uUF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/hangar) +"uUW" = ( +/obj/structure/surface/rack{ + pixel_x = 4 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = 4 + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"uVl" = ( +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/south) +"uVB" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison, +/area/taipei/cargo) +"uXs" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"uZU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"vaa" = ( +/obj/structure/toilet{ + pixel_y = 12 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 20; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/taipei/atrium/offices) +"vbr" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/maints/north) +"vbu" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"vbz" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"vbY" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"vcm" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"vcF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4; + pixel_y = 2 + }, +/turf/open/floor/prison/darkredcorners2/north, +/area/taipei/atrium/theatre) +"vcZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"vdg" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"vdz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double{ + dir = 1 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"vdI" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/taipei/atrium) +"vex" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"vfb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"vfm" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/obj/effect/overlay/palmtree_l, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"vfR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/reactor) +"vgc" = ( +/obj/structure/barricade/handrail/kutjevo, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/atrium) +"vgg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/atrium/hotel) +"vgH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor, +/area/taipei/atrium/laundry) +"vhM" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/cmb) +"vif" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 3 + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"vim" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"viQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/cargo_container/horizontal/blue/bottom, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"vkk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"vku" = ( +/obj/structure/machinery/conveyor{ + dir = 6 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"vlp" = ( +/obj/structure/machinery/light/double{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"vmb" = ( +/turf/closed/wall/r_wall/elevator{ + dir = 4 + }, +/area/taipei/elevator/arrivals) +"vmC" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"voa" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium/medbay) +"voe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"vor" = ( +/obj/structure/surface/table/holotable, +/obj/item/toy/desk/newtoncradle, +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"vox" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/taipei/atrium/medbay) +"voR" = ( +/obj/structure/pipes/vents, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"vpg" = ( +/obj/item/tool/extinguisher{ + pixel_x = -11; + pixel_y = 14 + }, +/turf/open/floor/prison, +/area/taipei/telecomms) +"vpL" = ( +/obj/item/stool{ + pixel_y = 11; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/vomit, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"vqo" = ( +/turf/closed/wall/r_wall/prison, +/area/taipei/cmb) +"vqR" = ( +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + layer = 2.9; + pixel_x = 7; + pixel_y = 16 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + layer = 2.9; + pixel_x = -8; + pixel_y = 16 + }, +/obj/item/device/defibrillator{ + pixel_x = -1; + pixel_y = 34 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/inner_corner, +/area/taipei/atrium/medbay) +"vrb" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + layer = 3.1; + pixel_y = 6 + }, +/obj/structure/window/reinforced/toughened, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"vrf" = ( +/turf/open/floor/corsat/marked, +/area/taipei/cmb) +"vrF" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/stairs/perspective, +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"vrP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/west, +/area/taipei/hangar/cargoshuttle) +"vta" = ( +/obj/structure/bed/chair/bolted, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"vtF" = ( +/obj/structure/machinery/camera{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue{ + dir = 8 + }, +/area/taipei/atrium/club) +"vtK" = ( +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"vuu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 10 + }, +/area/taipei/atrium) +"vuz" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet14_10/west, +/area/taipei/atrium/theatre) +"vvv" = ( +/obj/structure/cargo_container/kelland/left{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"vvy" = ( +/obj/structure/platform_decoration, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"vvD" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/taipei/atrium) +"vvG" = ( +/obj/structure/stairs/perspective{ + dir = 4 + }, +/turf/closed/wall/almayer, +/area/taipei/maints/north) +"vvR" = ( +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_y = 12 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/taipei/atrium) +"vwa" = ( +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"vwe" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/machinery/power/apc/power/west, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/north) +"vwz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"vwB" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison, +/area/taipei/maints/north) +"vwH" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/carpet11_12/west, +/area/taipei/atrium/theatre) +"vwX" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"vxs" = ( +/turf/closed/shuttle/ert{ + icon_state = "twe3" + }, +/area/taipei/hangar/cargoshuttle) +"vyO" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"vyU" = ( +/turf/open/floor/whitered{ + dir = 1 + }, +/area/taipei/atrium/restaurant) +"vzG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"vAv" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"vAE" = ( +/obj/item/spacecash/c20, +/turf/open/floor/light/broken, +/area/taipei/atrium/club) +"vBq" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"vBs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + light_color = "#dae2ff"; + pixel_x = 4; + light_power = .50 + }, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"vBx" = ( +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/northwest, +/area/taipei/hangar/cargoshuttle) +"vBG" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/closed/wall/biodome, +/area/taipei/maints/north) +"vBI" = ( +/obj/structure/bed/sofa/south/white/left{ + pixel_x = 0; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium/medbay) +"vCp" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"vCu" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"vCV" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/north) +"vCW" = ( +/obj/structure/largecrate/machine/sleeper{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/maints/north) +"vDb" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/clipboard{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"vDh" = ( +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/atrium/club) +"vDl" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/taipei/maints/north) +"vDn" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/taipei/atrium/medbay) +"vDt" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"vDx" = ( +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"vEU" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/cargo) +"vFc" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/item/trash/crushed_cup{ + pixel_y = 28 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"vFI" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/pipes/vents, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"vGe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2, +/area/taipei/atrium/theatre) +"vGr" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "node" + }, +/obj/structure/machinery/power/apc/power/south, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"vHB" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/taipei/atrium) +"vHR" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"vHX" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/taipei/atrium/offices) +"vIr" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"vIE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet5_1/west, +/area/taipei/atrium/hotel) +"vIN" = ( +/obj/structure/platform, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/plating/asteroidwarning/north, +/area/taipei/hangar) +"vIZ" = ( +/obj/structure/machinery/light{ + dir = 4; + light_power = .25 + }, +/turf/open/floor/carpet11_12/west, +/area/taipei/atrium/theatre) +"vJq" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"vJY" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "node" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"vKR" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4; + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"vLg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/spacecash/c10, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"vME" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash{ + pixel_x = 15; + pixel_y = -7 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 14; + pixel_y = -2 + }, +/turf/open/floor/strata/fake_wood, +/area/taipei/cmb) +"vMO" = ( +/obj/structure/machinery/vending/cigarette{ + pixel_x = 4; + pixel_y = 14 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"vMQ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/hangar) +"vMR" = ( +/obj/structure/machinery/conveyor, +/obj/structure/plasticflaps, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"vNc" = ( +/obj/item/lightstick/red/spoke/planted, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"vNo" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.05 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light/spot, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/atrium) +"vNr" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"vNy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) +"vOH" = ( +/obj/structure/stairs, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"vPd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/atrium/bookstore) +"vPi" = ( +/obj/structure/platform/stair_cut/alt, +/obj/structure/stairs/perspective{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"vPt" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/atrium) +"vPx" = ( +/obj/structure/cargo_container/horizontal/blue/top{ + pixel_x = 16 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"vQt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"vQx" = ( +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"vQy" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"vQz" = ( +/obj/item/trash/crushed_cup, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/reactor) +"vQQ" = ( +/obj/structure/barricade/handrail/strata, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/taipei/hangar) +"vRB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/north) +"vRU" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/taipei/atrium) +"vRZ" = ( +/obj/structure/bed/chair/comfy{ + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"vSl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/taipei/atrium) +"vSF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"vSH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"vTd" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/taipei/atrium) +"vTh" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) +"vTk" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/taipei/atrium/medbay) +"vTP" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison, +/area/taipei/hangar) +"vTY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/carpet13_5/west, +/area/taipei/atrium/theatre) +"vUm" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/taipei/atrium/restaurant) +"vUH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"vVc" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"vVN" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"vVS" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth, +/obj/structure/pipes/vents/pump{ + dir = 1; + pixel_y = -6 + }, +/obj/structure/machinery/light/spot, +/obj/structure/machinery/light/spot{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/northwest, +/area/taipei/atrium) +"vWo" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/reactor) +"vXP" = ( +/obj/structure/bookcase{ + pixel_x = -3 + }, +/obj/structure/bookcase{ + pixel_x = -3; + pixel_y = 21 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"vYq" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"vYw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/south) +"vYO" = ( +/obj/structure/platform_decoration/shiva/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"vZD" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"vZK" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/sign/safety/rad_haz, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"waq" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/taipei/atrium) +"wbg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/machinery/light/double/blue{ + dir = 8; + light_color = #00008B; + pixel_x = -5; + light_power = .75 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/taipei/atrium/club) +"wbN" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 8 + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"wbS" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/crushed_cup{ + pixel_y = 6; + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"wbW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/endcap_left/west, +/area/taipei/hangar/cargoshuttle) +"wcS" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/prison, +/area/taipei/maints/north) +"wdg" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/closed/wall/almayer, +/area/taipei/maints/south) +"wdl" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"wdo" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"wdp" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/south) +"wdD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"wdP" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/taipei/cmb) +"wep" = ( +/obj/structure/machinery/disposal{ + pixel_x = 5; + pixel_y = 0 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"weL" = ( +/obj/structure/phone_base, +/turf/closed/wall/almayer/outer, +/area/taipei/reactor) +"weN" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"wfa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/maints/north) +"wfb" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 8; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/hangar) +"wft" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/south) +"wfu" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/cargo) +"wfA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/taipei/atrium/restaurant) +"wfQ" = ( +/obj/structure/cargo_container/arious/rightmid, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/west, +/area/taipei/hangar/cargoshuttle) +"wgp" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/north) +"wgD" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"wgM" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/taipei/atrium) +"wgO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/atrium) +"whp" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"whr" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 6 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/taipei/atrium/offices) +"wiw" = ( +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/obj/structure/machinery/door/window/ultra{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"wiC" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + pixel_x = 1; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"wjq" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/item/folder/red{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/folder/red{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/item/paper, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"wkc" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning, +/area/taipei/hangar) +"wks" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/obj/item/stool{ + pixel_y = 11; + pixel_x = -5 + }, +/turf/open/floor/prison/bluecorner/north, +/area/taipei/atrium/club) +"wkA" = ( +/obj/structure/phone_base{ + dir = 1 + }, +/turf/closed/wall/almayer, +/area/taipei/cargo) +"wls" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"wly" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"wlF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/maints/south) +"wml" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/taipei/atrium) +"wmr" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = 8 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = 8 + }, +/obj/structure/largecrate/random/case/double, +/obj/structure/largecrate/random/mini/chest/b{ + pixel_x = 1; + pixel_y = 17 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"wmR" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "vehicle_elevator_railing_aux" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"wnz" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/whitered{ + dir = 4 + }, +/area/taipei/atrium/restaurant) +"wnD" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"woJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"woO" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8; + light_power = .50 + }, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/reactor) +"wpE" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/east, +/area/taipei/hangar/cargoshuttle) +"wpS" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"wqj" = ( +/obj/structure/machinery/vending/security/riot, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 1 + }, +/area/taipei/cmb) +"wrq" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"wrB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge{ + dir = 5 + }, +/area/taipei/atrium/medbay) +"wsc" = ( +/turf/closed/wall/r_wall/elevator{ + dir = 9 + }, +/area/taipei/elevator/arrivals) +"wsx" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"wsJ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"wuw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet14_10/west, +/area/taipei/atrium/theatre) +"wuF" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"wvf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/prison, +/area/taipei/cargo) +"wvq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 8; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"wwD" = ( +/obj/structure/platform/kutjevo/smooth{ + luminosity = 15 + }, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"wwN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"wxB" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/prison, +/area/taipei/cargo) +"wyK" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"wyV" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/red/inner_corner{ + dir = 1 + }, +/area/taipei/atrium) +"wzr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = -10; + pixel_y = 16 + }, +/obj/item/toy/deck/uno, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"wzN" = ( +/obj/structure/catwalk, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/turf/open/floor/almayer/edge/west, +/area/taipei/hangar/cargoshuttle) +"wAj" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/taipei/atrium/theatre) +"wAm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/south) +"wAI" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/vents, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"wAL" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"wAV" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"wBf" = ( +/turf/closed/wall/r_wall/elevator{ + dir = 6 + }, +/area/taipei/elevator/departures) +"wBh" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/obj/effect/overlay/palmtree_l, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"wBC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/north) +"wBG" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"wBQ" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/item/paper_bin, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"wCc" = ( +/obj/structure/bed/chair/comfy/black, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/taipei/cmb) +"wEl" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"wEK" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = -1; + pixel_y = 9 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/taipei/atrium/offices) +"wEM" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/item/trash/crushed_cup{ + pixel_y = 12; + pixel_x = -21 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"wFN" = ( +/obj/structure/stairs/perspective{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"wGc" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/south) +"wHl" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/north) +"wIz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"wIB" = ( +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/obj/structure/window/reinforced/ultra, +/obj/structure/bed/chair/bolted{ + dir = 1 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"wJp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"wJz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"wJI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"wJV" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/elevator/departures) +"wKk" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"wLP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/taipei/atrium/medbay) +"wLW" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"wMB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/biodome, +/area/taipei/atrium/laundry) +"wNm" = ( +/obj/structure/bed/alien, +/obj/structure/bed/alien{ + pixel_x = 0; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"wOr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/taipei/atrium) +"wPC" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"wQm" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"wRI" = ( +/obj/structure/machinery/light/small{ + dir = 4; + icon_state = "bulb-burned"; + status = 3 + }, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"wRY" = ( +/obj/structure/cargo_container/ferret/left, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/west, +/area/taipei/hangar/cargoshuttle) +"wSl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge{ + dir = 8 + }, +/area/taipei/atrium) +"wSu" = ( +/turf/closed/wall/r_wall/elevator, +/area/taipei/elevator/arrivals) +"wSx" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"wSy" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/almayer, +/area/taipei/cargo) +"wTk" = ( +/turf/open/floor/whitered, +/area/taipei/atrium/restaurant) +"wUr" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredcorners2/north, +/area/taipei/atrium/theatre) +"wUA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/northwest, +/area/taipei/atrium) +"wUY" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/west, +/area/taipei/hangar/cargoshuttle) +"wVk" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"wVE" = ( +/obj/structure/window/reinforced/toughened, +/turf/closed/wall/r_wall/prison, +/area/taipei/cmb) +"wVX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"wWa" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"wWf" = ( +/obj/item/storage/briefcase/stowaway, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"wWp" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"wWt" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"wWv" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red, +/area/taipei/atrium) +"wWR" = ( +/obj/structure/machinery/light{ + dir = 4; + light_power = .25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet11_12/west, +/area/taipei/atrium/theatre) +"wXh" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/taipei/atrium/restaurant) +"wXn" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/south) +"wXY" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/gm/empty, +/area/taipei/reactor) +"wYi" = ( +/obj/structure/machinery/disposal{ + density = 0; + pixel_x = 6; + pixel_y = 16 + }, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"wYs" = ( +/obj/structure/platform/stair_cut{ + icon_state = "kutjevo_platform_sm_stair" + }, +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"wZw" = ( +/obj/item/spacecash/c10{ + pixel_y = 4; + pixel_x = 6 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"wZZ" = ( +/obj/structure/bed/sofa/vert/white/bot, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"xaa" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"xab" = ( +/obj/item/lightstick/red/spoke/planted, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"xau" = ( +/turf/open/floor/asteroidwarning, +/area/taipei/maints/north) +"xaP" = ( +/obj/structure/curtain/red, +/turf/open/floor/carpet7_3/west, +/area/taipei/atrium/theatre) +"xbd" = ( +/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/atrium/club) +"xck" = ( +/obj/structure/machinery/door/window/brigdoor/southleft, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/taipei/atrium) +"xcw" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/obj/structure/machinery/camera, +/obj/structure/pipes/vents, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"xcL" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"xds" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"xei" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo, +/area/taipei/atrium) +"xeK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/prison/bluecorner, +/area/taipei/atrium/club) +"xeN" = ( +/obj/structure/machinery/door/poddoor/almayer/locked, +/obj/structure/blocker/forcefield/human, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/north) +"xfm" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"xfS" = ( +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"xgd" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"xgO" = ( +/obj/item/stool{ + pixel_y = 8; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/prison/blue/east, +/area/taipei/atrium/club) +"xgS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/telecomms) +"xgU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"xhg" = ( +/obj/structure/machinery/light, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium/offices) +"xho" = ( +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5"; + pixel_x = -8; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"xht" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/bookstore) +"xhX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/wood_broken6, +/area/taipei/atrium/bookstore) +"xiy" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth, +/obj/structure/pipes/vents/pump{ + dir = 1; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/taipei/atrium) +"xiK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/southwest, +/area/taipei/atrium/theatre) +"xiT" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"xiV" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"xiX" = ( +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, +/obj/structure/machinery/camera{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"xjp" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/closed/wall/almayer/outer, +/area/taipei/maints/north) +"xju" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/item/tool/soap{ + pixel_x = 7; + pixel_y = -10 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"xjG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/light/broken, +/area/taipei/atrium/club) +"xjW" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"xli" = ( +/obj/structure/surface/rack{ + pixel_x = -5 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = -5 + }, +/obj/structure/surface/rack{ + pixel_x = 18 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = 18 + }, +/obj/item/reagent_container/food/snacks/kepler_crisps{ + pixel_y = 19 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"xls" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/kutjevo/colors/red/edge, +/area/taipei/cmb) +"xlJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Visitor Entrance" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/turf/open/floor/whitered{ + dir = 1 + }, +/area/taipei/atrium/restaurant) +"xmi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison, +/area/taipei/cargo) +"xno" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = -24 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = -24 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"xnI" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"xnV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/south) +"xon" = ( +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + dir = 4; + layer = 3.2; + pixel_x = -14; + pixel_y = 18 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet5_1, +/area/taipei/atrium/hotel) +"xor" = ( +/obj/structure/platform/kutjevo/smooth{ + luminosity = 15 + }, +/obj/structure/platform/kutjevo/smooth{ + light_power = 2; + light_range = 5; + light_on = 1 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/prison/chapel_carpet, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"xou" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/south) +"xpi" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"xpS" = ( +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 20; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/obj/structure/urinal{ + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"xpT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/muffin{ + pixel_x = -5 + }, +/obj/item/reagent_container/food/snacks/muffin{ + pixel_y = 10; + pixel_x = 7 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"xqM" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/taipei/hangar/cargoshuttle) +"xrc" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 8 + }, +/obj/item/stool{ + pixel_y = 11; + pixel_x = -5 + }, +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/east, +/area/taipei/atrium/club) +"xrQ" = ( +/obj/structure/surface/table, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/taipei/atrium/laundry) +"xsp" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/darkbrowncorners2/southwest, +/area/taipei/atrium/theatre) +"xsr" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/taipei/atrium) +"xsT" = ( +/obj/structure/bed/sofa/vert/white/top, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"xtJ" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -9; + pixel_y = -2 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/carpet15_15/west, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/taipei/atrium/theatre) +"xtP" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"xuF" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"xuJ" = ( +/obj/structure/sign/poster/blacklight, +/turf/closed/wall/almayer, +/area/taipei/atrium/club) +"xvJ" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = 8 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = 8 + }, +/obj/structure/largecrate/supply/generator, +/obj/structure/largecrate/random/case/small{ + pixel_x = 1; + pixel_y = 16 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"xwd" = ( +/obj/structure/machinery/iv_drip{ + pixel_x = 8; + pixel_y = 18 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium/medbay) +"xwm" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/cargo) +"xwr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/atrium/club) +"xwt" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/south) +"xwO" = ( +/obj/structure/urinal{ + pixel_y = 25 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bar, +/area/taipei/atrium/restaurant) +"xxg" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = -8 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"xxl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/taipei/elevator/departures) +"xxp" = ( +/turf/open/floor/carpet, +/area/taipei/atrium/offices) +"xxy" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/item/toy/desk/fan{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"xyb" = ( +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.05 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/sosjerky{ + pixel_y = 13; + pixel_x = 8 + }, +/obj/structure/machinery/light/spot, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/taipei/atrium) +"xys" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_y = 5; + pixel_x = -9 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"xyH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"xyS" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/hangar) +"xzb" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"xzv" = ( +/obj/structure/surface/rack{ + pixel_x = -5 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = -5 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"xzX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"xBs" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/hangar) +"xBJ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"xBP" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"xBS" = ( +/obj/structure/machinery/shower{ + dir = 8; + pixel_y = 5; + pixel_x = 2 + }, +/obj/structure/curtain/open/shower, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/cmo, +/area/taipei/atrium/hotel) +"xCf" = ( +/turf/open/floor/kutjevo/colors/red/edge, +/area/taipei/cmb) +"xCI" = ( +/obj/structure/toilet{ + pixel_y = 12 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 20; + pixel_x = -2 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 20; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/taipei/atrium/medbay) +"xDa" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/atrium/theatre) +"xDs" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"xEc" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"xEs" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = -18; + pixel_y = -4 + }, +/obj/structure/largecrate/random/barrel/true_random{ + pixel_x = -10; + pixel_y = 18 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"xEO" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"xFk" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"xFp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/north) +"xFV" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30 + }, +/turf/open/floor, +/area/taipei/atrium/laundry) +"xGD" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/taipei/atrium) +"xHb" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"xIY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"xJe" = ( +/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"xJh" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"xJn" = ( +/obj/structure/closet/crate/radiation, +/obj/effect/decal/strata_decals/grime/grime2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"xJr" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/strata/fake_wood, +/area/taipei/cmb) +"xJy" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison, +/area/taipei/maints/north) +"xJD" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium/offices) +"xJK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/taipei/elevator/arrivals) +"xJZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) +"xKx" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"xKG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning, +/area/taipei/hangar) +"xKO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/north) +"xKV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) +"xMc" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"xNf" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/taipei/maints/north) +"xOJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/darkredcorners2/north, +/area/taipei/atrium/theatre) +"xOK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"xPK" = ( +/obj/structure/machinery/door/window/ultra, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/taipei/cmb) +"xPY" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"xQG" = ( +/obj/structure/stairs/perspective{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform/stair_cut/alt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/cargo) +"xRv" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/taipei/hangar/cargoshuttle) +"xRX" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4; + dir = 4 + }, +/obj/structure/machinery/deployable, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/taipei/maints/north) +"xSO" = ( +/obj/effect/vehicle_spawner/van/decrepit, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"xSV" = ( +/obj/structure/window_frame/almayer, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"xTd" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1; + dir = 1; + pixel_y = 16 + }, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"xTm" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) +"xTD" = ( +/turf/open/floor/plating, +/area/taipei/hangar) +"xTU" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"xUc" = ( +/obj/item/clothing/accessory/medal/bronze/service{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/item/card/id/marshal{ + pixel_x = 3; + pixel_y = -4 + }, +/turf/closed/wall/r_wall/prison, +/area/taipei/cmb) +"xUi" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/structure/machinery/sleep_console{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/cyan/edge, +/area/taipei/atrium/medbay) +"xUk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8; + light_power = .50 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor) +"xUP" = ( +/obj/structure/machinery/computer/shuttle/ert/broken, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating, +/area/taipei/hangar/cargoshuttle) +"xUV" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"xVc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/south) +"xVn" = ( +/obj/structure/flora/bush/desert, +/turf/open/auto_turf/strata_grass/layer1, +/area/taipei/atrium) +"xWX" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/south) +"xXb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) +"xXs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"xXx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitered{ + dir = 8 + }, +/area/taipei/atrium/restaurant) +"xYg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"xYh" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"xYs" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/taipei/maints/south) +"xZp" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) +"xZq" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning/north, +/area/taipei/hangar) +"xZu" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"yan" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/endcap_left/west, +/area/taipei/hangar/cargoshuttle) +"yaw" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/smooth/endcap_left/east, +/area/taipei/hangar/cargoshuttle) +"yaL" = ( +/obj/structure/curtain/open/medical, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/taipei/atrium/medbay) +"yaS" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"ybv" = ( +/obj/structure/prop/dam/truck/cargo{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/north) +"ybX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidwarning, +/area/taipei/maints/north) +"yca" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/north) +"ycd" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"ydc" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"ydw" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 6; + pixel_y = -13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/prison, +/area/taipei/hangar) +"yex" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/telecomms) +"yeT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/maints/north) +"yfa" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 31 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/north) +"yfb" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"yfo" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/turf/open/floor/prison/bluecorner, +/area/taipei/atrium/club) +"yfC" = ( +/obj/structure/pipes/vents, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/maints/south) +"yfQ" = ( +/obj/structure/platform/strata/metal, +/obj/structure/machinery/line_nexter/med, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"ygF" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + pixel_x = 0; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/reactor) +"yha" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/west, +/area/taipei/hangar/cargoshuttle) +"yhw" = ( +/obj/structure/prop/invuln/joey, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) +"yhH" = ( +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"yhR" = ( +/turf/closed/wall/almayer/outer, +/area/taipei/reactor) +"yhT" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/taipei/atrium/restaurant) +"yia" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/carpet5_1/west, +/area/taipei/atrium/theatre) +"yiF" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/cargo) +"yja" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/window/reinforced/toughened, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl"; + pixel_x = -5; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/taipei/cmb) +"yjv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/edge/west, +/area/taipei/hangar/cargoshuttle) +"yjz" = ( +/obj/item/spacecash/c20, +/turf/open/floor/light{ + light_color = #00008B; + light_power = .5 + }, +/area/taipei/atrium/club) +"yjJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/taipei/cargo) +"yjZ" = ( +/obj/structure/machinery/vending/cigarette{ + pixel_x = 4; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/atrium) +"yll" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 14; + pixel_x = 8 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79; + pixel_y = 30; + pixel_x = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) +"ylO" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 8; + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/prison, +/area/taipei/maints/south) +"ylV" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + pixel_y = 13 + }, +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/auto_turf/strata_grass/layer0, +/area/taipei/atrium) +"ymc" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/machinery/light/spot{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/taipei/atrium) + +(1,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +hQZ +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(2,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(3,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(4,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(5,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(6,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(7,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(8,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(9,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(10,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(11,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(12,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(13,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(14,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +bjp +rOq +bjp +bjp +bjp +bjp +bjp +rOq +bjp +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(15,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +bjp +bjp +bjp +aoy +niN +sHM +eCy +vqo +aGe +nUE +wNm +bjp +bjp +bjp +bjp +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(16,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +bjp +pwu +aMY +qQs +jqK +nix +ueq +eWQ +gds +xPK +jqK +wIB +krM +nUE +bjp +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(17,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +bjp +wiC +aMY +nUE +nUE +nUE +nUE +vqo +nUE +krM +nUE +rRc +krM +cpE +bjp +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(18,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +lGZ +lGZ +lGZ +lGZ +lGZ +iQr +iQr +iQr +iQr +bjp +niN +jNj +xfS +nUE +hpD +aol +vqo +xiX +hpD +nUE +wiw +nUE +wNm +bjp +iQr +iQr +iQr +iQr +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(19,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +ajp +aIC +ajp +aIC +lAV +iQr +iQr +iQr +iQr +bjp +dvx +jef +vqo +dcL +oxM +juo +vqo +vqo +tjL +mRM +vqo +qQq +dvx +aoy +iQr +iQr +iQr +iQr +bzQ +uGe +itn +kuZ +itn +bzQ +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(20,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +nxq +cNY +iQa +bwS +lGZ +lGZ +lGZ +lGZ +lGZ +vqo +oxM +vqo +vqo +cCK +ukq +bxr +vqo +bxr +gbP +eDs +vqo +vqo +oxM +juo +bzQ +bzQ +bzQ +bzQ +bzQ +bEB +xxg +slb +rgP +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(21,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +hir +tjQ +dXu +aWs +bMQ +bAV +yfa +bAV +jFB +rsN +cCK +gME +bxr +lss +bzN +bzN +xZu +tAZ +rsN +aLd +rUn +sxK +eDs +rsN +fsy +nUs +toY +nUs +ruT +nUs +efS +jEM +jKm +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(22,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +aIC +aMP +ikP +aqL +aqL +lGZ +aqL +lGZ +aqL +vqo +ect +rsN +bzN +bzN +bzN +bzN +epY +bzN +bzN +rsN +bzN +bzN +cQW +vqo +uot +bzQ +uot +bzQ +uot +uot +oUf +scP +uGe +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(23,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +lGZ +lGZ +emK +aqL +tuY +tuY +tuY +tuY +tuY +vqo +jFX +rsN +yja +nam +naG +rsN +wep +jjX +aOT +lQI +xxy +bzN +pWq +vqo +tuY +tuY +tuY +tuY +tuY +uot +imr +bzQ +bzQ +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(24,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +iCF +lGZ +tuY +tuY +vqo +vqo +vqo +vqo +aDG +aOT +tBa +wjq +rsN +egt +vqo +oFA +rsN +ukC +qog +oNr +pWq +vqo +vqo +vqo +vqo +tuY +tuY +bzQ +aYp +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(25,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +cRk +aqL +tuY +vqo +vqo +nkt +qYq +vqo +rfk +sVk +dBI +bCD +oNr +bzN +xZu +tAZ +sqd +ebp +kNh +rYc +gfR +vqo +jJT +sqO +vqo +vqo +tuY +uot +qTZ +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(26,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +iCF +lGZ +tuY +vqo +wdP +aRp +hvy +jgX +aDG +mSh +tBa +ufs +hDp +rsN +dZX +bzN +rsN +kwP +qog +fVU +pWq +maN +hob +jin +poN +vqo +tuY +bzQ +frY +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(27,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +bEG +aqL +tuY +vqo +opZ +hvy +hvy +qtE +hob +bzN +rsN +bzN +bzN +bzN +rhI +rsN +rsN +rsN +bzN +bzN +xCf +sRa +hob +ssQ +naz +vqo +tuY +uot +jeK +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(28,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +jkL +lGZ +tuY +vqo +rYm +hvy +hvy +vrf +hob +bzN +cpu +rsN +vYq +rsN +bzN +jjX +vYq +rsN +vYq +bzN +xCf +vqo +wqj +epO +xls +vqo +tuY +bzQ +qXw +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(29,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +cRk +aqL +tuY +xUc +vME +sAT +aRp +jgX +hob +bzN +skD +rsN +aTq +egt +vqo +tQe +aTq +rsN +aTq +rsN +xCf +vqo +wqj +epO +nkn +vqo +tuY +uot +oZJ +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(30,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +jkL +lGZ +tuY +vqo +wCc +xJr +hvy +vqo +rfk +bzN +hTN +rsN +jXI +rsN +xZu +cIw +jXI +rsN +jXI +hLu +gfR +vqo +tnH +eWm +sGR +vqo +tuY +bzQ +qXw +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(31,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +bEG +aqL +tuY +vqo +ife +tco +vqo +vqo +rhi +bzN +rsN +bzN +bzN +bzN +epY +rsN +rsN +rsN +rsN +hLu +jhZ +vqo +vqo +faN +igI +vqo +tuY +uot +pFc +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(32,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +iCF +lGZ +tuY +vqo +vqo +vqo +vqo +seH +nbz +rsN +bzN +inE +ctJ +rsN +eOW +jjX +cBw +bzN +rsN +rsN +aLd +tey +vqo +vqo +vqo +vqo +tuY +bzQ +frY +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(33,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +dvn +aqL +tuY +vqo +gnx +slw +gUf +aDG +bzN +mOh +bJd +inE +niQ +brv +juo +aOT +vrb +udD +bJd +eWm +rsN +pWq +vhM +rsN +wWa +vqo +tuY +uot +qRT +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(34,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +mBX +mBX +mBX +mBX +mBX +mBX +mBX +sRn +uaq +uaq +vqo +fYz +jAS +vqo +gSa +udD +nqr +vqo +wVE +pTu +pJt +wVE +pJt +pTu +vqo +vqo +teY +mBC +pgd +vqo +cCJ +cac +vqo +izj +izj +jvY +lsf +lsf +lsf +lsf +lsf +lsf +lsf +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(35,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +mBX +mBX +mBX +lXI +xhg +uaq +sVC +sVC +tbW +pNl +sVC +uaq +vqo +sPn +jAS +vqo +vqo +iwQ +jdw +vqo +lCh +wSl +wSl +wSl +wSl +wSl +lqv +vqo +iwQ +jdw +vqo +vqo +tMI +xuF +vqo +izj +cAm +eOL +jdk +eDn +boW +izj +vqR +jLy +lsf +lsf +lsf +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(36,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +mBX +mBX +pKv +mWy +rKm +slH +eTy +sVC +sLg +sLg +tyo +sVC +uaq +vqo +sPn +xju +vqo +liU +wSl +wSl +gqW +pRt +kbx +kbx +kbx +kbx +kbx +vuu +gqW +efj +wSl +fLj +vqo +tMI +ogs +vqo +izj +scs +vNy +nQn +nCR +jWc +lGP +eEM +rdN +tqk +nyU +lsf +lsf +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(37,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +mBX +nQJ +qqg +pzM +qmd +pRA +eTy +ecd +oAy +wEK +nIh +bys +uaq +vqo +vqo +vqo +vqo +thQ +poI +poI +aiw +jAX +cQn +cQn +iQx +kbx +kbx +ryG +aiw +aiw +nsd +hnB +juo +juo +vqo +vqo +izj +voa +vNy +bTh +ceK +bqi +kby +ffL +ltv +gCt +rdN +dzM +lsf +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(38,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +mBX +mBX +lKR +xxp +iLx +bqv +pRA +eTy +sVC +axf +axf +ian +pXg +uaq +vqo +vqo +iBq +lTl +qMW +alc +qMW +sMK +wyV +mXX +mXX +mXX +mXX +ryp +qfi +nUc +qMW +qMW +qMW +aLB +iPR +vqo +vqo +izj +fBF +ciP +rjP +orr +vTh +kby +oYQ +hTM +ogF +chl +sVA +lsf +lsf +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(39,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +mBX +mBX +mBX +mBX +mBX +eTy +eTy +eTy +uaq +ucs +uaq +sVC +qUP +tiJ +xys +njs +uaq +uaq +kzi +hMK +bYk +gAS +oAr +oAr +lTl +bqq +iXV +rJl +wWv +tjm +iXV +xTd +aLB +oAr +oAr +jfa +jaT +jZx +rWU +izj +izj +ePR +ciP +pcj +jAa +meS +izj +svr +izj +kby +kby +izj +izj +lsf +lsf +lsf +lsf +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(40,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +mBX +tPv +tat +czx +vHX +vHX +fnB +fnB +kum +fnB +fnB +vHX +vHX +vHX +fdU +fnB +fnB +xJD +bej +kzi +kzi +cEr +oAr +jEW +oAr +oYd +alc +ole +alc +nAm +qMW +aLB +jEW +oAr +oAr +agc +xei +rfW +bXl +pwz +gPy +hOI +asb +cYh +rSP +wLP +cVT +wLP +wLP +wLP +cVT +wLP +tcq +odz +nIU +uka +lsf +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(41,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +mBX +lDa +lnZ +uaq +uDV +gxK +gxK +gxK +gxK +gxK +lih +lih +lih +lih +gWs +pXg +pXg +okm +kzi +kzi +kzi +hMK +gAS +oAr +oAr +jEW +jEW +dNx +uql +nDR +oAr +jEW +jEW +jEW +kRz +rYl +iLz +pOj +xei +qJb +mai +bqi +tyv +blm +oYQ +bnV +vDn +ssc +prI +vTk +hDS +hTM +kmM +izj +pbP +coJ +lsf +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(42,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pjr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +mBX +bZw +lnZ +uaq +vMO +sVC +ubP +oqb +qhD +cyC +ubP +oqb +qhD +eEo +jNe +sVC +pXg +oYS +kzi +kzi +bej +ucZ +eKU +jEW +jEW +jEW +sXt +lCF +dvs +jeg +xnI +oAr +jEW +jEW +mpi +kRV +vSl +mTi +bXl +gCt +sdS +wrB +nCN +izj +upF +vox +jes +izj +upF +vox +yaL +izj +atN +izj +xCI +szG +lsf +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(43,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +mBX +vaa +hDf +uaq +ofP +bys +gxp +koW +whr +ewg +gxp +koW +aus +ewg +cuq +cKu +uaq +uaq +bej +bej +bej +cEr +eOl +jEW +jEW +jEW +jcg +oOP +vfm +oOP +bth +jEW +oAr +oAr +jEW +iPR +rfW +bXl +dhc +qgQ +izj +vBI +snK +izj +xwd +gCt +dBp +izj +shc +gCt +xUi +uuz +jvY +izj +sjG +lxq +lsf +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(44,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +mBX +mBX +mBX +mBX +tsy +fvi +sVv +csP +mFC +jCt +sVv +csP +jqV +lzj +sVC +sVC +xJD +kzi +kzi +rWn +bFK +lCU +jEW +jEW +jEW +jEW +lTl +fXj +tfp +hzr +ulA +jEW +oAr +oAr +oAr +gMD +igp +iHD +bXl +rfW +nug +uMA +cwI +izj +ten +fhU +mAV +izj +ten +qRc +dla +izj +ezz +lsf +lsf +bAK +lsf +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(45,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pjr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +mBX +pNl +uaq +uaq +uaq +uaq +uaq +uaq +uaq +uaq +uaq +uaq +uaq +uaq +cpS +bFK +lCU +oAr +jEW +jEW +oAr +jEW +jEW +oAr +lTl +qMW +ulA +jEW +oAr +oAr +jEW +jEW +oAr +jEW +mpi +igp +igp +izj +izj +izj +izj +izj +izj +izj +izj +izj +izj +izj +izj +jvY +lsf +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(46,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +ltx +ltx +ltx +ltx +ltx +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +uZU +lGZ +lGZ +lGZ +lGZ +lGZ +lGZ +lGZ +pPz +pPz +pPz +pPz +pPz +pZD +oAr +oAr +jEW +jEW +oAr +oAr +oAr +jEW +jEW +oAr +jEW +jEW +eOl +oAr +jEW +oAr +jEW +jEW +jEW +jEW +jEW +sLT +pPz +pPz +pPz +pPz +pPz +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +qWl +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(47,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +dPy +dPy +dPy +dPy +ltx +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +kjv +jVD +scR +pdD +pdD +pdD +pdD +lBe +pPz +eCz +eds +gJg +sXt +edm +nDR +jEW +jEW +sXt +pCs +nDR +jEW +oAr +oAr +oAr +jEW +jEW +jEW +jEW +jEW +sXt +edm +mFy +jEW +jEW +sXt +edm +mFy +hHo +kuy +pPz +pPz +scR +pdD +pdD +pdD +pdD +lBe +nCx +xJh +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(48,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +dPy +dPy +dPy +dPy +ltx +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +tRV +gvH +aCs +hnj +cwG +cwG +nrh +tmq +cgV +kzi +kzi +aqj +iOX +jhL +dlv +iQN +iQN +eNU +rZo +ogl +jEW +jEW +jEW +jEW +eOl +eOl +jEW +jEW +jEW +euI +jhL +xsT +iQN +iQN +avn +fqO +waq +kuy +bej +bej +pPz +aCs +xxl +cwG +cwG +rmf +tmq +bbQ +dTd +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(49,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +dPy +dPy +dPy +dPy +ltx +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vJY +gvH +quS +wJV +ajD +iWH +krj +pho +hCE +nik +ctt +bIf +gSl +gIS +ehn +ctt +ctt +vHB +gIS +ehn +iHm +jEW +jEW +jEW +jEW +jEW +jEW +jEW +sFZ +gSl +rZT +ehn +bIf +bIf +vHB +gIS +ehn +bIf +nik +nik +hCE +oyR +wJV +ajD +mGh +rxL +kEV +bbQ +vGr +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(50,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +dPy +dPy +dPy +dPy +ltx +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +cBB +gvH +hON +tns +aWx +onB +rxL +hON +oOP +pim +rmW +rVd +pim +pim +pim +rmW +rmW +pim +rVd +pim +cqI +gJg +jEW +jEW +eOl +eOl +jEW +sFZ +wUA +pim +pim +rmW +pim +pim +rVd +rVd +rVd +rVd +pim +rmW +oOP +qUG +tns +onB +onB +krj +hON +bbQ +xJh +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(51,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +dPy +dPy +dPy +dPy +ltx +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +cBB +gvH +hON +wJV +onB +aWx +krj +hON +oOP +rVd +pim +pim +pim +rmW +pim +pim +pim +pim +rmW +pim +rBh +civ +jEW +jEW +jEW +jEW +jEW +olh +ooB +pim +pim +pim +pim +pim +pim +pim +rmW +rVd +rVd +rVd +glQ +hON +tns +onB +onB +rxL +hON +bbQ +xJh +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(52,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +ltx +ltx +nxk +ltx +ltx +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +kjv +gvH +hON +tns +ajD +mGh +rxL +hON +oOP +aMW +lAS +lAS +pFZ +ymc +bdi +aMW +aMW +pFZ +hlk +bdi +ipj +jEW +jEW +jEW +jEW +jEW +jEW +oAr +leV +uCn +ymc +bdi +lAS +aMW +uCn +ymc +daB +lAS +lAS +lAS +oOP +qUG +tns +ajD +dxd +aim +hON +bbQ +xJh +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(53,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +tPK +iQr +iQr +iQr +iQr +iQr +iQr +tkR +tkR +tkR +tkR +tkR +tkR +tkR +tkR +tkR +ffX +wJp +wJp +wJp +bcJ +tkR +tkR +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +nTf +moD +aCs +sGD +ekq +ekq +uHy +tmq +oEd +bej +bej +oPv +wgM +xVn +dlv +iQN +iQN +eNU +aRc +ogl +jEW +jEW +jEW +jEW +jEW +jEW +oAr +jEW +oAr +euI +vJq +dlv +iQN +iQN +eNU +aRc +lxO +dGa +bej +bej +oEd +aCs +erc +qzs +qzs +uHy +tmq +rZm +dTd +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(54,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +tPK +iQr +iQr +iQr +iQr +tkR +tkR +tkR +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +bkG +acu +hVi +acu +bfm +xUk +wJp +tkR +tkR +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +kjv +gvH +pCL +pdD +pdD +pdD +pdD +wBf +pPz +pPz +rBh +ipj +oYd +dVu +ulA +eOl +jEW +lTl +rij +aLB +jEW +oAr +jEW +jEW +jEW +jEW +jEW +eOl +jEW +oYd +rij +aLB +jEW +eOl +lTl +rij +ulA +olh +dGa +pPz +pPz +pCL +pdD +pdD +pdD +pdD +wBf +bbQ +xJh +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(55,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +tkR +tkR +tkR +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +sPB +lxH +lxH +jem +hVi +hVi +wJp +bfm +tkR +tkR +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +aJo +lGZ +lGZ +lGZ +lGZ +lGZ +lGZ +lGZ +upq +upq +upq +upq +upq +pZD +jEW +jEW +jEW +jEW +eOl +oAr +oAr +jEW +oAr +jEW +jEW +jEW +jEW +jEW +jEW +jEW +oAr +jEW +jEW +jEW +jEW +sLT +pPz +pPz +pPz +pPz +pPz +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +qWl +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(56,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +tkR +tkR +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +lfN +wXY +acu +vzG +wJp +tkR +tkR +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +hcq +aqL +lGZ +aqL +aqL +lGZ +aqL +aqL +lGZ +aqL +aqL +lGZ +lQO +ctt +ctt +ctt +ctt +ctt +ctt +gJg +oAr +oAr +jEW +sXt +uql +nDR +eOl +jEW +jEW +sFZ +bIf +ctt +ctt +ctt +bIf +ctt +mDX +bzQ +uot +iDW +qMO +iDW +uot +bzQ +uot +uot +bzQ +uot +kfg +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(57,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +tkR +tkR +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pMK +jem +hVi +wJp +wJp +tkR +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +duY +lGZ +tlS +giM +dvO +xBP +eQf +aNh +htJ +iLW +anV +izb +kgJ +fph +pRS +fph +fph +fph +iuB +aqj +gJg +jEW +sXt +rSw +tfp +cKG +mFy +jEW +tWa +wUA +nUz +fph +fph +fph +pRS +pRS +kpg +fOo +tuM +nRA +vku +tFe +vim +qGU +tFe +vCp +rQp +wft +dvy +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(58,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +tkR +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +egf +mMG +sPB +jem +wJp +kHO +tkR +tkR +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +lRT +aqL +hrp +vQx +uvp +wuF +cme +vQx +jgo +qmz +qmz +xSV +lQO +dwD +ijT +ijT +ijT +tai +rhb +mOW +lNB +eOl +kgc +oOP +lwV +glQ +bth +jEW +mOW +lNB +scZ +tai +ijT +ijT +dwD +dwD +gPK +czT +olm +olm +csB +vim +jbQ +lFH +jbQ +gpl +lEC +uot +iDU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(59,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +tkR +tkR +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +qZd +pOK +bkG +acu +vzG +bcJ +tkR +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +umj +lGZ +wuF +vQx +xno +wuF +dSv +vQx +hMB +fft +hpZ +ssE +vMR +pRS +pRS +pRS +pRS +pRS +rwz +dnG +ipj +jEW +oYd +eZk +tfp +hzr +aLB +nZZ +fcp +ooB +mRO +pRS +pRS +pRS +fph +fph +kpg +fOo +oBV +oBV +wXn +fnG +fnG +mBI +vim +dtY +jvg +bzQ +dvy +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(60,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +bGR +dEt +feF +pOK +pOK +rgI +rHV +lLn +luj +jem +wJp +wJp +tkR +yhR +yhR +yhR +yhR +yhR +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vCu +aqL +oeU +aNh +vQx +wuF +vQx +vQx +wuF +vQx +aNh +nLH +upq +aMW +aMW +aMW +aMW +aMW +aMW +ipj +jEW +jEW +jEW +oYd +qMW +ulA +jEW +oAr +jEW +leV +lAS +lAS +lAS +lAS +lAS +lAS +mDX +oLD +jbQ +jbQ +lEC +jbQ +jbQ +rQp +fnG +jbQ +rQp +uot +iDU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(61,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pMJ +pOK +pMJ +pOK +pOK +mfT +dem +pOK +pOK +bkG +nUg +vzG +yhR +yhR +sLp +lUO +fvv +yhR +yhR +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +fRG +lGZ +yhw +cMc +vQx +aRP +cMc +aNh +vQx +knO +vQx +nLu +vBG +oAr +oAr +jEW +jEW +jEW +jEW +jEW +jEW +oAr +jEW +eOl +jEW +jEW +jEW +jEW +eOl +jEW +jEW +oAr +jEW +jEW +oAr +oAr +mDX +fDt +cAp +jbQ +jbQ +cAp +jbQ +nsj +cAp +jbQ +fnG +ukM +sPt +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(62,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +tkR +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +hfD +pOK +pOK +bkG +vIr +vcm +weL +vfR +ehP +okU +kYI +kMk +yhR +yhR +yhR +yhR +yhR +hrv +hrv +lGZ +lGZ +lGZ +lAV +lGZ +lGZ +lGZ +lGZ +lGZ +lAV +lAV +lAV +lAV +lAV +lAV +lGZ +lGZ +lGZ +lGZ +rON +aqL +lGZ +vQx +aNh +lAV +vQx +vQx +lGZ +vQx +vQx +rBE +aqL +lid +oAr +jEW +jEW +jEW +oAr +eOl +oAr +jEW +jEW +eOl +jEW +oAr +jEW +jEW +oAr +oAr +oAr +oAr +oAr +jEW +jEW +kPG +iDW +dzd +jbQ +jbQ +qMO +jbQ +jbQ +qMO +mxT +jbQ +qMO +uot +sQC +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +rEP +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(63,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +egf +mMG +pOK +pOK +sPB +jem +itw +pxr +ntC +kYI +vrF +fVs +nrm +kWJ +prM +woO +fPY +fPY +vZK +tGK +yeT +bFJ +bFJ +rdf +bFJ +sjh +kOX +ieT +bFJ +kOX +jZZ +sjh +nPn +jZZ +bFJ +ezN +dOO +rdf +kOX +ieT +bFJ +kOX +dOO +bFJ +kOX +ieT +rdf +kOX +ieT +bFJ +kOX +qkf +nZZ +eOl +jEW +hHo +ctt +nik +nik +jVM +jUZ +jUZ +sFZ +ctt +gJg +bzw +bzw +sFZ +ctt +ctt +ctt +iHm +jEW +nZZ +eOl +gkT +liW +rqE +mpX +mhE +kVc +vim +qtT +laO +mpX +mhE +kVc +mpX +xgd +lyg +hNt +xgd +nGI +lYR +gkT +xyH +mvh +mpX +mpX +xyH +mvh +mpX +mpX +mpX +hNt +hNt +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(64,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +clj +dCp +nLW +nLW +hRn +mrU +pOK +pOK +pOK +pOK +mMG +pOK +pOK +pOK +bkG +cGF +cHI +bwN +ceo +ehP +vWo +kYI +ocv +cBi +vzG +wJp +wJp +tau +hKJ +gje +vUH +vQx +vQx +aNh +vQx +wuF +vQx +aNh +xBP +aNh +aNh +xBP +aNh +aNh +wuF +aNh +aNh +xBP +vUH +vUH +wuF +aNh +vQx +xBP +vQx +aNh +xBP +vUH +pIY +xBP +wWp +nZZ +jEW +sFZ +omo +pim +bej +kzi +wgO +bOH +jEW +vyO +kzi +wgO +bOH +nZZ +smE +bej +kzi +pim +cqI +gJg +eOl +jEW +jOn +lEC +jbQ +jbQ +lEC +jbQ +jbQ +lEC +jbQ +jbQ +lEC +hbZ +rBv +rRi +rBv +rBv +hDa +rBv +rBv +jOn +wnD +hbZ +rBv +rBv +rOH +rBv +hbZ +hbZ +rBv +hbZ +rrU +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(65,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +clj +clj +cjq +qXz +nLW +dwY +qan +eZv +mCK +sBx +vwX +iGG +lLn +lLn +bkG +itw +cHI +mlF +frf +ehP +dcV +nrm +kWJ +dxk +dxk +cRg +uGQ +xeN +eeF +blu +vUH +bel +aZk +reD +heo +awt +oOp +oOp +xNf +oOp +oOp +fPH +oOp +oOp +xNf +oOp +oOp +fPH +oOp +heo +awt +oOp +oOp +fPH +oOp +heo +awt +iaq +iaq +kAA +lrH +nZZ +eOl +gsM +pim +pim +rBh +rjX +vdI +lKe +nZn +soA +rjX +vdI +lKe +aOY +soA +rjX +dGa +rVd +rVd +lNB +nZZ +eOl +gkT +vNr +lvH +lvH +qYY +lvH +lvH +mEH +lvH +nTK +qYY +lvH +lvH +mEH +lvH +nTK +hYn +fcj +xnV +gkT +klL +hTU +nTK +nTK +rRY +ivC +xnV +kwc +rBv +lHv +dqo +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(66,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +clj +dCp +gua +fAG +gua +ans +pbt +tTn +tVc +pOK +pOK +pOK +pOK +pOK +bkG +itw +cHI +kgq +njf +ehP +ogZ +nrm +kWJ +bfm +wJp +wJp +wJp +xeN +blu +wBC +vQx +jOE +bNd +gOS +pmM +wyK +oPH +oPH +fMR +cdr +cdr +aMD +cdr +oPH +fqy +oPH +oPH +qHa +oqi +qQU +hMF +oqi +oqi +cWc +mRP +mRP +cWc +mRP +mRP +cWc +qXg +lid +oAr +mOW +kzi +oPv +vdI +jQT +alc +ulA +lTl +qMW +qMW +qMW +ulA +oYd +alc +bqq +lVk +dGa +kzi +wgO +oAr +ouS +qjJ +oVF +bzW +bzW +jHB +bzW +bzW +jHB +bzW +bzW +jHB +aQN +aQN +jHB +aQN +aQN +oVF +aQN +aQN +uot +bzQ +hum +hum +hum +bzQ +kZe +uot +tLl +hbZ +tLK +rrU +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(67,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +dXb +dXb +gua +fAG +gua +ans +cGq +bZz +gtV +tDQ +tDQ +tDQ +tDQ +tDQ +sen +itw +cHI +kgq +njf +ehP +ogZ +kYI +kWJ +bfm +bfm +bfm +itO +xeN +ukr +yeT +aNh +jOE +doY +hOD +bFq +bCv +aum +fve +bCv +aum +wWt +knc +jeQ +jGS +ede +uAn +ycd +wgp +nQk +sYW +eba +fTg +xKx +eba +nRE +xKx +ivI +fTg +xKx +bAV +qsk +jEW +oAr +gsM +tee +beN +jQT +ulA +jEW +jEW +oAr +oAr +jEW +jEW +jEW +jEW +eOl +oYd +lkh +pvk +kzi +wgO +jEW +oAr +hib +pMR +xMc +flt +pMR +xMc +ewl +akB +xMc +flt +bZd +rDH +hdS +mgv +trs +qAG +pYh +xfm +hDg +oJA +nUs +qYe +wAV +wAV +wAV +mwy +uot +rrU +rBv +gOA +hbZ +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(68,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +dXb +lXo +cjq +qXz +nLW +rms +fbc +nkR +pOK +egf +hfD +kqo +pOK +pOK +bkG +cGF +cHI +equ +njf +ehP +sCY +kYI +kWJ +rqY +rqY +rqY +rqY +eEi +hKJ +sao +aNh +jOE +amB +foW +wfa +lAV +aqL +aqL +lGZ +aqL +rzW +lAV +aqL +wfa +lAV +wfa +aqL +bJt +pSa +aqL +lGZ +aqL +aqL +lGZ +aqL +aqL +lGZ +aqL +aqL +lGZ +uwa +eOl +jEW +leV +pqY +vdI +bth +jEW +jEW +eOl +jEW +eOl +eOl +eOl +eOl +jEW +jEW +jEW +euI +vRU +pqY +civ +jEW +jEW +ouu +bzQ +bzQ +uot +bzQ +bzQ +uot +bzQ +bzQ +uot +bzQ +bzQ +uot +bzQ +bzQ +uot +bzQ +bzQ +uot +uot +xwt +iaN +slb +yfC +uGe +dbC +vOH +rrU +dqo +rBv +rrU +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(69,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +dXb +dXb +nLW +nLW +hRn +nbW +pOK +pOK +pOK +pOK +mMG +pOK +pOK +pOK +bkG +cGF +cHI +rTe +ygF +ehP +lNr +kYI +kWJ +mge +foU +qMR +aeB +eEi +jrf +sJr +aNh +jrf +nOk +aCu +aqL +beh +beh +beh +beh +aqL +lmv +qxw +qxw +qxw +qxw +qxw +qxw +qxw +wXh +qxw +qxw +qxw +qxw +ryI +ryI +ryI +ryI +ryI +ryI +ryI +ryI +aRX +jEW +lpT +oYd +lxB +ulA +jEW +jEW +jEW +ewP +oLV +oLV +xsr +qud +jEW +jEW +jEW +ayD +iiw +jEW +lpT +jEW +jEW +hib +yhH +jCm +kcB +mHE +eMt +kcB +rpF +jCm +xTm +uyN +eMt +kcB +oCM +eMt +xPY +oCM +eMt +xPY +hib +nUs +mpN +knG +rdp +uGe +nvS +mPg +rrU +hbZ +sFS +hbZ +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(70,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +egf +mMG +pOK +pOK +awf +rIm +itw +cHI +vDb +nrm +eys +qxG +kYI +kWJ +mdJ +kRG +mdJ +tvW +vZK +yeT +lov +vQx +jOE +amB +xDs +aqL +beh +beh +pQV +beh +aqL +lmv +qxw +qxw +cmh +qen +cuo +wEl +ehu +sZf +lEq +fuw +bkU +qxw +ryI +ryI +cON +xht +vXP +hIg +ryI +ryI +yjZ +oAr +lpT +sXt +qkb +nDR +jEW +oAr +sIN +vVS +pps +nIY +vdg +ltb +qud +jEW +jEW +sXt +wVk +jEW +lpT +jEW +mYx +uot +uot +uot +uot +loN +uot +uot +uot +uot +iGP +uot +uot +uot +uot +uot +uot +uot +uot +uot +iDW +dCL +dbC +uVl +uGe +uGe +nvS +mPg +rrU +hbZ +hbZ +rrU +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(71,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +tkR +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +qZd +pOK +pOK +bkG +xJn +lWe +yhR +sHa +ehP +ctE +kYI +gqz +yhR +yhR +yhR +yhR +yhR +hrv +htk +wBC +vQx +jOE +nOk +xDs +aqL +beh +wfa +wfa +aqL +wfa +aCu +rMu +kCX +eNI +hsO +eNI +hsO +eNI +wfA +hsO +hsO +eNI +iKI +ryI +hIA +nSn +xho +kBV +hrQ +aAh +fPx +oAr +oAr +tWa +vvR +qKn +ouQ +jEW +jEW +dAe +iaj +tGp +uxl +ogJ +clT +dxP +jEW +oAr +euI +een +eqY +iHm +eOl +jEW +ttc +ttc +qjd +qjd +tzy +ttc +ttc +sjQ +sjQ +kmf +sjQ +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +uwC +kQD +bEU +kQD +kQD +kQD +aJO +riX +tLl +hbZ +hnU +bzQ +bzQ +rEP +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(72,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +bGR +dEt +feF +pOK +pOK +rgI +rHV +lLn +lLn +bkG +dJx +vzG +yhR +yhR +lZU +qjY +kYI +yhR +yhR +tuY +tuY +aqL +aqL +aqL +lGZ +vCV +alr +jEe +qSj +sSF +uEA +beh +wfa +iez +iFi +aIC +aCu +ccM +qDe +hsO +hsO +ago +jKz +qCK +meD +kPa +lzK +hsO +iGO +ryI +fih +nDZ +xhX +pIB +ujM +gtr +jku +eOl +jEW +wOr +dFn +xyb +jKu +iQN +wZZ +dAe +nbs +vif +aBq +hCN +nIY +dxP +pUQ +lpz +avn +oje +pNb +wgO +jEW +oAr +ttc +ttc +rtt +rtt +hDM +cEB +ttc +gbt +oHu +yia +sjQ +sjQ +sjQ +sjQ +sjQ +sjQ +sjQ +sjQ +sjQ +sjQ +uot +sAI +uot +doI +bzQ +wLW +enm +xou +lRl +ujx +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(73,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pMJ +pOK +pMJ +pOK +pOK +mfT +dem +pOK +awf +rIm +wJp +vzG +tkR +yhR +sXD +sGs +sXD +yhR +tkR +tkR +tkR +tkR +lGj +aIC +cPk +vRB +vQx +jrf +amB +aCu +aqL +beh +aqL +vwB +jEX +xpi +yca +rMu +aWS +hsO +eNI +jKz +jKz +jKz +nTX +kPa +eNI +hsO +tbG +ryI +rwb +cxI +hIg +gtr +hrQ +hrQ +bPx +eOl +jEW +pPO +xJZ +gak +ouQ +jEW +jEW +mmU +vdg +qTx +ahH +oTP +lLK +dxP +oAr +oAr +euI +fMW +cyM +wgO +oAr +kFV +ttc +ejY +cEB +jIA +hDM +utK +aKV +gbt +lgm +gFL +sUP +bHx +dFK +mgb +nkj +qTC +nkj +nwf +bBm +xaP +xYs +gDd +uot +doI +uot +fzp +qgs +rrU +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(74,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +tkR +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +hfD +pOK +bkG +rOz +wJp +opt +yhR +cqH +nrm +kYI +kYI +rHy +rHy +rHy +kYI +sSo +aIC +pzV +eVv +vRB +vQx +jOE +amB +lmv +aqL +beh +aqL +utX +uRA +xzX +ajp +qxw +tbd +eNI +eNI +eNI +eNI +eNI +hsO +eNI +eNI +eNI +urP +ryI +jav +qXE +oSu +nRF +iYm +vor +fPx +jEW +oAr +iwk +vwa +fsI +juE +oAr +oAr +mmU +fhB +tuV +mhA +ahH +hCN +dxP +oAr +oAr +euI +tea +ccY +orR +oAr +jEW +eCH +foN +cEB +ryw +kRY +gHA +cEB +pic +aej +uoV +sjQ +may +gHz +reM +sad +lgD +sad +reM +pOp +brs +uot +iXI +uot +doI +uot +omJ +qgs +rrU +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(75,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +egf +mMG +awf +rIm +wJp +pQW +tkR +yhR +tkR +kYI +tqI +kYI +ndq +ndq +ndq +tqI +sSo +aIC +pzV +eVv +vRB +aNh +jrf +amB +lmv +aqL +beh +aqL +foW +nxq +baj +nxq +rMu +rMu +lmR +aip +aip +yhT +qbq +yaS +mJe +sZf +tjb +urP +ryI +vPd +anz +hrQ +hrQ +hvF +ryI +ryI +fOS +eOl +mOW +wbS +vNo +jKu +iQN +mDl +ici +eAp +fjx +ahH +fWR +pwM +vPt +dWq +iQN +eNU +mRh +dFn +wgO +jEW +jEW +bBX +vcZ +cEB +cEB +hDM +vcZ +vcZ +gbt +kJO +kuT +sjQ +aTY +rkX +aTY +jAd +aTY +hlR +aTY +sFd +brs +iDW +iXI +uot +doI +uot +omJ +qgs +rrU +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(76,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +tkR +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +kzK +rIm +wJp +wJp +wJp +tkR +iQr +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +knZ +xJy +eYD +lGZ +vCV +bje +hGe +qSj +xaa +uEA +beh +aqL +aCu +qxw +rMu +qxw +qxw +eMb +tOa +wnz +wnz +wnz +qxw +mtu +mtu +aRZ +qrU +epx +ryI +ryI +ryI +vPd +emS +emS +ryI +tNG +jEW +oAr +mOW +gqY +gak +juE +oAr +jEW +dAe +vdg +eUM +oIc +wbN +mGo +ekt +jEW +jEW +lpk +nTD +lIh +wgO +jEW +jEW +bBX +cEn +vcZ +utK +hDM +cIP +wSx +dSF +jVt +iYe +sjQ +utB +hlR +aTY +hlR +aTY +hlR +aTY +sFd +brs +iDW +sAI +uot +doI +bzQ +wLW +enm +edf +qII +ujx +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(77,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +tkR +tkR +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +awf +jvB +uJs +bfm +bfm +wJp +tkR +tkR +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +uUW +tjC +eVv +wBC +vQx +jrf +amB +aCu +aqL +beh +aqL +xBJ +rMu +xwO +pyb +qxw +qxw +ugA +pGL +dGS +gBW +vBq +pyb +pWj +foy +pWM +foy +pWj +kxK +tIV +gWM +bFN +fBH +rMu +mbF +oAr +oAr +pPO +bvC +fsI +juE +jEW +jEW +aWF +nIY +sIl +iQS +kKt +eAp +dxP +jEW +jEW +lpk +mGR +jiy +wgO +oAr +jEW +mbc +cEB +vcZ +ryw +hDM +xli +sIV +gbt +wuw +mMa +sjQ +aTY +mGf +aTY +hlR +fNo +hlR +aTY +sFd +brs +uot +dbC +uot +doI +uot +fzp +qgs +rrU +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(78,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +tkR +tkR +tkR +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +pOK +awf +fRl +fRl +rIm +bfm +wJp +vzG +wJp +tkR +tkR +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +uHi +pzV +eVv +ybv +vQx +jrf +amB +lmv +aqL +beh +aqL +tpA +qxw +afv +pyb +dnI +dRT +wsJ +pWj +pyb +dyr +pyb +dRT +pyb +pWj +pyb +pWj +pyb +dyr +foy +pWj +evE +hpF +gzS +ihO +jEW +jEW +mOW +ePC +vNo +lGV +iQN +wZZ +hvr +pZV +jJr +mmO +rVb +vdg +dxP +dWq +iQN +eNU +oje +dFn +wgO +oAr +jEW +mOz +cEB +vcZ +boK +hDM +tBS +vcZ +qYb +jVt +kuT +sjQ +aTY +pku +aTY +hlR +fNo +jEJ +aTY +sFd +brs +uot +jSa +uot +doI +uot +omJ +qgs +rrU +lQJ +lHv +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +tuY +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(79,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +tkR +tkR +tkR +tkR +gEA +pOK +pOK +pOK +pOK +pOK +pOK +bkG +bfm +bfm +bfm +wJp +dJX +wJp +tkR +tkR +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +nzd +pzV +eVv +xau +vQx +jrf +amB +lmv +aqL +beh +aqL +rEN +rMu +dOP +fEF +uQW +ihD +ogN +iid +iXE +rsS +rsS +rsS +rsS +rsS +rsS +iBU +iBU +xXx +oZS +foy +bur +fHj +okZ +dJA +jEW +jEW +pPO +gqY +gak +juE +jEW +oAr +dAe +rIO +nhs +uCk +wBh +vdg +dxP +oAr +oAr +euI +nTD +cyM +wgO +jEW +jEW +bBX +iYA +cEB +ciT +hDM +ljh +kas +gbt +kJO +kuT +sjQ +aTY +jEJ +aTY +jEJ +fNo +jEJ +aTY +akC +brs +uot +iaN +uot +doI +uot +nvS +oup +rrU +lQJ +lHv +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +tuY +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(80,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +tkR +tkR +tkR +tkR +tkR +tkR +tkR +tkR +tkR +unn +vzG +vzG +wJp +tkR +tkR +tkR +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +lAV +lGZ +lGZ +cBl +alr +oDH +qSj +sSF +uEA +beh +aqL +mdh +ccM +dOP +pdt +qxw +sGq +nvz +lPp +qxw +svl +onZ +sph +svl +svl +hdb +svl +svl +qxw +wTk +pWj +vVN +fHj +rFY +jeA +jEW +oAr +mOW +vwa +fsI +sYj +eOl +jEW +dAe +tzW +ahH +nhs +fdE +ewN +dxP +oAr +oAr +euI +tea +jiy +beN +oAr +jEW +tuF +vcZ +vcZ +kAP +moZ +xzv +cEB +qgh +jVt +iYe +sjQ +aTY +pvw +aTY +hlR +aaJ +bbH +aTY +sFd +brs +uot +afc +uot +doI +bzQ +wKk +wdp +xou +qII +ujx +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +tuY +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(81,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +tkR +tkR +tkR +eWE +tkR +tkR +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +vQx +jOE +amB +foW +aqL +beh +wfa +rfT +rMu +qpi +jHf +qxw +aKU +vUm +gXu +pyb +pyb +wdl +pyb +pyb +pyb +pyb +wdl +pyb +svl +ljN +pyb +pWj +lIl +faQ +qxw +mIv +jEW +mOW +kPL +vNo +jKu +iQN +wZZ +ici +tuV +ahH +iXm +usJ +olG +tni +dWq +iQN +eNU +uoF +ctU +beN +oAr +jEW +aLy +vcZ +vcZ +vcZ +hDM +vcZ +cEB +gbt +kJO +kuT +sjQ +aTY +jEJ +aTY +hlR +aTY +rkq +aTY +pza +brs +uot +omI +uot +doI +uot +fzp +cqR +rrU +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(82,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +fSv +fSv +fSv +ipQ +izW +fSv +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +vQx +jrf +amB +lmv +aqL +beh +wfa +hTX +qHh +pyb +edd +qxw +niX +foy +lPp +uHN +pdt +rMu +itu +iTm +tUB +eZX +qxw +tjI +svl +oIt +dRT +pyb +pWj +pyb +dXc +jEW +jEW +mOW +gqY +gak +juE +oAr +jEW +dAe +mRR +iXm +kBE +nIY +vdg +dxP +oAr +oAr +euI +fMW +lIh +beN +jEW +jEW +bBX +cEB +iwc +sBT +xEc +sBT +qSI +dGp +vuz +kuT +sjQ +kWp +rKz +srp +sad +kWp +rKz +kWp +tem +brs +uot +iaN +uot +doI +uot +nvS +qgs +rrU +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +tuY +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(83,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +fSv +blQ +atd +kYI +msJ +fSv +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +vQx +jOE +nOk +lmv +aqL +beh +wfa +mdh +qxw +ccM +ccM +qxw +dJw +nNw +lPp +uHN +pyb +eCv +pyb +pGL +pGL +pGL +eCv +pyb +svl +oIt +foy +pWj +pGL +pWj +ejA +jEW +jEW +mOW +aGJ +fsI +juE +jEW +eOl +dAe +hBQ +fxA +nvI +vdg +vDt +dxP +oAr +oAr +euI +tea +vbu +beN +oAr +kFV +ttc +wdD +vcZ +vcZ +xKV +cEB +voR +dGp +kJO +ixH +sUP +pqL +wWR +spC +wWR +qTC +wWR +qTC +vwH +rrE +xYs +tei +uot +doI +uot +omJ +qgs +rrU +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +tuY +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(84,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +fSv +fSv +fQu +iGJ +omW +fSv +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +cBl +alr +qCY +hgl +xaa +uEA +beh +aqL +nvh +rMu +oiM +sfA +rMu +pLS +hdb +vyU +qxw +epz +uHN +uHN +uHN +bUh +svl +svl +onZ +qxw +wTk +pWj +pyb +pWj +woJ +qxw +jop +jEW +gsM +kPL +vNo +jKu +iQN +mDl +mmU +vdg +sOg +nIY +xTU +lmm +dxP +dWq +iQN +eNU +oje +dFn +beN +oAr +oAr +ttc +ttc +qqj +cEB +jeM +xiV +gbt +gbt +wuw +try +sjQ +tnX +tnX +sjQ +sjQ +sjQ +sjQ +sjQ +sjQ +sjQ +uot +sAI +uot +doI +bzQ +wLW +wdp +edf +qII +fWd +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +tuY +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(85,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +flG +byS +aKr +cfN +fSv +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jrf +nOk +aCu +aqL +beh +aqL +qBP +rMu +qpi +jHf +ccM +thq +nRq +dDy +cPC +fhQ +fhQ +fhQ +cHC +cHC +fhQ +cHC +cHC +rCL +ceO +foy +pWj +foy +dRT +xlJ +oAr +jEW +gsM +xJZ +gak +juE +oAr +jEW +qxh +nIY +mSG +ayj +lIN +nhs +dxP +oAr +oAr +euI +nTD +lIh +beN +oAr +oAr +ttc +ttc +ttc +ttc +ttc +ttc +gbt +gbt +wuw +ixH +sUP +bHx +dFK +mgb +dFK +mgb +nkj +mgb +pwN +rZr +xYs +tei +uot +doI +uot +ljU +qgs +rrU +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(86,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +fSv +fSv +fSv +itI +fSv +fSv +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jOE +nOk +lmv +aqL +beh +aqL +mdh +qxw +dOP +pyb +dnI +dRT +kFL +dRT +foy +pWj +foy +pWj +pyb +dRT +foy +pWj +pGL +pWj +pyb +dRT +foy +pWj +pyb +ejA +eOl +jEW +gsM +bfd +fsI +ouQ +jEW +pIu +dAe +nIY +sIl +eKu +ahH +iXm +dxP +oAr +oAr +euI +tea +vbu +beN +oAr +kFV +gbt +gbt +srJ +srJ +srJ +iQs +dGp +gbt +nCy +jEl +tnX +reM +rKz +lgD +gHz +reM +rKz +lgD +cZQ +brs +uot +iaN +uot +doI +iDW +nvS +rNz +rrU +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(87,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +fSv +tEq +aFH +vQz +fSv +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jrf +nOk +xDs +aqL +beh +aqL +nvh +qxw +dOP +cvv +jyY +pyb +pWj +dbT +duV +kTm +kcX +svl +cIQ +dbT +njF +gWM +rkV +uHN +hhI +dbT +duV +kTm +oNi +qxw +mIv +jEW +mOW +kPL +vNo +jKu +iQN +wZZ +ici +vdg +kxp +tuV +dfJ +jJr +tni +dWq +iQN +eNU +naJ +dFn +beN +oAr +oAr +xDa +dHP +rfD +lJu +rfD +xOJ +gnc +uSc +wuw +jEl +tnX +aTY +jEJ +aTY +cxO +aTY +jEJ +aTY +tMF +brs +uot +jPj +uot +doI +iDW +tTE +qgs +xVc +lQJ +lHv +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +tuY +pjr +pjr +pjr +pjr +pjr +tuY +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(88,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +fSv +mDn +lhH +oet +fSv +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +cBl +alr +oDH +hgl +xaa +uEA +beh +aqL +jcR +rMu +xpS +dLh +qxw +qxw +wYi +kcX +peY +hhI +sef +sfE +gWM +kcX +uho +cIQ +sef +jBA +kTm +kcX +nuJ +cIQ +qxw +qxw +jEW +oAr +leV +gbE +aUj +juE +jEW +jEW +mmU +etP +eKu +ylV +iXm +dqq +dxP +jEW +jEW +euI +buz +utr +civ +oAr +jEW +xDa +eCr +aVi +mYK +iJo +tYE +mAf +vGe +wuw +dvN +sjQ +aTY +hlR +nlB +hlR +aTY +jEJ +fNo +xor +brs +uot +sAI +uot +doI +bzQ +wLW +wdp +rIv +lRl +fWd +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +tuY +pjr +pjr +tuY +pjr +pjr +tuY +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(89,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +fSv +fSv +fSv +fSv +fSv +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jOE +nOk +aCu +aqL +beh +aqL +nCA +qxw +qxw +qxw +qxw +qxw +qxw +qxw +qxw +qxw +qxw +qxw +qxw +qxw +qxw +qxw +rMu +rMu +qxw +qxw +qxw +qxw +ksJ +qxw +jEW +jEW +lpT +jEW +lxB +ulA +jEW +jEW +oIP +xiy +mRR +iXm +jJr +sGu +hmJ +oAr +jEW +oYd +gra +oAr +kPN +oAr +jEW +xDa +eCr +nPP +wUr +aTz +pTc +rfD +vGe +kJO +jEl +sjQ +aTY +hlR +utB +hlR +aTY +jEJ +fNo +pza +brs +uot +iaN +uot +doI +uot +wQm +oup +xVc +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +tuY +tuY +tuY +pjr +pjr +tuY +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(90,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +vQx +jOE +nOk +lmv +aqL +beh +aqL +kPD +bFq +fcH +nYX +hDo +fhG +uLX +ctY +rXc +uLX +eiv +rXc +uLX +eiv +vwe +uLX +eiv +rXc +uLX +upZ +ihM +oYL +ocK +add +eOl +jEW +lpT +oAr +vDx +nDR +jEW +jEW +eOl +jwm +bTv +fhK +fhK +udr +eOl +oAr +oAr +sXt +wVk +jEW +lpT +oAr +oAr +dGp +eCr +uIK +eIR +hLc +hec +hLc +vGe +wuw +jEl +sjQ +aTY +hlR +aTY +hlR +aTY +jEJ +fNo +pza +brs +uot +iXI +uot +doI +uot +bGX +cqR +rrU +ejV +lHv +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +tuY +tuY +tuY +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(91,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jOE +nOk +lmv +aqL +beh +aqL +kak +xzX +wdo +xXs +bVs +bVs +bVs +bVs +iDf +iDf +iDf +iDf +iDf +bVs +bVs +bVs +bVs +bVs +iDf +iDf +bVs +bVs +bVs +osU +jEW +jEW +sFZ +vvD +fHg +juE +jEW +oAr +jEW +jEW +jEW +jEW +eOl +jEW +eZW +oAr +oAr +euI +uyV +vvD +gJg +jEW +oAr +dGp +lGx +aLh +vcF +rfD +pdG +wAj +uSc +toi +jEl +sjQ +aTY +hlR +aTY +hlR +aTY +xtJ +fNo +sFd +brs +uot +dbC +uot +doI +uot +omJ +qgs +rrU +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(92,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +cBl +alr +vDl +hgl +sSF +uEA +beh +aqL +hhN +ddd +qJJ +lbh +bVs +uyE +xgO +wbg +ayO +knq +hxt +pHd +lwp +bKY +pHd +qkq +qkq +wVX +nJk +jOF +qkq +lSk +qiK +mmZ +taq +jEW +mOW +bej +vgc +juE +jEW +jEW +jEW +eOl +jEW +jEW +jEW +oAr +oAr +peW +oAr +euI +sJt +kzi +beN +jEW +jEW +xDa +eCr +qBh +xsp +eAQ +pLA +hLc +uSc +toi +sYX +sjQ +hrB +wEM +aTY +hlR +utB +rRr +fNo +akC +brs +uot +afc +uot +doI +bzQ +qqa +wdp +edf +qII +ujx +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +tuY +tuY +tuY +tuY +tuY +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(93,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +vQx +jOE +nOk +aCu +aqL +beh +aqL +qAE +sJR +lIv +aCu +vDh +gdg +twQ +idu +duI +fgw +lTp +jSI +aDj +hOJ +vpL +kxn +lUk +eNX +pMv +kxn +hMz +beM +pMv +kEa +yjZ +oAr +gsM +bej +oBa +cdI +nDR +jEW +jEW +eOl +nZZ +jEW +eOl +oAr +oAr +mnw +kLK +rxc +qkT +kzi +wgO +jEW +jEW +xDa +lGx +lTI +rlh +ndL +sqz +shB +oRe +siU +muQ +sjQ +aTY +hlR +aTY +vFc +aTY +jEJ +aTY +sFd +brs +uot +iaN +uot +doI +uot +wQm +rNz +rrU +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +tuY +pjr +pjr +pjr +pjr +pjr +tuY +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(94,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +vQx +jOE +nOk +xDs +aqL +bVs +bVs +bVs +bVs +bVs +kUb +iDf +pHQ +poQ +rNR +tvy +rNR +poQ +tso +poQ +rNR +poQ +rnW +gdg +iDf +bVs +mEi +eDy +rNR +gdx +kaR +jEW +oAr +mOW +bej +cqI +vTd +bNw +uql +nDR +sXt +uql +uql +uql +mFy +kLK +mVf +rxc +wml +wUA +kzi +wgO +jEW +oAr +xDa +dHE +ciV +xiK +mAf +lLw +tuD +uSc +eoj +vTY +sjQ +mVp +sad +kWp +rKz +kWp +rKz +kWp +jym +brs +uot +iaN +uot +doI +uot +nvS +cqR +rrU +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +tuY +pjr +pjr +pjr +pjr +pjr +tuY +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(95,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jOE +amB +xDs +aqL +qJh +iif +bJY +qou +bVs +lmv +iDf +alR +tGY +wks +xrc +kxn +hMz +vYO +hWd +iwV +hWd +ouc +gdg +enT +oUS +qxS +njh +kxn +gdx +lLD +nZZ +oAr +gsM +rmW +pim +cqI +vvD +vTd +kwj +dII +lAj +ctt +iHm +kSG +dII +wml +vvD +wUA +pim +pim +lNB +jEW +kFV +gbt +gbt +kMg +kMg +mPR +eQP +gbt +gbt +cRY +rUR +sUP +bHx +wWR +spC +vIZ +mgb +vIZ +mgb +cUe +rrE +xYs +cUh +uot +doI +uot +nvS +qgs +rrU +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +tuY +pjr +pjr +pjr +tuY +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(96,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vCV +alr +jEe +qSj +pnr +lGZ +liI +qNy +rqN +wwN +iDf +lmv +xuJ +ass +qDp +ass +oXz +gCK +dsU +pzg +ass +ass +vAE +mBF +gdg +bVs +iRG +rNR +ldJ +rnW +kSP +fwT +jop +oAr +olh +dGa +rmW +kzi +bej +beN +iuy +jEW +vyO +kzi +lNB +bOH +eOl +vyO +kzi +kzi +pim +rBh +hOX +jEW +oAr +gbt +gbt +gbt +dGp +dGp +gbt +gbt +gbt +hgs +uaA +sjQ +sjQ +sjQ +sjQ +sjQ +sjQ +sjQ +sjQ +sjQ +sjQ +uot +sAI +uot +doI +bzQ +qqa +wdp +rIv +lRl +fWd +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(97,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jrf +amB +foW +aqL +deH +eNX +iPe +wwN +tYd +rNN +lBC +pdx +ajy +pLb +xjG +ass +ass +ass +pdx +oiy +pLb +eIa +gdg +pYl +pMv +kxn +kxT +kxn +pMv +sPo +eOl +oAr +jEW +leV +aMW +aMW +aMW +ipj +jUZ +jUZ +leV +lAS +civ +jUZ +uOD +olh +aMW +aMW +aMW +ipj +eOl +jEW +jEW +tjp +tuY +tuY +tuY +tuY +tuY +gbt +sjQ +sjQ +joa +sjQ +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +uot +iaN +uot +doI +uot +fzp +bmh +vYw +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(98,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +lng +amB +xDs +aqL +bVs +bVs +bVs +bVs +bVs +foW +bVs +pLb +pLb +skG +oah +yfo +sVw +gaX +mWM +yjz +ass +gFF +gdg +bVs +kHh +rnW +ldJ +rnW +dBi +mmZ +lmu +jEW +jEW +oAr +oAr +jEW +jEW +jEW +jEW +eOl +oAr +jEW +oAr +jEW +jEW +eOl +jEW +jEW +jEW +jEW +jEW +oAr +mYx +uot +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +loN +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +uot +dbC +uot +uot +uot +omJ +cqR +xVc +lQJ +lHv +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(99,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +xau +vQx +jrf +amB +xDs +jix +ooq +hSu +bqk +nek +bVs +fdn +qjE +doK +bLA +hJN +pdn +ltr +izo +csj +oMq +hJN +oMq +frt +gdg +bVs +cgG +qxS +ola +kxn +gdx +hTw +eOl +oAr +oAr +oAr +oAr +jEW +jEW +jEW +jEW +jEW +jEW +jEW +jEW +jEW +jEW +jEW +jEW +jEW +jEW +jEW +jEW +eOl +jEW +hib +ylO +iUr +grj +dbA +iUr +grj +ylO +epS +ket +ylO +iUr +grj +dbA +rFg +grj +ylO +iUr +grj +oJA +iUr +gMS +nUs +nUs +bAt +obs +cqR +rrU +ejV +lHv +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(100,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vCV +alr +hGe +qSj +cfC +rDO +hvt +qkv +wwN +eNX +tYd +bgZ +iDf +gdg +tvy +tso +tvy +koO +poQ +tso +tvy +tso +poQ +tso +gdg +bVs +bVs +xeK +cUy +rNR +gdx +aSJ +eOl +oAr +jEW +oAr +jEW +oAr +jEW +jEW +jEW +jEW +jEW +jEW +eOl +jEW +eOl +jEW +jEW +jEW +jEW +oAr +jEW +jEW +jEW +uot +qMO +qMO +iDW +qMO +bzQ +uot +bzQ +bzQ +iDW +bzQ +bzQ +uot +bzQ +bzQ +uot +bzQ +iZZ +uot +iDW +qMO +iDW +iDW +iDW +qMO +dPn +kjl +edf +lRl +rKL +bzQ +bzQ +rEP +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(101,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jOE +amB +aCu +jix +tMz +qkv +wwN +tSI +iDf +tNB +tYd +lUk +nbG +kxn +nbG +beM +hMz +kxn +nbG +kxn +vSH +ltr +lUk +kSV +pMv +kxn +nbG +beM +gdx +mmZ +jEW +oAr +jEW +oAr +nrZ +eOl +jEW +sFZ +ctt +nik +dvs +bIf +dvs +nik +nik +iHm +jEW +jEW +jiF +jEW +jEW +nZZ +eOl +ukG +hGM +kVc +mpX +qtT +kVc +mpX +xgd +kVc +mpX +qtT +kVc +hNt +qtT +kVc +hNt +qtT +swI +hNt +gkT +aOk +ajG +hNt +hNt +qex +xXb +pnz +tYB +hbZ +hbZ +qbv +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(102,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jrf +amB +lmv +jix +dOz +ksU +iPe +lYS +bVs +foW +bVs +qHf +sFc +rLH +dSs +dSs +dSs +cFF +cFF +dSs +dPk +nVM +smV +eNX +fZP +vtF +nVM +qpE +uFI +fwT +pay +oAr +jEW +oAr +uMw +jEW +sFZ +kCr +eYP +dlr +qkL +rTq +dYH +wBQ +tIH +cqI +gJg +jEW +feT +jEW +oAr +eOl +oAr +jOn +wnD +hbZ +rBv +wnD +hbZ +hbZ +npR +hbZ +hbZ +wnD +hbZ +hbZ +wnD +hbZ +hbZ +wnD +ehD +hbZ +jOn +rOH +hbZ +hbZ +hbZ +npR +hbZ +qRP +hbZ +rBv +hnU +dqo +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(103,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jOE +amB +lmv +aqL +bVs +bVs +bVs +bVs +bVs +foW +bVs +bVs +wZw +ezH +pOl +cgY +vLg +eDM +ujm +wWf +xwr +iDf +bVs +bVs +bVs +bVs +bVs +bVs +bVs +bVs +jEW +oAr +oAr +sXt +dnc +xnI +nFA +xck +eDp +xGD +hbE +dOy +bgv +vRZ +igT +qXL +nFA +kLK +dnc +flS +jEW +eOl +eOl +jOn +ckV +nTK +xnV +ckV +xnV +nTK +ckV +lvH +nTK +ckV +nTK +nTK +ckV +nTK +nTK +ckV +ljT +lvH +jOn +iCX +wJI +lvH +lvH +sDn +wJI +pBd +ueo +hbZ +rBv +qbv +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(104,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vCV +alr +kya +sin +mdh +eYD +qDd +oMS +uUW +aIC +aIC +foW +tYd +mdu +eNX +wwN +wwN +wwN +tHU +tHU +eNX +wwN +pLt +bVs +iQr +iQr +iQr +iQr +pWD +pWD +pWD +pWD +jop +oAr +oAr +bAm +jya +ogl +gsM +dQa +sSV +hbE +eEb +ijT +qLN +ouv +iKC +wgO +lNB +kgc +rRo +bth +oAr +oAr +mYx +uot +dCM +gGE +gGE +jHB +aQN +aQN +jHB +aQN +gGE +jHB +aQN +aQN +jHB +aQN +aQN +oVF +lzA +gGE +uot +qiv +lZD +lZD +lZD +bzQ +okN +pzk +aWC +rBv +hnU +dqo +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(105,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +eeF +amB +osb +kCg +klI +wAI +moK +jEX +ltG +ouF +iDf +lrP +eNX +eNX +eNX +eNX +wwN +wwN +wwN +tHU +xbd +bVs +iQr +iQr +iQr +pWD +pWD +gtn +awM +tYp +jEW +jEW +jEW +bAm +qHB +bth +gsM +dQa +sSV +hbE +eEb +cgf +hbE +ouv +iKC +wgO +lNB +kgc +vbY +bth +eOl +jEW +oAr +jOj +ehC +xfm +xds +faq +xfm +xds +faq +xfm +qyk +eWu +gKF +fMz +mgv +gKF +xds +faq +jgy +jNg +oJA +lfp +rCq +lfp +hbY +dap +lBy +wdg +rrU +rBv +hbZ +qbv +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(106,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jOE +nOk +lmv +aIC +aIC +jhE +eYD +oXI +lmv +aIC +iDf +aex +wJz +wvq +iws +dJV +vBs +wls +eDc +aTL +wwN +bVs +iQr +iQr +pWD +pWD +xFV +luW +jTj +tYp +oAr +oAr +jEW +lTl +svA +ulA +glQ +svu +nEm +ekO +pMl +dOy +qLN +vRZ +joW +lpT +nFA +lTl +unG +ulA +eOl +oAr +oAr +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +uot +xwt +hHL +slb +yfC +uuL +omI +rGd +xVc +hbZ +hnU +dqo +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(107,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +vQx +jrf +amB +xDs +eYD +eYD +eYD +eYD +baj +foW +eYD +bVs +bVs +bVs +bVs +bVs +iDf +bVs +bVs +bVs +bVs +bVs +bVs +pWD +aZR +pWD +dcw +sTW +eSC +awM +pWD +pWD +mIv +jEW +jEW +feT +jEW +olh +cZJ +uIO +iEW +mDC +gSR +pig +lwK +fqd +dnG +hOX +oAr +feT +jEW +eOl +kFV +iJD +iJD +iJD +iJD +bwz +iJD +bwz +iJD +iJD +iJD +iJD +iJD +iJD +iJD +iJD +iJD +iJD +iJD +iJD +ofq +dJm +kuZ +hHL +slb +xWX +uGe +wlF +qgs +xVc +hbZ +hbZ +qbv +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(108,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +lng +gLk +chs +kop +kop +kop +kop +xcL +kCu +tSF +vKR +vKR +tSF +vKR +vKR +xRX +vKR +vKR +kLo +kLo +lwl +fuB +pdP +gSg +vgH +htQ +eSC +cNJ +eSC +eSC +ciU +jEW +jEW +oAr +kYs +jEW +oAr +leV +aMW +aMW +tfp +lAS +dvs +aMW +aMW +hOX +jEW +eOl +kYs +jEW +oAr +oAr +jpJ +gKn +okM +fOL +gKn +gKn +gKn +gKn +fOL +aOi +gKn +gKn +hDR +ogc +ces +eZE +jZK +hYm +iJD +iJD +uot +opc +nat +uVl +uGe +uuL +fwD +qgs +xVc +hbZ +hnU +dqo +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(109,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vCV +alr +jEe +dgu +oSG +gte +bMk +bMk +rLX +bMk +bMk +xjp +bMk +bMk +xjp +bMk +bMk +rLX +kbQ +qTh +xjp +mbn +keI +fuE +iJQ +cUw +eSC +noy +eSC +oWq +eSC +eSC +bnu +eOl +oAr +oAr +oAr +jEW +jEW +jEW +jEW +oAr +oAr +oAr +oAr +jEW +jEW +jEW +jEW +oAr +jEW +jEW +oAr +oAr +eWv +gKn +gKn +erK +qHO +qHO +qHO +vIE +gKn +nTN +gKn +gKn +gKn +gKn +oSj +gKn +gKn +eoO +ogc +iJD +uot +uot +uot +uot +uot +uot +omI +pzk +jWO +hbZ +hbZ +qbv +iMa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(110,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +xau +vQx +rKi +tcp +sjh +sjh +bFJ +sjh +xKO +rdf +bFJ +bFJ +bFJ +sjh +iwD +sjh +sjh +sjh +sjh +bFJ +iwD +sjh +aNh +fuE +vta +tlC +eSC +htv +eSC +pNR +eSC +eSC +pWD +pWD +brZ +oAr +oAr +jEW +oAr +eOl +oAr +oAr +oAr +oAr +oAr +oAr +jEW +eOl +jEW +jEW +jEW +jEW +qky +bwz +iJD +iJD +eoO +idh +shX +pLN +pLN +oud +gKn +iJD +gKn +qlb +iJD +kTY +dYF +iJD +cXm +gKn +ogc +iJD +iJD +uot +iQr +iQr +iQr +bzQ +wLW +enm +rIv +qII +ujx +bzQ +bzQ +rEP +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(111,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +aNh +mJr +vQx +aNh +aNh +aNh +aNh +vPx +dVY +kPr +vUH +vUH +aNh +aNh +vUH +aNh +aNh +aNh +aNh +vQx +uod +fuE +sEY +dNs +sTW +idY +eSC +idY +dlR +pWD +pWD +fuE +brZ +pPz +eCz +jop +eOl +eOl +oAr +vlp +jEW +oAr +jEW +vlp +jEW +jEW +jEW +mYx +eCz +pPz +qky +qky +qky +iJD +iJD +qBL +gKn +gKn +gKn +gKn +nPW +iJD +jyx +eoO +aMy +tNW +ulR +mQE +ogc +gKn +gKn +lfa +iJD +ltx +iQr +iQr +iQr +uot +aGb +qgs +xVc +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(112,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +fDw +vbr +mDD +mDD +mDD +mDD +mDD +ook +ook +mDD +vCW +mDD +npD +vUH +mDD +mdk +ook +kjb +mDD +yeT +uod +fuE +eSC +pXa +sTW +pNR +sTW +plc +pWD +pWD +fuE +iQr +iQr +ltx +brZ +oAr +eOl +nZZ +jEW +brZ +jEW +jEW +jEW +brZ +jEW +eOl +eOl +jEW +bQM +ltx +iQr +iQr +iQr +qky +iJD +fOI +hkk +fyn +hJX +tjZ +iJD +iJD +xcw +gKn +bas +gKn +oSj +pRp +ogc +gKn +gKn +xpT +iJD +ltx +iQr +iQr +iQr +uot +wlF +qgs +xVc +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(113,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +pSB +alr +gEE +pfF +sCT +wfa +aqL +aqL +aqL +aqL +aqL +aqL +aqL +aqL +ybX +yeT +yeT +moP +moP +oTp +yeT +yeT +uod +fuE +eSC +pXa +sTW +idY +jkp +pWD +pWD +fuE +iQr +iQr +iQr +ltx +brZ +pPz +oAr +uTb +pPz +brZ +pPz +pPz +pPz +brZ +eCz +nZZ +uTb +pPz +brZ +ltx +iQr +iQr +iQr +iQr +qky +iJD +cyH +gKn +okM +iHx +eoO +psy +eoO +ueR +iJD +sck +liy +iJD +cUb +eoO +jZK +iJD +iJD +ltx +iQr +iQr +iQr +uot +wlF +cqR +xVc +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(114,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jrf +qZy +xDs +aqL +iQr +iQr +iQr +iQr +iQr +iQr +iQr +joE +mZM +ncW +xwm +ozO +gpw +spe +hnO +tXQ +pva +joE +htv +xrQ +sTW +ciK +pWD +pWD +fuE +iQr +iQr +iQr +iQr +ltx +brZ +oAr +jEW +eOl +jEW +brZ +jEW +jEW +oAr +brZ +jEW +eOl +jEW +jEW +brZ +ltx +iQr +iQr +iQr +iQr +qky +iJD +bwz +lIS +gKn +gKn +ueR +iJD +gKn +okM +gKn +eoO +nvW +eoO +eoO +gKn +ogc +iJD +ltx +ltx +iQr +iQr +iQr +bzQ +wLW +wdp +rIv +lRl +ujx +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(115,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jrf +amB +lmv +aqL +iQr +iQr +iQr +iQr +iQr +iQr +iQr +joE +xQG +wvf +hDV +drB +oFP +drB +pWk +azs +ckc +joE +pWD +aZR +pWD +pWD +wMB +fuE +iQr +iQr +iQr +iQr +iQr +ltx +pPz +oAr +eOl +nZZ +eOl +lby +jEW +jEW +eOl +iiO +oAr +eOl +eOl +jEW +pPz +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +iJD +umd +gKn +gKn +bwz +xZp +gKn +hDR +hsj +hYm +eZE +ogc +ces +iJD +iJD +ltx +iQr +iQr +iQr +iQr +uot +aGb +qgs +xVc +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(116,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +pSB +bje +pEn +hgl +xaa +uEA +iQr +iQr +iQr +iQr +joE +joE +joE +ajs +wIz +dnZ +sBy +uAt +uAt +uAt +ndy +aTD +jUx +joE +joE +joE +joE +fuE +fuE +iQr +iQr +iQr +iQr +iQr +iQr +ltx +pPz +jEW +nZZ +eOl +jEW +eOl +jEW +oAr +eOl +jEW +jEW +jEW +eOl +eOl +pPz +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +iJD +iJD +iJD +iJD +iJD +ftR +gKn +iJD +iJD +iJD +iJD +bwz +bwz +iJD +ltx +ltx +iQr +iQr +iQr +iQr +uot +wlF +cqR +xVc +lQJ +lHv +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(117,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +aNh +jrf +nOk +aCu +aqL +iQr +iQr +iQr +iQr +joE +uVB +xJe +tjr +jUx +wIz +wIz +wIz +wIz +wIz +wIz +bXy +vQt +gmT +xJe +uVB +joE +iQr +qDy +qDy +iQr +iQr +iQr +iQr +iQr +ltx +eCz +oAr +jEW +jEW +jEW +ukN +rRj +uwK +ebX +qVT +eOl +jEW +eOl +jEW +eCz +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +ltW +kin +gZb +dov +njE +gKn +gKn +njE +erK +dov +kin +koZ +iJD +ltx +ltx +iQr +iQr +iQr +iQr +iQr +uot +wlF +oup +rrU +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(118,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +aNh +jrf +nOk +xDs +aqL +iQr +iQr +iQr +iQr +joE +qLL +jUx +twU +pNX +tnW +lOz +roF +fLv +twU +wIz +twU +twU +tnW +wIz +ohL +joE +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +brZ +bQM +amQ +eOl +jEW +leH +eGP +kms +cPV +khP +eOl +jEW +iXB +bQM +urd +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +fWG +iJD +rwD +mnA +bwz +eoO +gKn +iJD +dwV +aQg +bwz +fWG +iJD +ltx +iQr +iQr +iQr +iQr +iQr +iQr +bzQ +wLW +wdp +edf +lRl +ujx +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(119,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +aNh +jrf +nOk +xDs +aqL +iQr +iQr +iQr +iQr +joE +jYp +wIz +twU +bDh +tnW +lOz +dki +jTf +tnW +wIz +tnW +tnW +tnW +wIz +sPg +joE +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +pPz +jEW +jEW +oAr +hEZ +rRj +pPz +kQa +ugQ +wrq +iIC +jEW +jEW +jEW +pPz +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +iJD +iJD +iJD +iJD +iJD +wpS +gKn +iJD +iJD +iJD +iJD +iJD +iJD +ltx +iQr +iQr +iQr +iQr +iQr +iQr +uot +aGb +qgs +rrU +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(120,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vCV +aTp +jEe +hgl +sSF +uEA +iQr +iQr +iQr +iQr +hbh +mjp +gSp +gSp +gSp +rEc +dLf +kXy +tMt +pyS +gSp +gSp +gSp +gSp +dLf +lVJ +hbh +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +pPz +ifL +ihA +ihA +rWl +eCz +pKx +kms +dXZ +pPz +icV +ihA +rhs +dij +pPz +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +meB +kin +erK +xon +njE +eoO +eoO +djh +erK +dov +fql +koZ +iJD +ltx +iQr +iQr +iQr +iQr +iQr +iQr +uot +wlF +cqR +rrU +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(121,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +aNh +lng +nOk +aCu +aqL +iQr +iQr +iQr +iQr +joE +eAs +pfy +hnP +kDQ +kDG +mtx +kDG +jhe +kDG +wmR +kDG +wmR +hyf +dxb +sPg +joE +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +gjh +yfb +oNt +qvZ +pea +oqv +uMK +kXR +jNO +pJR +hSG +dtZ +oNt +bVt +pPz +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +bGo +bwz +dwV +aQg +iJD +eoO +gKn +iJD +dwV +mnA +bwz +xBS +iJD +ltx +iQr +iQr +iQr +iQr +iQr +iQr +uot +wlF +qgs +rrU +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(122,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +vQx +lng +nOk +lmv +aqL +iQr +iQr +iQr +iQr +joE +olB +wsx +ovS +eAu +eAu +eAu +jal +aEq +caH +caH +caH +caH +pzh +iOi +nCX +joE +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +gjh +oNt +dtZ +oNt +gUc +pJR +eyX +kXR +nTo +pJR +bds +oNt +oNt +jEW +eCz +ltx +iQr +iQr +iQr +iQr +iQr +qky +bwz +bwz +bwz +iJD +iJD +iJD +dro +eoO +bwz +bwz +bwz +iJD +bwz +iJD +ltx +iQr +iQr +iQr +iQr +iQr +iQr +bzQ +wLW +hHv +xou +qII +ujx +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(123,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +aNh +lng +amB +lmv +aqL +iQr +iQr +iQr +iQr +joE +ruS +mMx +ovS +eAu +eAu +eAu +eAu +aEq +caH +caH +caH +caH +gAi +iOi +ruS +joE +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +gjh +dtZ +qvZ +qvZ +gUc +pPz +pyO +mlE +lSq +pPz +azb +oNt +qvZ +oAr +pPz +ltx +iQr +iQr +iQr +iQr +iQr +qky +bwz +qlC +fKL +erK +dov +njE +gKn +gKn +njE +erK +dov +kin +koZ +iJD +ltx +iQr +iQr +iQr +iQr +iQr +iQr +uot +aGb +qgs +rrU +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(124,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +cBl +bje +hGe +qSj +xaa +uEA +iQr +iQr +iQr +iQr +joE +ruS +mMx +ovS +eAu +eAu +eAu +eAu +aEq +caH +caH +caH +caH +gAi +aYq +oyv +joE +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +tyZ +eCz +lQQ +lQQ +eXw +yfQ +oqv +bNX +mlE +rQu +pJR +azb +eXw +eXw +jEU +pPz +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +ojq +bwz +rwD +mnA +iJD +gKn +gKn +bwz +rwD +mnA +bwz +bGo +iJD +ltx +iQr +iQr +iQr +iQr +iQr +iQr +uot +wlF +rNz +rrU +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(125,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +vQx +jrf +amB +foW +aqL +iQr +iQr +iQr +iQr +joE +ruS +mMx +ovS +eAu +eAu +eAu +eAu +aEq +caH +caH +caH +caH +gAi +tUg +qrl +joE +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +tyZ +eCz +xEO +xEO +awh +qRR +pJR +pJC +kXR +mhJ +pJR +bds +xEO +awh +nsc +pPz +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +iJD +iJD +iJD +iJD +iJD +dro +gKn +iJD +bwz +vgg +bwz +iJD +iJD +ltx +iQr +iQr +iQr +iQr +iQr +iQr +uot +wlF +qgs +rrU +ejV +lHv +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(126,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +aNh +lng +amB +lmv +aqL +iQr +iQr +iQr +iQr +joE +ruS +mMx +ovS +eAu +eAu +eAu +eAu +aEq +caH +caH +caH +caH +gAi +tUg +oyv +joE +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +eCz +dtZ +dtZ +qvZ +gUc +eCz +eWg +mlE +uwM +pPz +azb +dtZ +oNt +jEW +pPz +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +pqP +wRI +sAL +dov +njE +gKn +okM +njE +bnw +dov +fql +aON +iJD +ltx +iQr +iQr +iQr +iQr +iQr +iQr +bzQ +wLW +enm +edf +qII +fWd +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(127,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jrf +amB +lmv +aqL +iQr +iQr +iQr +joE +ajs +wxB +hZU +rAv +nkd +nkd +nkd +nkd +yjJ +hbS +hbS +hbS +hbS +pcv +xYg +kjT +joE +joE +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +pPz +oNt +oNt +qvZ +gUc +rEH +kms +uxZ +nTo +pJR +hBn +qvZ +oNt +eOl +pPz +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +bGo +bwz +dwV +mnA +iJD +gKn +gKn +iJD +dwV +tgu +iJD +bGo +bwz +ltx +iQr +iQr +iQr +iQr +iQr +iQr +uot +aGb +oup +rrU +ejV +lHv +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(128,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +cBl +alr +oDH +qSj +xaa +uEA +iQr +iQr +iQr +joE +wIz +uqp +jOB +avR +isO +isO +isO +jOB +isO +jOB +isO +isO +isO +gyw +isO +tON +wIz +joE +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +eCz +pEQ +ihA +rhs +rWl +rEH +pCa +cPL +lkz +pJR +icV +rhs +ihA +adM +pPz +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +iJD +iJD +iJD +iJD +iJD +dro +gKn +iJD +iJD +vgg +iJD +bwz +bwz +tyZ +iQr +iQr +iQr +iQr +iQr +iQr +uot +wlF +cqR +rrU +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(129,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +aNh +jOE +nOk +foW +aqL +iQr +iQr +iQr +ajs +isO +dVp +mow +dXn +obk +yiF +yiF +vEU +fVD +vEU +vEU +vEU +yiF +tuI +aXI +rxr +bEI +joE +iQr +iQr +iQr +iQr +iQr +iQr +iQr +tyZ +pPz +jEW +oAr +eOl +sgg +oOf +pJR +pJR +pJR +sSu +auY +jEW +nZZ +jEW +eCz +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +ltW +mxI +erK +dov +njE +gKn +gKn +njE +erK +iLJ +kin +knT +iJD +ltx +iQr +iQr +iQr +iQr +iQr +iQr +uot +wlF +cqR +rrU +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(130,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +aNh +eeF +nOk +lmv +aqL +iQr +iQr +iQr +tMt +xtP +ohK +kXy +hbh +rTi +rTi +rTi +rTi +joE +rTi +rTi +rTi +rTi +hbh +cjD +ncn +nbA +hbh +iQr +iQr +iQr +iQr +iQr +iQr +iQr +tyZ +bQM +urd +tGI +fNc +eOl +sgg +nJy +buv +buv +rSH +egN +wYs +wwD +urd +brZ +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +fWG +iJD +rwD +mnA +bwz +gKn +eoO +iJD +dwV +tgu +bwz +bGo +iJD +ltx +iQr +iQr +iQr +iQr +iQr +iQr +bzQ +wLW +enm +xou +lRl +ujx +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(131,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +aNh +jOE +nOk +lmv +aqL +iQr +iQr +iQr +joE +uSs +kow +wIz +rTi +gRR +bbb +nxU +slN +gmT +wIz +ehX +rrg +ePI +rTi +lOz +jqe +wIz +joE +iQr +iQr +iQr +iQr +iQr +iQr +iQr +tyZ +eCz +qMW +ulA +hjX +jkG +jEW +jEW +oAr +oAr +jEW +dqw +oTa +oYd +alc +pPz +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +iJD +iJD +iJD +iJD +iJD +gdR +eoO +iJD +iJD +iJD +bwz +bwz +iJD +ltx +iQr +iQr +iQr +iQr +iQr +iQr +uot +aGb +glU +rrU +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(132,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +cBl +bje +qCY +qSj +xaa +tSZ +iQr +iQr +iQr +joE +oBM +oyv +wIz +rTi +sNu +eLj +wIz +lOz +wIz +wIz +wIz +rDp +fSe +rTi +lOz +oyv +mhw +joE +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +pPz +jEW +eOl +oYd +qNf +jkG +jkG +jkG +jkG +eei +uhv +aLB +jEW +jEW +eCz +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +icK +mxI +bnw +dov +djh +gKn +eoO +njE +erK +dov +kin +koZ +iJD +ltx +iQr +iQr +iQr +iQr +iQr +iQr +uot +wlF +eBz +rrU +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(133,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +aNh +jOE +amB +aCu +aqL +iQr +iQr +iQr +wSy +iwv +aHr +nCB +wfu +pdA +fmQ +pdA +fmQ +fer +fmQ +pCX +fmQ +fmQ +jCj +jiZ +oDE +mhw +joE +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +pPz +eOl +jEW +eOl +oYd +alc +alc +oAf +alc +alc +aLB +eOl +jEW +jEW +eCz +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +fWG +bwz +dwV +aQg +iJD +uAB +gKn +iJD +dwV +aQg +bwz +fWG +iJD +ltx +iQr +iQr +iQr +iQr +iQr +iQr +uot +wlF +qgs +xVc +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(134,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +aNh +jrf +amB +fdn +aqL +iQr +iQr +iQr +lto +wIz +ffK +jUx +lMG +wIz +wIz +ffK +xmi +hWH +uVB +btH +wIz +wIz +wkA +djV +btH +wIz +joE +iQr +iQr +iQr +iQr +iQr +iQr +iQr +ltx +pPz +jEW +oAr +jEW +trY +jEW +eOl +jEW +jEW +eOl +mPs +jEW +eOl +oAr +pPz +ltx +iQr +iQr +iQr +iQr +iQr +qky +iJD +iJD +iJD +iJD +iJD +iJD +vFI +eoO +iJD +iJD +bwz +iJD +iJD +iJD +ltx +iQr +iQr +iQr +iQr +iQr +iQr +bzQ +wLW +enm +edf +lRl +nkV +bzQ +bzQ +rEP +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(135,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jOE +amB +lmv +aqL +aqL +lGZ +aqL +aqL +aqL +lGZ +jDX +aqL +aqL +lGZ +aqL +aqL +aqL +lGZ +aqL +aqL +lAV +aqL +ePz +lGZ +aqL +aqL +lGZ +aqL +lGZ +aqL +aqL +lGZ +aqL +aqL +lGZ +aqL +aqL +aqL +aqL +jEW +xgU +bQM +oAr +xgU +uot +uot +qMO +uot +uot +bzQ +uot +uot +uot +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +cTa +bzQ +uot +uot +bzQ +uot +uot +uot +bzQ +uot +uot +uot +bzQ +uot +uot +uot +wlF +cqR +rrU +dqo +sFS +hbZ +jxa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(136,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vCV +alr +oDH +qSj +hOD +rJg +tfF +uJj +eOt +quX +syB +uJj +cwK +quX +tfF +xpi +eOt +bFq +syB +xpi +eOt +bFq +bFq +vfb +rek +xpi +lCd +syB +xpi +eOt +syB +lCd +kQy +xpi +wHl +bFq +xpi +eOt +syB +bFq +qbR +jEW +jEW +jEW +sRq +dwX +aaw +pfW +sNF +iGC +pfW +sNF +pTJ +pfW +vkk +pfW +sNF +pTJ +jiE +sNF +pTJ +jiE +pfW +pTJ +fxe +sNF +jKQ +jiE +sNF +pTJ +ptI +rnB +mjW +uyx +ptI +rnB +mjW +uyx +ptI +mpG +fZq +cqR +rrU +dqo +hnU +dqo +jxa +dPy +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(137,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jrf +amB +vHR +aqL +aqL +lGZ +aqL +aqL +aqL +lGZ +aqL +aqL +aqL +lGZ +aqL +aqL +aqL +lGZ +aqL +aqL +lGZ +aqL +aqL +lGZ +aqL +aqL +lGZ +aqL +lGZ +aqL +xFp +lGZ +lGZ +lGZ +lGZ +lGZ +lGZ +lGZ +lGZ +oAr +jEW +oAr +ivo +jEW +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +jdh +iDW +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +uot +bzQ +uot +uot +uot +bzQ +uot +uot +bzQ +wLW +wdp +xou +lRl +ujx +bzQ +bzQ +rEP +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(138,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +aNh +jOE +amB +xDs +aqL +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +aqL +kWK +jVD +wsc +wSu +wSu +wSu +wSu +enl +pPz +oAr +jEW +eOl +eOl +oAr +pPz +wsc +wSu +wSu +wSu +wSu +enl +nCx +xiT +uot +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +uot +aGb +cqR +rrU +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(139,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +vQx +jrf +amB +xDs +wfa +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +aqL +hsW +gvH +aSY +neY +frb +frb +bgk +vmb +eCz +amQ +nZZ +eOl +jEW +tBT +pPz +aSY +xJK +frb +frb +bgk +vmb +bbQ +tfm +uot +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +uot +wlF +rNz +xVc +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(140,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +cBl +alr +qCY +qSj +xaa +egQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +aqL +kEu +gvH +oty +nZf +pOr +toR +nWK +huQ +jEW +eOl +jEW +eOl +jEW +eOl +jEW +oty +nZf +pOr +igm +nWK +huQ +bbQ +seS +uot +iQr +iQr +iQr +iQr +iQr +uqP +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +uot +wlF +eBz +xVc +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(141,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +aNh +jrf +amB +foW +wfa +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +aqL +nwx +gvH +gbD +goT +kcf +qzx +pRU +gbD +jEW +jEW +oAr +jEW +eOl +jEW +jEW +gbD +goT +qzx +kcf +pRU +gbD +bbQ +tfm +uot +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +bzQ +wLW +enm +eGO +lRl +fWd +bzQ +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(142,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +vQx +jOE +amB +lmv +aqL +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +aqL +hsW +gvH +gbD +nZf +qzx +kcf +nWK +gbD +jEW +eOl +jEW +eOl +jEW +eOl +jEW +gbD +nZf +kcf +qzx +nWK +gbD +bbQ +tfm +uot +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +uot +aGb +oup +xVc +lQJ +sFS +bzQ +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(143,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +aNh +jOE +amB +lmv +aqL +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +aqL +hsW +gvH +gbD +nZf +iLk +toR +pRU +gbD +jEW +oAr +jEW +eOl +jEW +jEW +jEW +gbD +nZf +pOr +igm +nWK +gbD +bbQ +tfm +uot +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +uot +wlF +qgs +xVc +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(144,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +cBl +bje +oDH +qSj +xaa +uEA +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +slJ +iQr +iQr +aqL +hsW +moD +aSY +rma +gjX +gjX +ccE +vmb +oEd +vdz +jEW +jEW +nZZ +vSF +oEd +aSY +rma +gjX +gjX +ccE +vmb +rZm +tfm +uot +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +uot +wlF +qgs +xVc +lQJ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(145,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +gje +vQx +jrf +amB +vHR +aqL +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +aqL +epL +gvH +qii +wSu +wSu +wSu +wSu +mre +eCz +jEW +eOl +eOl +oAr +jEW +pPz +qii +wSu +wSu +wSu +wSu +mre +bbQ +hJS +uot +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +bzQ +wLW +wdp +rIv +lRl +fWd +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(146,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +eeF +doY +aCu +aqL +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +aqL +emK +lGZ +rEP +rEP +rEP +rEP +rEP +rEP +rEP +oAr +jEW +jEW +jEW +jEW +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +bzQ +pVu +uot +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +uot +omI +lqt +xVc +ejV +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(147,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +cBl +bje +rbc +qSj +bnX +lGZ +lGZ +aqL +aqL +lGZ +aqL +aqL +lGZ +aqL +aqL +lGZ +aqL +aqL +lGZ +vvG +aqL +lGZ +aqL +aqL +lGZ +aqL +aqL +lGZ +vvG +aqL +lGZ +aqL +eCV +lGZ +vQx +vQx +lGZ +vQx +vQx +lGZ +aqL +jop +oAr +jEW +jEW +iYd +uot +bzQ +fnG +jbQ +qMO +vim +vim +bzQ +qts +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +fEj +iDW +qMO +uot +uot +uot +bzQ +uot +tOn +wdg +tLU +dqo +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(148,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +aNh +rKi +tcp +sjh +qaS +kOX +ieT +bFJ +kOX +jZZ +sjh +nPn +ieT +bFJ +kOX +dOO +rdf +ezN +ieT +bFJ +kOX +jZZ +sjh +kOX +ieT +sjh +nPn +jZZ +bFJ +kOX +dOO +sjh +pxG +jZZ +sjh +nPn +jZZ +sjh +nPn +vVc +tPV +tPV +tPV +cOS +tPV +emO +qtT +nGI +mpX +qtT +kVc +mpX +qtT +kVc +hNt +xgd +kVc +mpX +qtT +kVc +mpX +xgd +lyg +tAf +xgd +kVc +mpX +qtT +lyg +tAf +xgd +kVc +mpX +qtT +kVc +hNt +hNt +qex +xXb +hNt +caU +tYB +hbZ +hnU +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(149,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +aNh +vUH +mJr +vQx +ppk +wuF +vQx +vQx +wuF +aNh +aNh +wuF +aNh +aNh +xBP +vQx +vQx +wuF +vQx +aNh +xBP +aNh +aNh +wuF +aNh +aNh +xBP +vQx +aNh +xBP +aNh +vQx +xBP +vQx +aNh +xBP +aNh +vQx +wuF +qaS +jEW +jEW +jEW +jEW +oAr +vZD +lEC +jbQ +jbQ +rQp +jbQ +fnG +rQp +jbQ +jbQ +lEC +hbZ +rBv +wnD +hbZ +hbZ +npR +dqo +dqo +rQp +fnG +fnG +rQp +fnG +fnG +rQp +fnG +fnG +wnD +hbZ +hbZ +hbZ +rOH +hbZ +dqo +wAm +hbZ +hbZ +sFS +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(150,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +aNh +fDw +byZ +oOp +qaS +fKX +oOp +heo +awt +oOp +heo +iVM +heo +oOp +xNf +oLm +oOp +kAA +heo +oOp +xNf +oOp +oOp +fPH +heo +heo +awt +oOp +heo +fPH +oOp +oLm +xNf +oOp +oOp +fPH +oOp +oOp +flj +ppk +lPM +lPM +lPM +lPM +fgE +emO +azL +nTK +nTK +qYY +nTK +nTK +azL +lvH +lvH +qYY +lvH +lvH +mEH +lvH +lvH +qYY +lvH +lvH +brm +lvH +lvH +qYY +lvH +lvH +brm +lvH +lvH +qYY +lvH +lvH +lvH +rGH +lvH +lvH +mkc +ueo +hbZ +lHv +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(151,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +pLT +alr +dPm +hgl +vPi +lGZ +cWc +hIz +hIz +cWc +hIz +hIz +cWc +mRP +oqi +hMF +oqi +oqi +hMF +mRP +mRP +cWc +mRP +mRP +cWc +mRP +mRP +cWc +mRP +mRP +cWc +mRP +mRP +cWc +mRP +mRP +cWc +mRP +mRP +cWc +qXg +jEW +jEW +jEW +jEW +jEW +qjJ +oVF +iiq +iiq +oVF +iiq +iiq +oVF +iiq +iiq +oVF +gGE +gGE +oVF +gGE +gGE +oVF +gGE +gGE +jHB +tpZ +tpZ +oVF +bzW +bzW +oVF +iiq +iiq +oVF +gGE +gGE +aQN +bMs +iDW +oMd +wdg +tLl +hbZ +hnU +qMO +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(152,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +gje +aNh +jOE +doY +nec +hqb +gaU +mxB +lQM +gaU +mxB +lQM +sTQ +lER +pPy +cNz +fDX +pPy +cNz +auW +jdb +cNz +fDX +pPy +cNz +fDX +pPy +cNz +auW +jdb +bZi +auW +rTf +bZi +auW +jdb +bZi +auW +jdb +bFq +aFw +oAr +jEW +jEW +jEW +jEW +rxA +wGc +ecs +bsV +wGc +ecs +bsV +wGc +wAL +bsV +rnB +oFT +fqw +pQN +gwB +fqw +pQN +gwB +fqw +wGc +ecs +bsV +kVP +uKQ +bsV +wGc +weN +hrA +voe +kja +hrA +hrA +oQw +dNX +lBy +wdg +rrU +dqo +hnU +qMO +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(153,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +wBC +vQx +jOE +dIb +dcQ +aqL +lGZ +wfa +wfa +lGZ +wfa +aqL +lAV +aqL +idf +apJ +idf +idf +lAV +gnu +aqL +lGZ +aqL +aqL +lGZ +aqL +aqL +lGZ +fQr +aqL +lGZ +aqL +aqL +lGZ +aqL +aqL +lGZ +aqL +aqL +lGZ +uwa +fpJ +eOl +jEW +eOl +rHb +ouu +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +uot +uot +bzQ +php +uot +bzQ +uot +uot +uot +bzQ +uot +omI +dIu +rrU +hbZ +hnU +qMO +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(154,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +pLT +bje +qCY +qSj +wcS +tSZ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +brZ +oAr +jEW +jEW +jEW +oAr +brZ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +bzQ +kKS +kCA +gdN +baP +ujx +qMO +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(155,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +aNh +jOE +amB +lzr +aqL +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +brZ +jEW +eOl +eOl +jEW +jEW +brZ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +uot +fzp +qgs +xVc +hbZ +lHv +qMO +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(156,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +vRB +aNh +jrf +amB +nbd +aqL +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +brZ +jEW +jEW +eOl +eOl +jEW +brZ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +uot +gOX +qgs +xVc +hbZ +lHv +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(157,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +pLT +alr +gXe +kBW +gFX +tSZ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +brZ +jEW +jEW +eOl +jEW +jEW +brZ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +bzQ +kKS +kjl +eqt +baP +uRW +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(158,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +iQr +pew +pew +pew +pew +pew +pew +mNy +dSW +mNy +pew +ojT +pew +fLE +fLE +fLE +fLE +fLE +fLE +pws +pws +pws +qIy +fLE +pws +pws +pws +pws +fLE +pew +fLE +fLE +fLE +fLE +fLE +fLE +fLE +pew +fLE +fLE +fLE +fLE +fLE +fLE +fLE +fLE +fLE +fLE +wfb +wfb +inP +inP +inP +pws +fLE +fLE +fLE +fLE +fLE +fLE +fLE +pew +fLE +fLE +fLE +fLE +pws +fLE +fLE +pew +fLE +fLE +fLE +fLE +fLE +fLE +pew +fLE +fLE +fLE +fLE +fLE +fLE +fLE +fLE +fLE +pew +ojT +qIy +lRW +mNy +lRW +pew +pew +pew +pew +pew +pew +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(159,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +pew +pew +jqd +rkp +qId +tBj +mBk +qeW +gfa +mmL +rkp +rkp +gfO +vMQ +rkp +rkp +rkp +rkp +qId +qId +qId +qId +tBj +vMQ +rkp +rkp +rkp +qId +qId +kQA +guC +oXs +rkp +oXs +oXs +qId +qId +tBj +vMQ +rkp +jqd +uhX +jqd +rkp +jqd +rkp +rkp +uhX +qId +gfa +acM +pEF +qId +uhX +rkp +rkp +rkp +rkp +rpk +qId +qId +tBj +mBk +qId +rkp +rkp +qId +rkp +rkp +tBj +vMQ +rkp +jqd +qId +qId +rkp +tBj +vMQ +jqd +qId +rkp +qId +qId +rkp +qId +qId +tBj +mBk +oXs +rod +gfa +cnN +qId +tBj +mBk +qId +rkp +pew +pew +pew +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(160,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +pew +aof +rqJ +rqJ +gfa +gfa +vbz +rqJ +rqJ +rqJ +pEF +gfa +aof +vbz +aof +rqJ +rqJ +aof +rqJ +aof +aof +aof +rqJ +gjo +rqJ +rqJ +gfa +gfa +rqJ +rqJ +gjo +rqJ +aof +rqJ +rqJ +rqJ +gfa +rqJ +dCF +rqJ +rqJ +aof +rqJ +rqJ +rqJ +rqJ +aof +rqJ +aof +gfa +rqJ +rqJ +gfa +gfa +rqJ +rqJ +rqJ +rqJ +rqJ +rqJ +rqJ +rqJ +vbz +rqJ +rqJ +rqJ +rqJ +rqJ +rqJ +rqJ +vbz +gfa +gfa +rqJ +gfa +pEF +rqJ +dCF +rqJ +aof +aof +gfa +rqJ +rqJ +gfa +rqJ +rqJ +gjo +rqJ +gfa +pEF +gfa +gfa +gfa +vbz +rqJ +rqJ +gfa +aof +qgc +pew +pew +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(161,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +pew +uAS +gfa +gfa +rqJ +rqJ +iRX +xyS +rTm +rTm +mTy +rTm +gpg +rTm +kUB +rTm +rTm +mTy +rTm +rTm +rTm +rTm +rTm +fXz +kUB +rTm +fXz +rTm +fXz +rTm +fXz +kUB +fXz +dQc +rqJ +gfa +rqJ +gfa +iRX +kUB +rTm +rTm +rTm +rTm +mTy +rTm +rTm +rTm +fXz +fXz +rTm +bRI +rTm +rTm +mTy +rTm +mTy +mTy +rTm +rTm +rTm +fXz +rTm +fpX +eZo +rqJ +aof +aof +rqJ +pUK +rTm +kUB +fXz +fXz +gpg +fXz +fXz +fXz +fpX +rTm +rTm +rTm +rTm +mTy +iyX +iyX +gpg +iyX +djy +rTm +gpg +rTm +fXz +fXz +rTm +fpX +jHa +rqJ +rqJ +gfa +qgc +aof +pew +pew +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(162,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +aof +xKG +rqJ +dNF +rqJ +aof +xZq +mRb +diw +lLE +lLE +lLE +lLE +nFr +kCZ +nND +lLE +vtK +vtK +lLE +lLE +nFr +lLE +lLE +kCZ +nND +lLE +lLE +lLE +vtK +oxS +kCZ +fVz +oOu +rqJ +rqJ +aof +rqJ +chQ +fRb +pru +rqJ +aof +rqJ +rqJ +gfa +rqJ +rqJ +rqJ +ibn +aAX +rxj +pDV +aof +rqJ +aof +rqJ +rqJ +rqJ +aof +rqJ +rqJ +aof +gqB +pqe +aof +aof +rqJ +rqJ +chQ +vvy +kCZ +diw +lLE +lLE +lLE +lLE +nFr +byp +cYb +nFr +lLE +lLE +nFr +nFr +nFr +nFr +nFr +mRb +mLa +nFr +nFr +nFr +nFr +jVW +byp +wkc +rqJ +rqJ +gfa +chQ +rqJ +rqJ +pew +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(163,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +pew +iPf +dJI +rqJ +gxY +rqJ +gfa +rwk +vQQ +tym +boa +boa +boa +boa +bDl +pew +tcf +kHz +boa +boa +kHz +boa +boa +boa +bDl +qIy +nUH +kHz +kHz +kHz +iUA +wFN +pew +xHb +xKG +rqJ +rqJ +rqJ +rqJ +qgc +qIy +aof +rqJ +vvy +puY +puY +puY +nsv +puY +nsv +nsv +nsv +nsv +lke +gbO +nsv +nsv +nsv +nsv +nsv +nsv +rqT +rqJ +rqJ +pew +uAS +rqJ +rqJ +rqJ +rqJ +chQ +tvp +bUr +tym +kHz +kHz +kHz +kHz +xzb +pew +nUH +kHz +kHz +kHz +kHz +kHz +kHz +kHz +xzb +pew +tcf +kHz +kHz +kHz +iUA +wFN +pew +tvQ +gfa +rqJ +pEF +qgc +aof +dXx +qIy +pew +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(164,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +aof +rqJ +seC +rqJ +kNn +rqJ +gfa +qOn +btG +rBo +vNc +efH +oLW +hwO +hwO +qOy +hwO +oLW +oLW +hwO +fPu +hwO +hwO +hwO +hwO +xab +hwO +oLW +oLW +oLW +lkp +rIo +dqM +sVb +uAS +rqJ +rqJ +rqJ +cqu +chQ +ozJ +gVl +rqT +djS +nvl +nvl +nvl +cjL +kqv +kqv +mtL +nvl +nvl +nvl +fXg +kqv +kqv +cjL +nvl +nvl +dit +shQ +dhH +puY +bjK +psc +aof +rqJ +rqJ +rqJ +qgc +afN +btG +cMT +fPu +oLW +oLW +oLW +oLW +nXT +hwO +hwO +hwO +hwO +fPu +hwO +hwO +hwO +hwO +aqt +hwO +hwO +hwO +hwO +fPu +rIo +dqM +rMP +fXz +rTm +rTm +rqJ +rqJ +rqJ +aof +pew +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(165,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +aof +rqJ +cVj +tQr +rqJ +rqJ +gfa +vIN +btG +jpK +khY +pOq +pOq +khY +khY +khY +khY +khY +pOq +khY +khY +khY +khY +khY +khY +khY +pOq +pOq +pOq +pOq +pOq +tFq +dqM +wPC +uAS +rqJ +rqJ +evt +rqJ +chQ +sgr +dit +oiQ +mFX +glh +glh +bYy +bYy +hnF +mpR +mpR +mpR +mpR +mpR +mpR +mpR +hnF +bYy +bYy +nvl +rzB +sOY +bdp +rzB +pow +oOu +aof +rqJ +aof +tOt +qgc +djS +btG +pRe +jiD +jiD +hvq +hvq +hvq +jiD +jiD +jiD +jiD +jiD +jiD +jiD +xTD +xTD +xTD +xTD +xTD +xTD +xTD +xTD +xTD +iCh +dqM +shQ +rqJ +bdZ +rBn +viQ +lZQ +gfa +rqJ +pew +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(166,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +oKK +rqJ +xKG +gfa +rqJ +rqJ +gfa +vIN +itE +twB +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +krw +dqM +wPC +uAS +gfa +bVa +rqJ +xIY +chQ +sgr +glh +nvl +nvl +glh +bYy +bYy +cbX +hFG +hUr +qEM +iZe +vmC +psB +qEM +hUr +whp +rGO +bYy +bYy +glh +lGS +lGS +dit +pow +oOu +rqJ +rqJ +aof +rqJ +chQ +jZh +btG +twB +hvq +jiD +xTD +jiD +cjE +pGZ +pGZ +pGZ +pGZ +pGZ +pGZ +pGZ +pGZ +pGZ +pGZ +loZ +jBY +dwe +nQP +xTD +xTD +mPE +dqM +shQ +rqJ +rqJ +aof +lZQ +lZQ +rqJ +gfa +pew +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(167,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +rqJ +rqJ +uAS +rqJ +rqJ +rqJ +aof +vIN +itE +twB +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +krw +btG +mvZ +oOu +rqJ +rqJ +rqJ +aof +qgc +boP +xYh +nvl +nvl +bYy +bYy +qbd +kUu +qpY +uXs +hfC +vAv +hfC +vAv +hfC +uXs +lph +kMx +vpg +bYy +bYy +nvl +nvl +dit +wPC +aWy +rqJ +rqJ +rqJ +rqJ +qgc +afN +btG +twB +jiD +xTD +jiD +xTD +diJ +wzN +yha +csy +cjC +taf +yaw +bBD +gYN +taf +fEh +jaM +pGZ +pGZ +tcT +xTD +xTD +mPE +btG +jcP +rqJ +rqJ +rqJ +miH +miH +riq +gfa +pew +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(168,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +cMw +aof +xKG +rqJ +rqJ +aof +gfa +vIN +itE +pRe +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +krw +itE +aGD +oOu +rqJ +gfa +aof +rqJ +peI +pew +rAd +guf +lGS +aCE +skO +ryf +ryf +ryf +qpY +uHf +qpY +qpY +qpY +ryf +qpY +qpY +qpY +qpY +cop +mpR +nvl +pCy +iOl +pew +qRu +rqJ +rqJ +aof +rqJ +qgc +jZh +btG +twB +jiD +jiD +cjE +pGZ +uxN +nfR +nOm +lgN +xjW +rnX +tEJ +etN +rLB +nZM +etN +nZJ +nnh +hYN +lwq +jiD +xTD +mPE +btG +qoj +uym +rqJ +rqJ +gvn +miH +deX +rqJ +pew +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(169,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +qoc +spB +xKG +srh +rqJ +rqJ +gfa +vIN +itE +pRe +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pVD +itE +qoj +xKG +rqJ +rqJ +rqJ +rqJ +sgE +fLE +nvl +pCy +nvl +mpR +qpY +qpY +bYy +pvI +ooi +qpY +qpY +qpY +qpY +qpY +ooi +clS +tNq +qpY +ryf +jSY +lGS +pCy +nvl +fLE +oOu +aof +rqJ +aof +rqJ +qgc +afN +btG +jpK +jiD +xTD +mcg +xUP +bRD +xjW +nLb +iMT +vrP +wfQ +qIP +yjv +yjv +wRY +wUY +toC +eOh +eOh +tLQ +jiD +xTD +mPE +btG +qoj +rqJ +rqJ +gfa +swd +miH +blJ +rqJ +pew +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(170,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +iVg +rly +uAS +hke +gzG +aof +rqJ +vIN +coy +twB +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +eIq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +flb +krw +itE +qoj +xKG +rqJ +rqJ +rqJ +aof +rkA +fLE +bCt +pCy +nvl +mpR +qpY +qpY +flR +iTd +eFZ +eza +eza +eza +gmr +gmr +yex +nhv +flR +qHs +qpY +jSY +glh +guf +nvl +fLE +xKG +rqJ +aof +tYy +rqJ +qgc +afN +btG +jpK +xTD +xTD +mcg +azN +upf +xjW +nLb +nqh +xjW +hHb +bav +pFN +nfR +gHQ +dGJ +oEH +orb +orb +fed +xTD +xTD +mPE +btG +qoj +mgc +rqJ +pEF +rqJ +aof +aof +gfa +pew +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(171,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +nGR +rBn +hLG +xKG +rUe +aof +prc +gfa +qOn +itE +twB +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +khY +mPE +itE +lBY +oOu +rqJ +rqJ +aof +rqJ +fbR +fLE +cCn +uUF +biK +afF +fby +qpY +flR +dwn +hFH +wly +elG +wly +hFH +wly +hFH +gCN +aYK +ryf +eeT +afF +biK +pGy +nvl +fLE +xKG +aof +aof +aof +rqJ +chQ +djS +btG +twB +xTD +xTD +mcg +xUP +fLR +dGJ +nLb +aoh +luZ +fYB +hsC +lCt +cPR +khb +wpE +tGC +orb +ejE +cPG +jiD +xTD +mPE +btG +qoj +rqJ +hsz +rqJ +gog +vvv +rqJ +rqJ +pew +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(172,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +rqJ +rqJ +xKG +tlA +rqJ +mft +gfa +qOn +btG +pRe +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +khY +krw +btG +qoj +xKG +gfa +qSm +rTs +nwO +peI +pew +lGS +djU +nvl +jSY +xgS +qpY +mvG +qjL +hFH +ydc +hFH +ydc +hFH +ydc +hFH +ouq +hKe +uHf +xgS +jSY +nvl +eSK +nvl +pew +eCP +rqJ +rqJ +rqJ +rqJ +qgc +afN +itE +pRe +jiD +jiD +rXm +drU +hyw +xjW +eUc +xRv +etN +tyN +rLB +rLB +miq +nZM +rLB +bof +eOh +fzM +rVs +xTD +xTD +mPE +btG +qoj +uym +cSO +aof +fqc +kde +rqJ +gfa +pew +iQr +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(173,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +gfa +rqJ +xKG +aOx +rqJ +brG +gfa +qOn +btG +pRe +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +khY +mPE +itE +gBM +xKG +rqJ +aof +xSO +gfa +fbR +pew +lGS +jdo +mff +tNq +muT +qpY +uHf +eEy +hFH +uPB +hFH +ydc +hFH +uPB +elG +bpS +uHf +htn +uUy +bYy +jzB +vTP +glh +pew +xKG +rqJ +aof +eKV +rqJ +chQ +djS +itE +pRe +xTD +hvq +xTD +xTD +diJ +qsO +ssB +bGf +vBx +yan +pEh +iDD +rpf +wbW +oXw +rTR +drU +drU +vxs +xTD +xTD +mPE +btG +kBm +rqJ +scU +rqJ +miH +miH +rqJ +rqJ +pew +iQr +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(174,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +pew +iPf +xKG +rqJ +rqJ +rqJ +pEF +vIN +itE +pRe +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +khY +khY +khY +mPE +dqM +shQ +xKG +rqJ +rqJ +aof +rqJ +qgc +pew +pew +pew +pew +iSC +iSC +iSC +iSC +iSC +iSC +iSC +iSC +iSC +iSC +iSC +iSC +iSC +iSC +iSC +iSC +iSC +pew +pew +pew +pew +xKG +aof +aof +aof +rqJ +qgc +afN +btG +twB +xTD +jiD +xTD +xTD +rXm +drU +drU +drU +drU +dCZ +drU +drU +drU +drU +drU +qDX +nHi +pjR +xqM +xTD +xTD +mPE +dqM +wPC +rqJ +kwi +rqJ +miH +fKi +psQ +eby +pew +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(175,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +rqJ +xKG +hjy +xOK +aof +gfa +vIN +itE +twB +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +pOq +khY +khY +khY +khY +pOq +pOq +pOq +iCh +dqM +shQ +xKG +fny +rqJ +aof +gIr +chQ +pew +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +pew +xKG +rqJ +aof +rqJ +rqJ +qgc +afN +itE +twB +jiD +xTD +jiD +xTD +jiD +xTD +xTD +xTD +xTD +xTD +xTD +xTD +xTD +xTD +xTD +xTD +xTD +xTD +xTD +xTD +xTD +iCh +dqM +shQ +aof +ahe +gfa +miH +uop +gfa +pew +iQr +iQr +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(176,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +edJ +bEJ +wzr +ghB +rqJ +paD +vIN +glh +qyT +qfb +poO +poO +poO +jvs +czj +poO +poO +poO +jvs +qfb +poO +poO +poO +jvs +unz +jvs +jvs +jvs +jvs +dET +esO +dit +lIO +aof +mTy +fXz +fXz +rRE +pew +pew +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +pew +pew +mTy +rTm +rTm +fXz +rqJ +afN +glh +uUb +hVs +poO +gPd +poO +jvs +czj +jvs +jvs +jvs +jvs +dET +jvs +jvs +jvs +jvs +unz +jvs +jvs +jvs +jvs +dET +esO +dit +lIO +rqJ +rqJ +rqJ +rqJ +rqJ +qIy +qIy +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(177,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +gyV +uAS +kzb +obC +aof +nWA +sVa +pew +xFk +uiH +uiH +uiH +uiH +ydw +pew +xFk +uiH +uiH +uiH +uiH +uiH +uiH +uiH +ydw +pew +xFk +uiH +uiH +uiH +uiH +ydw +pew +xHb +aof +rqJ +gfa +aof +gfa +pew +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +pew +aof +rqJ +rqJ +rqJ +rqJ +rrA +pew +xFk +uiH +vex +vex +xBs +ccb +qIy +xFk +uiH +uiH +uiH +uiH +uiH +uiH +uiH +ydw +pew +xFk +uiH +uiH +uiH +uiH +ydw +pew +jAx +aof +aof +rqJ +rqJ +aof +qIy +iQr +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(178,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +pew +mTy +aZQ +rTm +kYx +tjA +gHK +xUV +bHG +bHG +bHG +uin +bHG +gHK +vQy +uin +bHG +bHG +bHG +bHG +uin +bHG +uin +ctb +vQy +uin +bHG +bHG +bHG +wBG +ctb +axa +rqJ +aof +rqJ +rqJ +qIy +pew +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +pew +pew +aof +aof +aof +rqJ +tjA +ctb +vQy +bHG +bHG +wBG +bHG +bHG +gHK +vQy +bHG +bHG +bHG +bHG +uin +bHG +bHG +bHG +gtg +ozV +wBG +wBG +wBG +wBG +wBG +oVW +tNd +gfa +rqJ +aof +rqJ +pew +pew +iQr +iQr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(179,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +pew +xEs +vwz +rqJ +rqJ +gjo +gfa +rqJ +gfa +rqJ +rqJ +gfa +vbz +aof +gfa +rqJ +gfa +gfa +pEF +rqJ +rqJ +gfa +gjo +pEF +gfa +gfa +aof +rqJ +rqJ +vbz +rqJ +rqJ +rqJ +rqJ +eby +pew +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +tPK +tPK +tPK +tPK +tPK +tPK +tPK +tPK +pew +pew +aof +rqJ +rqJ +gfa +gjo +gfa +aof +gfa +gfa +pEF +gfa +qko +gfa +rqJ +gfa +gfa +rqJ +pEF +pEF +pEF +rqJ +gjo +gfa +aof +gfa +rqJ +rqJ +aof +gjo +rqJ +aof +rqJ +gfa +qIy +pew +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(180,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +qIy +pew +aof +rqJ +dCF +sDz +rqJ +cqn +rqJ +uiL +rqJ +iYN +gfa +rCo +rqJ +wmr +gfa +sDz +rqJ +rCo +aof +yll +rqJ +uiL +rqJ +uiL +rqJ +rCo +dCF +rqJ +rqJ +qIy +qIy +pew +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +pew +pew +aof +rqJ +vbz +rCo +aof +uiL +aof +xvJ +aof +iYN +aof +qwG +aof +bvh +rqJ +uiL +rqJ +uiL +aof +yll +aof +uiL +rqJ +uiL +aof +uiL +gjo +pEF +gfa +qIy +pew +pew +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(181,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +jkk +qIy +qIy +qIy +rqJ +taO +rqJ +wgD +rqJ +wgD +aof +wgD +kXH +pJx +pEF +cHV +gfa +fHn +pEF +pJx +gfa +hcw +bnh +nAT +gfa +pJx +gfa +wgD +aof +mvj +pew +pew +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +pew +pew +aof +mid +aof +cRo +aof +oSi +aof +cRo +pru +cRo +aof +mUp +aof +cRo +aof +cRo +aof +fcD +pru +cRo +aof +cRo +rqJ +wgD +aof +mvj +pew +pew +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(182,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +pew +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(183,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(184,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(185,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(186,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(187,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(188,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(189,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(190,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(191,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(192,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(193,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(194,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(195,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(196,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(197,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(198,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(199,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(200,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} + +(1,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(2,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(3,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(4,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(5,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(6,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(7,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(8,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(9,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(10,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(11,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(12,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(13,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(14,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(15,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(16,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(17,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(18,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(19,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(20,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(21,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(22,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(23,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(24,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(25,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(26,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(27,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(28,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(29,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(30,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(31,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(32,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(33,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(34,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(35,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(36,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(37,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(38,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(39,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(40,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(41,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(42,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(43,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(44,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(45,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(46,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(47,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(48,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(49,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(50,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(51,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(52,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(53,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(54,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(55,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(56,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(57,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(58,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(59,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(60,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(61,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(62,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(63,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(64,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(65,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(66,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(67,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(68,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(69,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(70,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(71,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(72,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(73,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(74,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(75,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(76,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(77,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(78,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(79,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(80,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(81,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(82,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(83,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(84,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(85,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(86,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(87,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(88,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(89,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(90,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(91,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(92,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(93,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(94,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(95,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(96,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(97,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(98,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(99,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(100,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(101,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(102,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(103,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(104,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(105,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(106,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(107,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(108,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(109,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(110,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(111,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(112,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(113,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(114,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(115,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(116,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(117,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(118,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(119,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(120,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(121,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(122,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(123,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(124,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(125,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(126,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(127,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(128,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(129,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(130,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(131,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(132,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(133,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(134,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(135,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(136,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(137,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(138,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(139,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(140,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(141,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(142,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(143,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(144,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(145,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(146,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(147,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(148,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(149,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(150,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(151,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(152,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(153,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(154,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(155,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(156,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(157,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(158,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(159,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(160,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(161,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(162,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(163,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(164,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(165,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(166,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(167,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(168,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(169,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(170,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(171,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(172,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(173,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(174,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(175,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(176,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(177,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(178,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(179,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(180,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(181,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(182,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(183,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(184,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(185,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(186,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(187,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(188,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(189,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(190,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(191,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(192,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(193,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(194,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(195,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(196,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(197,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(198,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(199,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(200,1,2) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} + +(1,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(2,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(3,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(4,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(5,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(6,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(7,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(8,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(9,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(10,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(11,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(12,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(13,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(14,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(15,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(16,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(17,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(18,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(19,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(20,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(21,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(22,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(23,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(24,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(25,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(26,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(27,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(28,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(29,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(30,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(31,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(32,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(33,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(34,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(35,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(36,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(37,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(38,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(39,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(40,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(41,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(42,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(43,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(44,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(45,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(46,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(47,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(48,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(49,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(50,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(51,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(52,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(53,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(54,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(55,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(56,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(57,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(58,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(59,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(60,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(61,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(62,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(63,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(64,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(65,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(66,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(67,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(68,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(69,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(70,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(71,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(72,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(73,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(74,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(75,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(76,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(77,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(78,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(79,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(80,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(81,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(82,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(83,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(84,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(85,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(86,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(87,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(88,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(89,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(90,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(91,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(92,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(93,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(94,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(95,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(96,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(97,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(98,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(99,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(100,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(101,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(102,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(103,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(104,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(105,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(106,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(107,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(108,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(109,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(110,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(111,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(112,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(113,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(114,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(115,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(116,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(117,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(118,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(119,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(120,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(121,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(122,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(123,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(124,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(125,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(126,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(127,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(128,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(129,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(130,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(131,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(132,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(133,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(134,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(135,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(136,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(137,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(138,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(139,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(140,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(141,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(142,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(143,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(144,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(145,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(146,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(147,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(148,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(149,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(150,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(151,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(152,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(153,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(154,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(155,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(156,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(157,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(158,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(159,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(160,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(161,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(162,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(163,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(164,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(165,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(166,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(167,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(168,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(169,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(170,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(171,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(172,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(173,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(174,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(175,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(176,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(177,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(178,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(179,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(180,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(181,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(182,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(183,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(184,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(185,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(186,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(187,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(188,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(189,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(190,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(191,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(192,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(193,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(194,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(195,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(196,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(197,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(198,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(199,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(200,1,3) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} From f39ed4cd7b15a1c8bb935b3c1ef0b5141c771810 Mon Sep 17 00:00:00 2001 From: Lagomorph121 Date: Tue, 31 Dec 2024 21:59:29 -0700 Subject: [PATCH 02/15] Fixes. additional stuff fixes. --- code/game/area/Taipei.dm | 28 +- code/game/objects/items/toys/toys.dm | 52 + icons/obj/items/toy.dmi | Bin 12454 -> 17818 bytes .../Taipei_Station/Taipei_Station.dmm | 1083 +++++++++-------- 4 files changed, 663 insertions(+), 500 deletions(-) diff --git a/code/game/area/Taipei.dm b/code/game/area/Taipei.dm index 124e22f118b..6bfb1dc8c19 100644 --- a/code/game/area/Taipei.dm +++ b/code/game/area/Taipei.dm @@ -4,7 +4,7 @@ /area/taipei ceiling = CEILING_DEEP_UNDERGROUND_METAL ceiling_muffle = FALSE - powernet_name = "Taipei" + powernet_name = "ground" can_build_special = TRUE icon_state = "lv-626" ambience_exterior = AMBIENCE_SHIP @@ -13,11 +13,11 @@ /area/taipei/underground always_unpowered = 1 - name = "asteroid" + name = "\improper Asteroid" icon_state = "caves" -/area/taipei/atrium/club - name = "The Velvet Tassle" +/area/taipei/club + name = "\improper Velvet Tassle" icon_state = "blue" sound_environment = SOUND_ENVIRONMENT_ROOM @@ -63,7 +63,7 @@ icon_state = "yellow" sound_environment = SOUND_ENVIRONMENT_HANGAR soundscape_playlist = SCAPE_PL_HANGAR - soundscape_interval = 120 + soundscape_interval = 30 /area/taipei/hangar/landingzone name = "\improper Landing Zone One" @@ -71,8 +71,10 @@ icon_state = "lv-626" /area/taipei/telecomms - name = "Telecommunications" + name = "\improper Telecommunications" icon_state = "purple" + soundscape_playlist = SCAPE_PL_AICORE + soundscape_interval = 5 sound_environment = SOUND_ENVIRONMENT_GENERIC /area/taipei/atrium/laundry @@ -81,11 +83,11 @@ sound_environment = SOUND_ENVIRONMENT_ROOM /area/taipei/atrium/store - name = "Conveniance-Mart" + name = "\improper Conveniance-Mart" icon_state = "req" sound_environment = SOUND_ENVIRONMENT_ROOM -/area/taipei/atrium/theatre +/area/taipei/theatre name = "\improper Movie Star" icon_state = "almayer" sound_environment = SOUND_ENVIRONMENT_AUDITORIUM @@ -100,20 +102,20 @@ icon_state = "upperengineering" sound_environment = SOUND_ENVIRONMENT_GENERIC soundscape_playlist = SCAPE_PL_ENG - soundscape_interval = 25 + soundscape_interval = 15 /area/taipei/atrium/restaurant - name = "Sal's Noodles" + name = "\improper Sal's Noodles" icon_state = "pink" sound_environment = SOUND_ENVIRONMENT_ROOM /area/taipei/atrium/bookstore - name = "Lots'o'Books" + name = "\improper Lots'o'Books" icon_state = "yellow" sound_environment = SOUND_ENVIRONMENT_LIVINGROOM /area/taipei/hangar/cargoshuttle - name = "Cargo Skiff" + name = "\improper Cargo Skiff" icon_state = "green" sound_environment = SOUND_ENVIRONMENT_HALLWAY @@ -128,6 +130,6 @@ name = "\improper Departures Elevator" /area/taipei/atrium/hotel - name = "Short Stay Room and Board" + name = "\improper Short Stay Room and Board" icon_state = "green" sound_environment = SOUND_ENVIRONMENT_CARPETED_HALLWAY diff --git a/code/game/objects/items/toys/toys.dm b/code/game/objects/items/toys/toys.dm index ed096191379..7c03c5f745b 100644 --- a/code/game/objects/items/toys/toys.dm +++ b/code/game/objects/items/toys/toys.dm @@ -695,3 +695,55 @@ /obj/item/toy/plush/shark/alt icon_state = "shark_alt" + +//desk toys +/obj/item/toy/desk + name = "generic desk-toy" + desc = "You shouldn't be seeing this." + icon = 'icons/obj/items/toy.dmi' + var/on = FALSE + var/activation_sound = 'sound/machines/click.ogg' + +/obj/item/toy/desk/update_icon() + if(on) + icon_state = initial(icon_state) + "-on" + else + icon_state = initial(icon_state) + +/obj/item/toy/desk/proc/activate(mob/user as mob) + on = !on + playsound(src.loc, activation_sound, 75, 1) + update_icon() + return 1 + +/obj/item/toy/desk/attack_self(mob/user) + ..() + activate(user) + +/obj/item/toy/desk/MouseDrop(atom/over_object) + if(over_object == usr && ishuman(usr) && !usr.is_mob_restrained() && !usr.stat && (loc == usr || in_range(src, usr))) + if(!usr.get_active_hand()) //if active hand is empty + usr.put_in_hands(src) + to_chat(usr, SPAN_NOTICE("You pick up [src].")) + return + +/obj/item/toy/desk/newtoncradle + name = "\improper Newton's cradle" + desc = "A ancient 21th century super-weapon model demonstrating that Sir Isaac Newton is the deadliest sonuvabitch in space." + icon_state = "newtoncradle" + +/obj/item/toy/desk/fan + name = "office fan" + desc = "Your greatest fan." + icon_state = "fan" + +/obj/item/toy/desk/officetoy + name = "office toy" + desc = "A generic battery-powered office desk toy. Only generates magnetism and ennui." + icon_state = "desktoy" + +/obj/item/toy/desk/dippingbird + name = "dipping bird toy" + desc = "Engineers marvel at this scale model of a primitive thermal engine. It's highly debated why the majority of owners \ + were in low-level bureaucratic jobs." + icon_state = "dippybird" diff --git a/icons/obj/items/toy.dmi b/icons/obj/items/toy.dmi index 9f78fb92ae37ccf4c31fc695f23888245a5b10b0..ee9fdd32ec2e327b9f7b457d686eb130cb020a6f 100644 GIT binary patch literal 17818 zcmce;Wl$W^w=X&{xDygwlOPEMceezBOK^t}+#$GYf`{N1EI5NpaEIVd7+}!B-DTi4 z|8wrEy64k-AMUMUcFlC}?q0q2TEC^6Zz@VMxLD*^AP@-mqpY+V2!tdKd}uMyfFr%1 zOOAmbsa~J7U8T)k%$%(pU9BAKK_HKe=%1bTP_(*-gj(>!LQNG$)&9&5jZIA2whw8sb2G3xzW^e5`I{WM*j zh+oIVot6;e|AT-o*LHIx-uP3;$%p5E9plPvrJX*Latvr{T2!L@r!A6|R+z~IRas!= zeP3VwR!r)7(twdHJ8t8SYk~37 z3Y9&v_4iKopXFs~r^Wi1l_$i>vhrTIVI0|-7^++Ag_|f2I)8|Q)w4$K;I)t1iuMDq zWQf9;VIz7l0D-fbEm*#uj(7(6MCan*<*k9O~H+cTbJwoH@6`bT+tzT<22zhjnvZ#jF)ef*XNmxc^| zK*HQ;q9lp>r63S3=%cj6Cy$JSOi%q!8jt;A$(bnnPDU>Ox2;5(L%~XtD$$Lz4gdIBoq~Df4e` zZf?rLj^q2a^>rN|pO&|tY>B*Nw5m3#f^KhZCi5|~yblH9FyG4i_y|Yd9Q#KAAC(1^ zbzruF0*yuK_P)EA5rDf5YCu?GTIQJkO z#^xIv{qK3c2@{NONVEMP1fJ#>6)}BaV4_)zV1{=;B7t&|-bbn6*>Q^J&bkB}NU2u{ zr2dLJhIdoMk~T%FDA|=D6V?5Ap&71KrrmjZdb)CSnl3q#4TE#)#YTPlbQ5~4_Mh;TwH{t zq!FRXG@Y$t%6&ueN7x#oCwqxwQyk_WnCnmS6zkf^_cu2~-Np=q3JW*oZ*thtqMegX z&N^vXvhw>W9vKz6*DO&q(`#+&klrdr7(FM-HN>vHIe%MmE+76-+_RvyJxgx%BjE=K zbVyCj^yW=qVIiZOoE!+mXTKN_8>?IZfy3dsZhNz!0Eu8Ull8vn#vfTRPlSRxRL{Tx z0RbRN5$B%I&`oTT0C?;Qz&?Jr-RD_Y`27cEEFc2ID&odTHY#bzYp(quGQ3U*|C8l*QnT7 zeB>b^a{H}~l>KHugkTzv4O$0jT|r@Co?EG=QYtK(g3obx`VFP1Pvc~pJnWt1ku%qF zy;=BR+g7$ebwaE%GUz^@9`SA&Ao;N88__=SiHhZKc0Xdhi#43xMSd;HO%Us*$nkIa z_ccZm;uAjN?kZUb(+!VP+*=l{NODFt0IkdTlxqhlF?dr&Pj z$cT56fjW*yXY=0cSuM8+w6wIuW#|+7S*-mT-7 zK~tVFke;@~PN<@OGsd6^)!&k~zX<7O{Pjj~g=l(H=H9b=JzB*!B5Ant4@aO9nQ^)@ zSA-xka)9?xFt<#uc-yV_ z=HC|}acI3AQpyK6^)I!iJ`N633?nZ%#99r0a0e}nza?S(Ma>5=r0fvK!J$}P^{j~Xwg$Bj=UA@Y_4P$y)slR4AX8`2c1j%G zDc#!?9vfmln^~57n_Jh*%|C9GpjAZsZ)J;ss*(kITCMBRK?S@eN(Cm>~M$wY!% zG>KP~U$2hFgma~0Lcp!E%pd~>y$I!NVVf&o?>RyxYB7j{M0|OH;o6S9cjh%Itq!}3+Qt!@`hSyk(<*FAdNpdrVVzL^xqcCY72JiK7n^hEmQ31%zI6?brOphFgR+x^+AgiD`&x9ROOGIBJU zDHQZZE;@}tGa*m>O-VaQF-&|QWFEy6yy*QKmO7Ffc-fVy#T94DWS z6Gw~DT**6^^{lm3%_afq8Omz)^peFFj3C;Qz^9YRq5nNrCK1uljOA+w{I1_63gH^h zbF8C0`BP*q>_SFFWHuceqiKgk8RYnU7c~haimbK(>WNP#hv(IcO7LU94|qmv@mw=; zFeEGti)-xzxH`qL?v}2PCp9lGPveG=7Q>=whVYked~yM|Y$l%kD_D7XC~X#*REbPH z3gYxFE9f+|LTaE8}~NU1iu-@EdoT84QJIK((&$`szu;{)fP&wmb>Rgh%`Kiktyd-(mQ z;P|?>h{|*3=lL|x@DcW3fUFWKH1(O!A#esJ%B$7K6#Xd^DEYUKt+X{F+Hz(^liz4D za&=3%#Vz0)?y~`sQc_JlDqFTvibS;}#e!lPlgYo%q^y{3Uu8(l29A%C#+4s9&X9$P z5Wg+J{HKol6&~If@0waDCA|OsDcw{12Kj`+xL-%Lh@g@)Nu2ilW)LqnM9?(!VvG^9#( z8EbhpLNTGg9_i^&>#PM?^r%rwF<%3AvHpXLbuHps-L&Ohsog;oJc>drDH{0b+$r4F zp+^!LyUiF0V3*dkwyRnGEjFi)mYevuZY%hVh$wL`_FJ)ry5%?Q>&Z|%c2{w19G~gN zgDV>9j<#Se#h8Ch>)szB@;--^slnq-QgM}bhQl}+ABDO`zMVu`B!k zYN~hByJ!0=Yvvrtr>4p<8!d8Y^qvnUVJI9f|4EBO%RS_@zt{e{-{I1j?oEje6AEh} zIqwod5&`|1tTzm9kLwK(g;rt}&pq^Xid~tCkFAb#A7O$L>s#5~>RE0n9PZYif3JFI zW7wX^Ll<=227zSd<-1ST`%i|A_?*OA*b5}GSkOEe7}7=_5e^}&6DvxljQjVOG-eA7 zZW66=H4#QXzng=bb6s4cMizcZ2h>X|)c5hnd@xh{9Z1VUcyWssMLLTEsytfJ(9fbq z23ej>X_!FA+Nl#1A4{{7@;-{ogE~@cr(}K4TtER(m*5aP^v6Z!^auZ-^gIAsI!@O4 zy)RizFR4*L!n2|Tpt#c>sd=wU7DrZP=L0T|3ER^}&+TbjFgeYDBy+ob2RF^SQoFpY z*h&}~5nA4rx_T84L)t&iU52zjZ7G! zweD6_3W43v5*yEukdW!LI_bV>njvcH{ZQaJU0qjEgv(u5F{}26PC2(j4)WJKjKae6 z*lJ&~o&*;+Vmn|7oe!IE8IXgQ7Yo^v7s;^tyOl3E5!HppTu>%FcnxuDxVOYuW$ishyDFUCo1xg1~q=j#nL;+m~}jpsKq4DdqWzz%AG z2g^8-g=wzcWP@cuPEHQxqdsI(drGt0F)@J8P~+mg%Qaz=r?&*#{r#R>OY1KZkQsL) zAQ<~X9xsNHmFhgAe&TEkQ1ZEOvH#j~1oc@SD=b(6Y7uRfm&-!^iasHMEys2UKPAHl z6U1)6$e$tNJv)EHVV}`!mT&rSc)7!7#{`u(kJPq0$d42p%Fx*Q3di z=N^B278@Go%^}kM4*vMiptz;^nKX)0L)2xes3fgSGjU2S&06w8>wqS1!LrdOJiKw; z?7T>oRK)r@ARY|>b;nfHYca7L;H;h$B;_Y26352>xLY+pO#^sG`04}3jH!ITY;Sd- zLDfUAllGPc_pH#jOc3ZKQjM^kY34Ijuw7pJagCpaVt(egi=G{LLk3!U!W}`rV5(@5 zjY4QgL$;4<80{P>5ovC0c@$rm209j;X*fgf4)UZV6q=7QY0@mKP+**Te!(zB;PHO zS=-w2;+E1;h~&V5#rcTS4&+Qsl0^Gb%b0u0RfOR3@z=GH;$sIBgDCS_x5%(edWF znN5E^sp>N3>Dic=ne!?AB0k&TNUX)v5{m{z>dmdCD!U^GjAI6gjDa`r78H5gU{>p% zrGSOOF64r5Mby`bRLoeNZY49TslUZim}c8zK`=4BKxJTHaL##)^N{r28`*0mQn7*E zH2~mYF9S^!HN9`$9C;dC|d{;~FD{r+j zW#T|y_D=S*a(Z6DdZ~OQ7dG9;KwxNk=A%)o-ap#qh=1bUlpWw`j&NGt=P1gST&iBs zN;Gsi@f_B8VCNjA-vgfwzg$&G5sNGX^t!6);y^Te#4f-G30_Et{C1(HCyY)@VvDDw z^qIT~uaCz3M7@-g?)BNf5-U4$_J>xHi5wC6&zdvDOow%KjDnw>zbQ1`eE#=32jKwg zEKR&T0@S_z@fdW7xgA(E$5@rT<6EUVozc7`SSU+%LA*E!Al7)J#*W(|Cix~oEX!iVn+^e>nt^WZx zhOFCPAgLBUy@)j0#xEHiJoXBqLn^VPf8?kOOPHoR44P|wnhOC`zSg1sM-hZj)0X;r zDZy&v7Y;!hbz>*LH8TmnYlYNkv@>*H9qO)MG_ZjiaaPztE1NfyyJxMfR~`<$?sr~n?!u}bEt-g?WC>G)xlfWUF!w7;N9_i z6W9>M$N0>XJ{70)MWuPPantPEdN*HF@wCv1^4-W>DH}BHIa<9d$h;TqVD@O10He|JY6HF;Mnj=$^9ANU<=jujj=e z2s6l0$9g7e97u(!{f{Kr|456yymQq?k(iJ98n1b3VRa#Y&Kuhc+}+BOl2&4xpf<9$ z>;Q52Ba5q2-uJb`Sp8tg^sE+`Q#_~$$&$oM=Zwy&?5OJQ{u3%g1i3UYOLjTyp!!zhe_MYY>fRC?iGBIJOrp7~Zy5B7{r*()TP>V_6CbF6PuVXDp_UBp9- zxMCsZQo`Wm=vd~TkdxSa*?S=4#}lQgcpvA-1v9@Gd7@@kw1^qF>cgWq#p=W5$as!9 zt?pNxXE8c=7krKFzFZl9#xcgCsRnJ!@qj==8aH2qNbKY2dQp6Fxq}k3zk4laS?nE@ zkEq@}gDaD?{(V9izuW2`gDraSYmD5!SG?`SisYsvqp*+z5JAJ8yZ-2~gjZH)#o3Ri zn@Jt)7B1W-tw0e^Bmj4dI-Em&m&VO4@WlgGF`s_U$NI^TqvI_eh4ErN%4~&!5U8U! zl7vvy$u*jC>lKO3I$kvpVXsXV$a{$T1gy=CZnf)r(hw4M-rwKHWoP4ODrs#!UJd#G zp~Y#BAfL(de#mqP8MApr@LROOme0_YEnn*$mA>oNot}lnoC|{|&)zP8kXCj_^cWaC zF5vH)$82hltm|}VOXt`rg)W)BF38b9+t1@sLHxBREO-Zx!6$byRCh1DT7|(hM9-eh z-&Ys#-&pqEG$VeQn=rSWJQ!M$m=e0M=0)|kJ+f+6=ns@f3k~p=-w-FjaC&BWQacnX zx4O|CUEnPvFJT@;RC<3tX2sZ~dfM(ZGZRoWr$j=NIz$&Qxn}vsy2I!0Pu_NPF~-1O zzJi%T+6C}OzzF&||DA&5`2zXmN}D-W)|W4X3_dFNV}nG&!h2}K2YcZV>{AXq<(3Upams_tYdf|-_~bEqI$9HzPS~r7FjkpQOfi?hdVvw) z!VzWZeB+HD)&Jk)&Mq#51Oy;_e0+d8Sdja#O}Sl0euzj!D{Qy|cv_ss-VuYq7-^B*MSAf{#Rp>X$f zV9!X<97GOH_hSD1v)xPRL3Yu_Os4vn1MDQgCBrV!p-lyEa=dlG@jCX)-y(BdJ%{n) zfB!lFLc(Cc5N8(yRg)PH56Jv0=LAc_$KJ11#~$C-JN!Zz)1N~|Iw!xynx!P;`@Lh8 zmf~}lKC1Gij4K~bJ>$jpb^c=<6z|aTWfydHn!P2z53@0m3Gkjt~U8(R!n$ue0-om^Vg5|ep7|f zeSaX&#!F??ZRgM5QCoWJ&HG=gffanMpT$tMBR%jJE2@;vRI_$l(0OjtU@TwJ_7EEH z#&>sJ`d?Ojy>25B`_7AC15=Y)=pSz#kLnLDYnca`BIFBk`cRkidoYQ7th$(ZSL2a_ zcD}vpYFug$rlD=UKg-mv=jr@{n~r$U|?9G?y2e;uOtnc;g>ARA$a*j;%g;YUep z?1S}r-FxiSyH`ZmT6PV0PW(_PC>&4nT3VzK(6SB2!gb42Lj4vGLQtIB8JZw$4oQy> z5^Mw)5dwE7X>5}*>8CRZ}1<>}($5}%$NPNJqBUo?SnC#9x- zLKXlNKFPVo#RD!1u&6c%;$NlQPQO-2=fwr;8l)m#-1f^Y-@3!U($diZd0V9G-BO6- z#sDF=J&OinB!Xk@O!DMdNBi!mziGu+)mGe@jrN8TL<`8AEcKrZZ)#&Ia!)!BSg^Lx zw1DD6s(!KeXFDFAx{G%wy;t7+@?*%#I+dF94o3oZyyA#9n4{$*jRJ%(%@|_X9dH+Q zH+rAQ;OZm&p{+NcH2@U%g-K#>w!Ermj^?pV-4HQYI{%mf5z}q3kG8;}|6v2}Xn?w} z^n5b{;SFTpb3XLYN71E!&+4Ols#||l4{f19gK`oXtN&m6eJu|XT)OV_>A38m| z<Pu^`9>)D4-vIX+`U5 zb05NWQr(-KpZzT$_}d`qQ@X>M&3q&3_44vza2Pff4Wl0v8^~loSx>oTg`RJ)OXOAX z>#4`wvKMJS!uV{5cetxWGA>dtVWx=pR5Vg)XyWZ3$9nDLjZdV|S0mlEXf-+AFzo!w zb?cB}PznM9T34S9I9w7k=R!zGxF34%3jC5QGL!&v6UTiN4vq;7il$netm~F)SZNKm zVYBa`#y6*%i+4xuY&ZH}1FEbe`x&v0nsKtt7d7!7oAmnYUi3dUJ9CBRwOreC=su;5 zEYF;YO|>>(I@jB&UT!K!O&sf`2lOfz%*pu*R52qzKU>R~qoYPoaXSl}F)J`08$li( zZZ?lXc8QD%(^l#a5NE+U{xCMIr>(vnllr3+Y{9DETV7T=Ze6z@KgfptoAmCX*>dT^ z&%}GIUfFE#(yNVuhgrNh#v}+qAxKiX`?S)n7(5kmjo$fmuz`R!1 z)PzzWeTXKy@KZ;fe5XdO39 z3UM9Lh6*%!YzU*JnWTS!ulK%NH${f#sYeq9y!zF3S(_d)(57mgFYb7rm$IWZ`gm$5Pm$^oq4&Uw|nR9Ut#dHG1VH zp1tB%9rXx)>lO4!w1O)pCN?}a&?O7;t}MJ}O{%kv0#yH=u|f8f+L(jp{z~ZU=8^i7 zROsK_J%4gIM*z#dF4l19C1&Wo!|~4#@p$(S?JFF@{UjN2k3P$1P$Mss65HD`;WM0} z(a{fiAEM(jGou0H?POwN67{%Pr24ANsNHb3P*U{9jU%1sGu_K9Ke_qecV0xANB$IS z_}=oG2LPh(C%`%Qe|{xHJlwN|eefSRi1bXP+PQgl>uwpG40$g!eP@FwCh#U!s~%}; zZvHB&RABGRA8e84nTxKHa>(niVpwxI1~yN2NiVh>TuB<>w2ci@e?v0i?YHvs<;!`l zhSLeU280o2l$zE?XU5E zbIB6b^Vm;5j}GVNu?mZe1S-dXo0n$G{O(<1!PeZfp+eu#BFOKY_cgo`(FUXMKYXZ~ zxr6ncS{Y&HJ==Kcx$QhkaQ0T-h6|j2n@mT>E_xGh80F{R7PDcwHG*Fh(bEHcSpN*+ zR3ZbB+H%s=T_pC{gEyeL*Czo1PPDGGBNWwjVo2f;_av@NrT*S1pPxv5P8ON&2Wy;N zUD|1#xczeSzovE?4UbqX`X8w17A9s+V*GoArqjGw0QFsPa}EF{BB6gu z7uMJ64}&zB5B{pPF6)f`tuT^V3BkBDX${kcjVqH{HUkldy|0v*k2Zu3nNhm3dT(xG zFLU$971}5uba!9xV&2Bye7(a1oXdI^k@zQpwu9M0PE&wU=JSSL^>%n@Xx06FNq@-Z z*48T)76oEoP()OeY1PnjcULGj0U25EwH-DItN4EPRfwH)^(8FUMSzbD8=MOOZ)iq( zausl-ImBd|$JQD={O>YwhGM86<~7sry`k{Y9&3`(S8JAWBTpABd~?$!_jrGMrF}Sx zcU;`k`p`3%@dr~j``kb$JB~z`I02}N^}>0@gJ>iEppnr^5U^tZ&#^A;=g;Tx!^6>_ zpdf8Ix$g#M5>Ls5qPqP2{K_`pJJaKpPEf$~^rv~VAh%giU3*L-qB!8sXj$c|t>*l( zZfdOB?^fO|DTBTr6IR^h%?g!DPyrg%j7jT@K7jVQI{*A6 zxlC(s{elKM5F}0hIFlt1`O|nkXkUxfs86b!hB)Si@qz}_aU!O?R%|u(?>A)jUuL$G zlaoT;#4iU}TjC`Un-WRYh6_G{l|G?lelxuiJ9g7>c6FJ3->@_ZABu*}np@uClN7W12YES18rKO|B>#%X zgYp!fR=0HCF7F1lI})Amk&$MAp%c)rvsALCmbiA;oB)`xE=q`5B&; zz2zGO7R1}e2}A(L+vlVOs|cT}moAhWJ#ZBo2nSi^ePAzEASe<-&Ek`=7^BnhvVLhZ z>pNJXpY)Zk%3tkKA~tJj{QcDXi2M8izINa_($dlxP&Yv;5XM~+i_S~iQmkg2IKDO# z_&X5jKGTzg?fF&7+x= zf)M^{c|}DYvIk`GB64|Zq>2cGPF6d;SnPkOOm6Poq0rs|Hjb6pQulbHPXXX97su-< zdP{W}374T)%o~#+pE`ARnmU!@1>8@h$5#%Uru*DR^abAp|Mu3(OY+PUdQ1Tpqcgvs zSu^JDGW`f8&+U0ziA{Mq+nYC-#l^+4ii$5vx;0Fu*i&9qG0$u5wMmLN;ECwXNwsTU zu-`m{X(KF|?|IHdr7vuP=FoV9vtt?MaM66uANsY4E_2JI&}!Rb%-TnH*Y=`;X%!Ogl9ekFq>*sx@G&L^6~LCHZ>tpt{fhs#jLC7Vxf3& zv5+nxyPtkni8BiMv5&m?QLev~qx8gNKGGImp-j(*dS+et1D*$nDSID@wPrKY&_R|g zGwN&Yq+pt}FU1EoqZtCkxL-H_Ch}Bg4*xreT08NdT|nL(B|5p;9N1d-&yo&5jbIZJ z>M!2LXTN+n)wX$*mv7z}Z|d&u766U!xJo*(J4D#bmPvg1@_YPJYl(pL7dcp;usH|; z+oDhj;{=K8=#UAEh^)X5(SE)Fhl+LA7*hz#kFI}tAO?v~6f11_`;r%UhNg&pVNDwR z9JDszkP?Nhs<&bKtz^dD<{+zk#RsMF(ln6WuR^@mKpz8|g7{<9=0nE8!4c)}fUAcE znGRjzN9pr0xO_Q^4f2@Xmy!4`T#R)h0IjtO-rlzKB);>y=jbdNhJqmaZMHmVHPS~L zc>`}8U}q2`*z1!0iBh3mbd;6rY(}aWWV_BRrpkrvzGipq6_;2N9N-No|Kfx)4MLHU z8i+GiQTX}5DrmLml(Cc$kLM^nXf2B!--qJvnrlVmt*URcn{xP1xZn?mows+~n!GV!yEdvnIZmFg6u6eJrVBq$rnQ?-Reu zva3$Hsc3X3oU$k|S7T03ITsE+T4mVsv2Pptcj6;-m9VWlu^66b(t*IseP2~1V3f=G z5L=URkhNy=N;&;ty_DGJQ}5Y+m9Pm7%|VDhTEGwkggLv|Q0#T_c*S}-A&)z&-ou2< zVy9joPZSjglDw2<{wUEaIF!|FXR?5SaOLshG#tTEW_G@3!Tr;r{ib5U>_)aCIAP|C zcSK|)(F3C?(MD-|eHx95B1($;9jma&l1dlZiq+>R z4u_tJl||yCw^$>tO<=WA0okLv!E_#45a!!rfqn1MYoD6tvIz)JO=G1$e!%G}ooP%# z%BQjGuMLHKujeyGix(QeUL6mIvFhuk^Biv0M>+KfL|5UBM=Y<)flD@aUPBKaTzW zJ#Jh&Oq0ER?T6`459Bg;qQb58RqU3@)>a;}rZZaWLw#O{2cKo5^gI&so?WlpvyQhK_*(0!p+%~`_YOyF3{=D;;PhX9 zHNOXj1|DtMQs zswTvv8tl}ZJ&$rw@Hd;dVUnBl^n&U5B&=DFY*FOz3S1LywEU$*YA3GyU$49lWAWk~ z6f~(f+NnroWjJB1(JShXB$ak5^%~bD*=wz>ti#{Uhd`f5X<|KoAf42ghzfO2Q9R>6 z`^u-M4T!h?^kP#~JKh_Wm&z;#5J$iGu(~q=)5`|VnsN3@C!nz~H%pg~#vx&>{zq~G z82A>sRhxWTFM{?7Cj#v)wSP_FL2Uo-pN>*d(y`^NiDx&d)W?`ip@muibVf4_G;uig zx&A5}#{IXbu#qTY$t~8WqN(}4x|)-e(|Hwvz$_Cv$Nfx(B}EYOdN@rad}*{D+%f+l zIl+_Y0^nd-q|Gp9q>%AwViK&wEQ7cK=x_KnL@lN*JV)@0Qgw7kSyG7&oua%(J{ zezlD_KK&cIC1QSjZhCyoLi7Oog|j@cp_w;4LSc>u#tBm+O>r8g9cl|6gAX&Fy^7Es z0J>dt5FHF%TN%UY+I7~62Ic~soIk!P9*>qoBch|rIs8=Yunk&2P#>S$pt!p$H+naA zc27}JQ`>hX&=pW4Ru2vEv$CjPxIkwM|jpBNNRve{iyKsCvdJ7DQ`}I-?obTLv%{9FQ29-Eja_jMpMZmLfyPcfem%Z%10z z{zCv7xW@=8dI5BD2|um=_ttRD1*JY20%^N0I-oceRD?Y}7&?I&L~HxM_ryK*$Gv|B zR`~eQL_$J><@M{3g8Y0Y!H-OkBf$4xTw2nY!pFpXI#;q=n)ryKs^_!-Qdd*chPC;| zr=@)#9##OFs3iv_2lmdM+)O9Lzc^am&3Ea3Y5-@o5}>3Z|#jY5kDUhE`;0zuu2LHGikgmG0-T$lm(@%1ym1sr3YiyLm>H6;tDQn%%GaM@T`o)5PvXN%5I z`=4*Cf`AtA*wg@7za*}{IUC=dp7(0CiTH2Xv5hti)lTK=;2QBbh zXS&%f=)!eL(c~>0x;eS!Ke73Mx0BFTery(-DH6McHbBBD+Qoi!9S21jz9>J?lFWAS zCrbbE<2EVR)~{WkkY9o+uyMf-57tyTwPPHKsp-brjKeN0oKZt;#iCO!ZRx!WZGfMLZ~Xk_i|I%jPmtf|&#wW7n$Mxraw8SxjLED7qvKcnd|bmLd&BRvhCH~%vQ+T`_jo=2Y_kknI0cQVfs@qz)ow;XoorrOL)ee)z$G!GVQ%T969#{GG4NN8dLP*kses z>8q2I)!z!KL2uN5{{qN62^+Y>dF)T8a_|TZ4UKv9sH*v>KmaE&V!w@5THdgh6I`ypPL1*#%=j zDXO=^pn1I2+dX-T#2;w|U%2BSiHNNf7EsE;g zFSo#_1_n#j*Fm)U#6Yvb|FuyEmz|zI6p%rIx{9Ja6janIARnSp`|VF?>2kldAz$p` z99ufl>9^S(R~11b01;D^3c;Y>I#1sMw?tMZIioz?4=W{CRcUkYl!6!M9A-e+*w~rR z6o43UnMTBG`tV4obS!Ubhf**(?>5Pvvgx9A^vG7i@q>{M&6$;o8cfGd z=HjUNNc3YZ)r{8eZK*zS4Iq6NJ5%T&$J=wO=Glx*hv__-*slKm{+tVIn>;^#eM(@d zA|fIJ)NbMNszAy^Kmd~6{-G-C#=T&cgao8FE0(0|Kau+$10TQPM!3T3agNtFwnPco z2i2{Z${C8((c*bV3OdHDMx!|Z4xoZ6jXROUN%ktDZ`b={(T!Qyx5l!yq{Wz+WIdh` z4Dd8L1t9)|Kj`7%SZFL}55aRJd#SGq+Zx47ei<dmr~APPW|?kzXolVK|Ot3;3m> z_;cQa0*xUO1a5@DmMEazJMKSC-~Z>v`MS515(FJRZ0ezJ7FwaGdE2I(^$7V_gXc#) zI?W7)NC8qizcAuxBXmRO?>#7aOaMWx1fO+jxpMql`%14O)y$yZ-ZXJy<%pvD{2T3l zew8Nk^GgOYErMKM44^=f*orlf9`&$C^45xP)>H#gn&kl!pF(>nJCOg^h)!Cfvh_A%ls9WeQl*>ctv3>N|PJ z*0q?xd5L`F>Trp?U33y^C*5$8RvWMcY@5ugv?YRR33QY4wa z=ePAytL!b0eEVPC4q(sMEMV6_9l7r#fw;%MhBSKskZVDovu_tSMy?&aL`k|v858yQ zOasLZF`j`(PevfWja1YDNSFT#6ODa7=YZ?(?oQXvLms^bfX?KOmH@#*e}8y7r#Til z!1D~Ax)?Xh?{&@uGXDGX4JZH=o0va?-^CZiG}oY89?BzS#H_2_C#w%Z8?4P5oc3CZ%ij9aWU_R-sx4gI^Sv)pLQc{?j z5W{za5HO%GX}9p>=;Po9oPUVjaibtl@Pco59LE>&2K|$&X8bH10*aqMZ-pSlMhHh( z_n;5?&snYYTOzC$E=h!(9w-P2d+V!ob`}a9hLDrHy9MCH1j?r!EgV-%vw2Nv4Vs=T$ zdDZo%(4en5mIBE?@ZWn1H_Y+K*e16+Y3Aey;6z%!gcTyq5z$hgcMB*p9bwkt;Wqhv z*Jr)SXxB+d=hMMe+DKhHOf*m%*6*Y?-RY1$cg?5m9{c&7ada3c?79%Gf)%|fnEHNt z;qSI*QJ3$m{~1RleJoH0TEFldtM7U8eJDe zq{*1PYQ?($*bd+QuU#YKX|yO3jVw>l^8bHSQVe518Tz!EDtz>{bDmq+Xa-dcL-OPF zpT`lmNLB_jXgjx?pHNEFN6K*A@kJ+Ks!%pL z`oBvyT*kJW=@!Cbf}%*Z8^|oe!Oyp)g8V9zd_m2qy}PC}qA=g;hZ8E@LU`PT@$-Pc zeBq17RuiI#)Jnzjw@ueHIj*7ve>dCHuG;Aj>TKrz`aw=SOCN7TVKFU{oPA;{a{J& zk6Pw*8mtmxNz=uE>PKk9Nz|@jK1%!$f_#K?W@lags6wH#`!F`SCs2i1qywKGPddHL zBu7gqm~&bBV&>4v#A zBz`Sad8Xr0?H>=)oS=Qb4fp#8J?rC?--qwYH`_hcL9uyO1bg1p%_txbw{5o0iG{J@dOmJ`5gN1v z0qYcip7;8l57DwiG^Y4zsg(bqqdVWsmOqM;E~5U-)_?uGaYu3S3)RGLeoaV&(d0Kq ziEU|DVmm^GN1tA31EE7&e3$lAGUx4jY4*QNp#wn4jn#1L^0NWfLLY8qPP-Zq(airL z(k$%{ww+^(-_x7ZAc6aUO|Y6stx$nB*L_P^Zqk!h8BSZvAFr+_E7q1yCjUtL@t9Op z3_J`PBc)*sfM^27kTE;cE%vYchmIO`cckAM9Zv6B6q2&}=8~&9^cOGt-Niq-AplY0 zt&%4(kwv5Rd9c=-6I;^@4lLr!0q26ey9WMBpA{d1fo zUHK!Ve*U2^QLbNmGP(LV8c^NAN1X+SkJ&Utbq7Y|N{6ztWn)I}5tnqJQGC1#%o`&r zITF9gWKCGH342lx5tffa$(uZ1>`ZdrPLd${9p%?&s(`z*sUe>8O8gVy@H&4# z$w1}4s6sD8MJDku^4nP7met*@^aopx_2MioG1$*VKM0Ov& zvucF@gzfBv#}M>ihGnyH_Cl|hN(sf5DX$0cav{SOQN#HV_IZV@wvx&lI zXP%XFk&D0Ai15d6)T4yIOl~WWYqQy5c6-#z%h%G2x^be#Ygowr{$I$R!)w@XfHpv( z$|U#h@XFO)W==c-Pw@4UY=ca$+`(>)QDe^;U=;G7{x3khI*eGh-F~ms^AU=?1BE!a zqcFvEY&WTN%@lpSYA?6TbKWZreLiw zLR;k(f2b;rJMDyg+cblm0)Wq-Kns*afxm)tDz9fflQs2Ae~GFJ=lPUdeDk#e+n134 z%bUd77UH3M3uK4v!jgJlV|1B6B~1R;81Je`kb9XkV?CpUEK!8^{{Mq*z{3wty*BS% zsJ!1bdQXz@LMLWimpntqcUZ?xylIbbPE!zunOm`gE|Jqes7Rh)m?FwUF73Y^M!+Y0LyW33g`RJOu}JM(S9?sWul32oy#q(Ebph<<0o+TCP<8vC)0$_u z@2t-Joo$Gu4Z4akRi)Zy4&^fP@e^1DMhl-D#h;wWbr2&g-|rwytv)(14i?t4+zh~{ zW2SbCYjXw6a|rW#9MYd=Ef$4}3CrhvNR!D***I~I<{4hkqzk9$cz85QYUBLgO)*9+ z#7q&=f=F@DW?s@xx+`VB6z@uOy45i*z!uw?WAP0t8sX=mZ!73ZR#{1)dk|h|P^o{h zZeZZQHM3RD0RSnaT)(6$uCJHSmD4EKSt=^n z;N8CXjO~KwB&+vwdqn@wTyl>;!*VK<9WL-wW&wjm;)bQd6#|ckF5i4t-!~&v)cuSai#Iwkbc& zUkNP`moI*u)p<>_ca=rWpCW^NyQ~+hYyYb5y#;FA0KN6rW0%gd<-4tSv28QBIjuxF zcGG8I+b(P8imTIl0;a556fe7O9nfpM%Xta{SL>P`S- e8B6m2S)VvpC^@^~uO#ry6$VdNKbLh*2~7Z4zqx4u literal 12454 zcmZvDWmFtNm-gUp!2&^oI|O&P;O@af26uM}5Zv7%1b4T=-6arQg1ftJ=iRgC>?c2F zy1J&T>h_hVo~m0DrmQH9hD?YI0)fzEK1-+q*A3v)g$NIP69?GMgFsMnp6c4p5@072 zM+XR81Xa%AT+}P#RLQ7p~#a7j9-w*{D zg=z_2$;aoxxco8W_Ll`>qq_AHrFZN07;xp;hU#2geD7&DTuRu)6>NI$1`tqT;l>mr zv!syNlMbW=aH>@oWvVGK;I_52^U6YAM=qa^`xZ2M)=~tdYR;y4T^;shg{0>~1Aa+Z zrEU2n2j1HowwK5!^dlh;;S0-wlNVpYFl`V1%D5rhe(?So68t03jVRaOyTRRX1@`k6 zqe4K@{d>YZ=L)1inY|nJEnYe|%;ScH-OKaF&Oi3+g~RA@2nz9qf=GM`=>iM0U;ZTA zaols9pc*tQ)#0{MxDwO!nh4ZMtgF&aFY!>7%g2|)mL*fp?UdLPkREOX@d-sw+o9;+ zOv+{T-c|>U`xbS8RGGr2%-KKQfj}QYG7_Td?wKc99`4w4kAuPq$*R9l>KWliRGA`v z`jaF6yN{SvtBy?yKrTo@y(Yw7N|8kF`!E=HtQM82k$nHo;z-%hhtn- zDJl33A980|e-$VPM|Jf~BHWEMVa+yj*=T+|Dl07skNy~@Y78%ldh12DI>dG)!=jF? zuNP}82dxVV_pk5*jQ#c=Z&L4TdtPvxdqaUXhEE$LQZWSLZLTMjUY(teJF*WUq`pRr zwP07jCZ3v_8pjl7{SjQ_~$J$?v$=Bk+Qq1oFZ0hbr=so2a4;c zU&6FdrdB23`i4!b43W`<+lL-pE%tvL7tg+3tLm70%01j@fxNwa=;-Nx$|lj{;Nn8r z?~LF+zr4tKbJEa+oS)l+_*@SAE_X(GbCL&^e;18{qQfyh($a>$ovzz8oUI)E#=M1< zjwbp$6i0#T@n}&AHib@I*FoG{E?~8eelDHRp^Hy zsbiMMNjNR9w;xQx9!o@HH3iG`DT*lfw~${uzm7Z030)3n$xeEL-+=*XO7zR{K=ZYA z718<~-f68aN6^$&Ny*7l?t$=%VP_*r3`D$+L598$1${MjR_oi{dfb7WNAr5bUat>( z1kUCkLBeLGeqr1eGZK8>_toC_=f*l0%@_jb{^EW`n7M+#L_A17J)}fsrU<*}_%++; zxod~Ba<+{!!bUd^x`?}eMqT{YVE6j`Pz(OeE=UnbuTh%l5xv^xcGZWiRPFuXs7Shk zF7H&#Jetgu@YTd*=TC)R{`?W^dsOu*gRJl0p)aqlJkGN^tnZ&YgJLZG2gJVR<>i4g z`Fzr^ubnj>^9%A2S-839ORf;1mb#-M5+wo-OgU)ihA&*P@!#n-u9bO7l)(eh#0)3P zO-k@;YITel#jyzqy%@sJB7jr4J>j$c?9?=XXznEvP=)0P2TFw(kxII~xR#sL{>ropT8>9RwgZ=$7 z24BWj*7tVi2NHoQe0g7!pef`cKS7S0L>kqM87b?{#(==^qJ8g}yoGW!W zxCDRyzHzFjID*Ae%pp9PBa9&e3;?pK;sQKbC(QLv3GOc5#ep*)!KVm7O({??@YSZ{ zgap;gANV*i{W|msJB6<40FUE!A{?}^x_H-|_;09x#wfjitOX*x?1a9fL;d1rXQn`o z17##nM;RT|S-@WvSY7=Ics*K1M#egM;$ff751)+ulkOdzoOm5JVMlx=a~sLSB-3DT zFDJ1mwps94k{O%cc)tdH`8B_l;g(!Y=(}5cH_xRXqZfm39D^Sj6_un{Z!YTT$p>n% zn%~`@&etTF${JUc^iDR38j(Xnmz0u%{wI5eVBS6q^05?FX06QwdLcE9h&GzAuUyI) zd3_3?op*S6@Lh2f(z0l!&Enq3vVC>U_mzg7ws-~Yh#0i?NXg{R11R*%1z}2Q-*?e3 z0$kqCF2P41l~-F`79k$&Mux)w@bR70_54V(f{MS~Jo3pqBXB{vZ#G4o@-!@Nb0koO zRQ7kUz^V{5lJ!x@Ufvu`mW_bZ3@d5vmVQ4g#UTm@jX^GuE3zRP1o~I}KfzluHZzlv zhK7b8LYw*?0S7Vj!x?gr1^3iO}oAY+W&NhN0wzSHvByR0q<-f$tAx)f91ir!;tj989|j!s@t zLC}N5F5OgXc_$A>piJYjY||(5C7sl@55Xk6lHm;Ex_wnzW*&V-*Z-;h{8glo^*&Ya&+FH!03fdh2zrZO5h~T{47@H~^w?&qt=qgQOYb-;L+qvRi z!vIG(9;-i$Ew-zz-^|RgiHNMPWRfmZSPWftgQ5{Zvk!axmdnJq4DWJvU5Z05kK4-7 zEjO&s`&C9xV00@l)s>Zv=EDL51G5ac*9im`Z>vymvnm2BUaG^H7cL)#!HeqRu(urI zSuN9isw|_P3pha+S63z%PG%*l1=s64Pv2q198GH-&wS)R6mK=K%nd7UPLLL|E#B6@ z)LKgeS`6>|YyLJmQ^@3cTmhr*E$$d{x11-J_^#feRuv;7`^UZc`GI4MFlK#vdG4_D z{#3WR@3BJ>Ln%BG>FXf9V=;B(bKMtlDM_5kJ73q_+HRof~y#jzD z)ts-s*cLa1GM$(-8(b$T@QZkJU^}4#*%C&AR(#%Q`urS(X%sV!(gO)p=Wue{<9PIb z#vnJYyyz1n;kcX|9H%2;-{c6E_fxh`)y(b3$V37}E_C%lX^T`n1W{;L(Ra$AWeSH( zlY{nTNYbndp?(M5){0|B#qO6W@vH0tWmk$Or!k=V3JI-D#kr2%RRyN^%P0ov>xrcr z8Wm;*eQG{AGe3hW31jML$PW%!hi8h9>%Lmw`ctHE)#RxQCE#%ktmnKNW;mweQaEVpgVHYd6w%EFxOfK=F%W*mUccDT8fP2FL{0j=M?#{P3 z?G25OyEMNQQD;Mzc`f;Yj#PJDS~F^`^$f<69(o#6wzs$0LX=iSgGr_m$V2mwGs<<-Z*wCm!X`2xIIQ zwNXd-gLQe_UoKM!90G7oAsrh(6dg_AeBDa47D+% zh;HP1(&x0VEZiS831L=IwS_ex6KQ^#45%fIbeUW2U|VRs^Z2~eX1UPVAK1dTVkm(4 z?d;e2<>A+d4{dTm$OaT5%|4=ZUulo-v&`Fme(?Xk#0{-CQLvlv(70wlf-MV1fh0C@ zMQR}_cP9uJ7Fnmb!YB(QfV=uMZq%%sx8RLp_L!pct(=o-yhojuwuo(Xeok5a3BpoG zm(?R4*NE8CRn^6Af-H(euOY@KB*+P{m`9w{9_mdihyc)xyHKm@0{%kP_R|yK!VqLP zcRe%fWj)~{IBf#FVq8QBZjo6JB_(BSZ0yHmB1}Z0E;@|;;az_bdm80D5W|=}HZC~) zwr?;+N9rSHqGB2}hqSLP7z%o!#zgucE=P|XmP{g`i$oST7yMXJE1`wg-@h+Q77mK- zTBaitk@UVruHs2nP}8DfWHs9c|*D3mX@gD#F4FIsmB*!7+>2vpSfV z-}N&R5|X30H>7u%fhh+Qe@$s)+KkagY*XaT6s8j9cthSz% zy%1Z0;?zX*c@G51{1m=b(pl%wZQHaE11X}5i;J^R7gY&ke<#)_hEvq-c!5k(+Doga6h=5| zTWW%=u*1!Ng80Z`qbLrvGQ``Le3G(w<>PgVY$=&Bh}Y8hYBsv-a6BV=OR^%XcDhvu zz5?;M9(*L=#dqg5#u@L`y%IZiPgyYZWs0T1sl6UR0}Vuypomyn(sSFcY&2MDScH-G zT5h-YyS4Rol%^);b<{1)S_V^JN@vH28=pVRC~BR@-LbjP}+dGCyF! ziS&}Pq~F;r`gVbDQ=U^lSL8l|h?HKkOzctxa!tR{Ty?Y~G_{Vs>e=*$Mn(pShwuQL z2ube_da6^#2K0J2yRPlC37e^I=s$?Pxg(ljKwW#vCgwNtOSDVp{iz+_d;8@29FEAt zyZ0FAVPF?ANO>V*gKow1>lj=nuhWmBA85N7J7qlfM*NXn#9BdSI#OkGBaNZTsC~<# zn~~alZsmiGImrLapFdN{Mt@Q|*U?8%!(1l}F(dkCaywOe;F5obf3^S8FHq*w>ow3a z=6iR#3e{}S8Z|WZ884Es=evqHApCYuKSvo`WmmN~v(NmCgz1g)%;n8JYKH%0HPWx0 zqv3KA*>x9TV{M^%@GWjOA=kq30nUXWr**aX-eoGnb)k?^PDlGrWz0j(!64~k?dt4t z+T$A3ng{V!|r*m-Q zY7u05VbLa)kn9)!+E7-l31)HM9U~CR;_qE~_O@IwDui6HflACKuEsAl{D(h8XMgJ7 zy|RS3z(=-u?A>r#FZ!mr8Q8(3LjD5Lv)FR?bMXk5C7+sD&y4~Q5V*j|ubsOeo&mOB zJ-!J~QArS`Gh_9=5)4$GfSxK+B30Yi=|g(FK2WnHXh?@N>(tA9~- zRsF}G?)>sDdNQ?1jv=3#>4G8{T6Ys+g_4tVZe>MYL4m0uQg_U|9xhPot{bqo8_c|$ z1a$24E-R>BpTh2he_+$U4lsS!;d4UiBErmYl`{f7&y70>>?b__Kx^mCCKIv7yS4ykA#~u+-gfUuH3LZ;cie*}6sXHkW z>vHJ@5r;@AGZYJbz&|eBnnDEKQWv}fPznHng^a{Q)hEHq;b$4LA}jR*-*$Na5~YRh zC580AgS&+Ba>oqgQ*GQtQp=o#tBv1WZ$8m&T#Wmr-enzLfvkQ@&0f$_hA|k zyU5Ax(|#IOxk1Z9X=JV4br797zuV@4C@Ytwm`{Fwe!=~{d($}FjV4$5o8sZ`rlw3D zisTQxA*rmmbqFihTQSb3+A)BJXLf5OnF(Ojjxo*%25aOH!UzHvVg4ZN%KQ#}y7yXO zKUN?-Q+=v|bqEsET>m|E4Ao@4*pr)BSKk*i{tv3Q1*OwaGj-Zy&4gD$BKax_@(A3* z7){ZfB;S_Sa%+87Css9cq?J;?@9-Fz4kWRSCWmO?%<3!j>Y4Z(Y`ug#0T#!rINt;C z)pncc>ooG4-nio3lt4MBpLItMAP_GAp+Ipn-qcJdH9fVkun2thdoB~u$&VeUX&X7y z-p8|Fb9H7lp0|wu-gU-CZUC@+(W5|at3Kd)VAC%(m%eEPTJAQN?+r2pevCyj09s2G zos8W0-NHUJ*8KH~C)a~Ik{yNhB}qB`D-fcblh4&Ft~aQ$owYAQK3=0oPl8eaL?l(K zt+6&J55T--)aGpY{bDnl;6O6k>^pD-9NE3th9BsD!1N*@V*o1u=g)2azpTGv%+M3N zIc|>ohPSM>-?HkBU)*NG5(fXx8vrC34IHL?`=lVqVEeWcq@oG_(k-`?&DLc#Uz%L~ zw$xAx)bwX&8rAFP(+S~gEOVv<;a16kCL*zAFJ?8ziq^Nj34naipHgw4rft$J`g`&` ze!X=%z(`hGB=X80+;>Hs-s}L#r;0vX@tPLEWwIR+dFUTrFMVv9(0+**0ML|Jk8~RV z0IFzG00IPXZ2+0J=>mmR=UxF}F56}|hZ@9GX+h;mIbu*%`d39%0gzuObbh~{RBk@T zmUwt1i>DjydwLP(H(GIE2i97E$9@Q5*f)in#P-VwI%Nau-n|g<2j-{PG>70>_PrCK zoViayHKZm+4g)c7q(lfe67g>WRC zxeP$Sg2q7<2*v!rmdrJ@2_i-Tw+a=9PC71jDS`}Ah{_+EgMo^b;)0mcz4BGY_a_;; zEsR*<0qy~yg!>+nyRDf@v87uSm6vC_qgvUUAYlCrix(t#Dm~K5*tCcZj1!J^+uW*j zXSk%HZ7QrRAqw~XD@QTz2AAHyM+ zRgK+Als8Uodf%0`tELnD&Dwo4k6uDoZc%QVCCc@;_8aSfr_TA2Di@~{OKlpK_d7_~ zYjNF_9k?hRJKxr{%C*m#P&(HbVB}NJqrES`PgC7ACuTD!W%B65C)^8tsSEDHt$VN^ z$LlbtlY#$z>6|j-r2o}#rP;wzUOp0)`XWn7j^c2Eb)u+%)p=i;;3GA)6bZL&=IASi zXS;#zN^^~MOU3*V7&L0rK+t)qf1=dFe;M(o&RM*gUnr#{T_|8*{SP)O+^EvELR5HD`apD1Dh)* zM}I0H!cNTbuY9$3F4@1kgiGPhHGD~WxoOILxf`!tL)`3k0u)!9(>>zS^KQn@Mtrs0 zCFSgz06OLjOebvYm6*C^(GU8IXUJ9N2Pgl%+uJigkKb-!=c{$wHo{=L{2KE7^2S6C zkzuEfe4r7gp^0}|Ow7o83Jo69KZn~>dK*sgBbAwFzALrlzZm>|>6WE*-t{OY5p*Ay zt}(O*pMy1ZigbDVCNfx$KlX%iCn$H86^HI23Z@yed%UfiUQkti8Cz*l(`XWQ*mQm`VnwU*yb4Hx?1fy85G^@B=M7>{&=$GS~F4Q1S zuDDOWjjBwGd2?)puMvlL+?c{mbhM062AJY_YZO(%)nxtZ1LF8{Ly@?I_-#S<*21gd z*wfnz-+E=RLxr`ryySdY{bF+Go+qzGafbmQj2xl97aZr>~>pn~^g?iQxYynkO}-AKW7Kbe_ZM!O*n7ptt8MBw`{k_YyZ{4@ z^W)y$LMt!auiu6dVdn(7=a`OuW19XIqSp@J`vQYhW)LMef7SABmYt0|P*4(%5xKO& zGnjOLHmXqJFb?9#8iJvp-~YkTL8(i4Y*1;}r~j|`eD0iPtE+Dy0$)i6X;tr54CXXX zrd@K?*ZCx(buyK4MY(Z4o+V@ zmD~c5_5ilPOP9Dj1cZ^>qQHMU;pJ@H28M~%mPEqo;B;j7a%2uNX$3JHB|=GU+=P01 zCMFiucY{iav6z@GGvHD!X~_iyGMmcaE~}23(n;}3x}-HxD1j<7G|5u+dY<)4y~)45 z%Oc+)qAZTFIZV-9Fc#P$0e(VGQDpoGrIt^xt5#tKb-_g}zc3NEXOgk#p2i394Us9& z#gM=F@25BpA&v$^wX0W%8yJwZw6uIS8W~YjHWIou*&6t4HX&lm+)2zU1|%R#m*CCk zD~V$SE)mDmIk&D4ep@fqhq1DB41AAS-ve$rto}q^Yz z>}->Lb+SSpZzcXjit@}DY`UsB?0Z+A2e@+di553EMc2L`{~nsKPyY3R4VSd&JO?U_ zk%S_jS2*(i=ANDJ2^~Ff+p59K$qVsffO)zB5AEMgA2`oEH5}RloEKmde=qn%f#sqFz$7XCuJIxw z50O6tNg#iJ5Fv-TzhY5BZEfw;(T#S;kuzV3Xdpbqz6`=(K39qx78W+s6#zJ*VM>V_ zHKt}KGYkScB`d3n<=hA-!OvG994*^)nrfa~Tsj^KyqPN?gpsdqWH;pG#rRmFPm7|* zEeK1K=(Pt0-gb}SGgU|#aLv3FIe!kckT5XJ9F%STaGNya;qMxnFx<@3N1030MSMn6;KBR=VlucFl4xes`skr zmocmWeLN_`1boE8yY(WT=hU^}@oqy^hkPrZNkt{2TcJ5IGC~d{P=MsBc9LGJa|ws- z3QvpV)vkA;CECUnOZ>soj={kZXU4WqTO;OTGad*5oycgtk_mMA8^%*6$1jf2?ZmNa zW%+4k_Up};n!za?h$3}cxS zb-LXPNwXQa0U*;fZ%it!VV%S6A4_gI`p z$j{u1jLwuF=*0BGUYs$ZnHgi{q{#SeX*$A*!}x46oH!Sn}9t% zfEpAp4s+0+StcUxIoNX30l`OheZi+`5w0((tc>Z|zGj(YP~|4GUB~e*goVs@*#2F;qqDkESAR`$!sFiq2wfSA}pTlFD`GxUs_G)Pw~+5hep3lbjeQ870Ia9 zJTAIzl+0Vsm}v4#iC95D-dQ&7bAvz_$p6j)Ou{WOc5$6ikI2Z#sEWnVfImg?bFMb4 zv|?gY6cKU|P2tBSCQ>$daH|NNSMj8T+8cFtc(>UK%3|Xbu6c%><1rB|Omg~Q21C6( z)tH{}B~sJMv(s2wd)mRmJl;8#_<)lmW`F}0XFycJ!ZyG1Hijh_?u`u#?2fVOABQ8- zyx#I9P(wBxpGHxZu`;t{Hq7YuoiXoCkx#NGzIhn)XU>IE?J)iNMa>0gyadUh{lH>a z=-Qcg88T;8TW{*`k?RKR*v-tOLwRerQ#U-JB}JvM{N7!anA?L@1W4xdN$br{@`LND zXX3+8OLl;dc#JQ(>?G^dxe||ft26+p6?b(xLYgo#Ix3#Va)?Z=7@4p)<{eX_W@xtA z$D^~z?Q(cDmiCbCk;9;KU)8PZI>3A7?_FnWGCaXE*yD$GJA!n;bpv&_{cPRSQGF&u zkF$}LoujaTe=8WKovaKj48F=B|F7c?|DTnDth}U?n=eOz)s*cS(^0E8jjtQc`wzbr z;8Qyt%0_*q8K6ALh0{fR8m$`G*5`1@oiQcdiLD-M?@BvhCY*IA1o<8(@D=umJJE2~!?g8Ie}K|ZyO%&uhnh~N++-u)pM$t$`K+dB z>br&wLnUFl&Zh<|62x2N!(K`IwtIoOs? zw@xHjudWrE*+NW+U%id;15h?xC-+KBtC$@ker5g9{{sv+_l~St+FN-7rsZ@b#*_gK z+Q(d*KQ&q5F#S%S=b=p_&9lMMar+vqah&vn9D;A)OYEP2z&+HgA`zQ|QE>=2^)i09 zO(Rx$dD)k;>UXjJE~j$T?VbJ#c=c-BK#i)jJB@r6)A;w$XP$H624JE$NFW|o^}ey3 z`_}zqb@v5i__j_mQDByke6+Ge3}&^OV0<`EFUXu2kv_}+d)***8IJnweF5*mef4ml z&eiGt$b}YI#%j6pd6Af0J>6$FVqML>coC(^4z#W?nRjD0Hz!kar_HC#IX(u&#K6nM zPaTmJmyR7}9XSZzQ9pQa(~XSmJyuyj;y>kJm`Jrr1odb5oI>s!99F@v253rLUU}Ca zKqa2ad3&=pg)Al}t-}R3Ff{V1%9d|_rzSFSaI%(8gQ{Siz9zo3YYS&MDGj-$S zuxd`u>vRe8LN8A$e1bEoH$odxA0F=4cS5?2U@0SiK!-cdQ|vKIun|ekyzfH1DZ8dx zW=VT~66;n9{9;aNrnLBmDqV~^E~LMSC-Y%m|5Ol?F8$;UUIk@Z_)e@hYp{)fXO%f4 z#T(q6$YLlcC>VYtd0{M4dQ;hK6EBiywWFb;s)5+@^)k;ldJ3zDkE=fUn_{gwUn|kU z(MU7{_%ZV@@_m(@IZ!G^b1{fdxj1b)Upob9VXnh+?3BS$WB>eUQbRuhV+(jqQkpk<+pHS4#zh_6g>i!Ik z?e!GEa&Q56-Zdgtz#&o_LwPS!Pg%Y>Avlf?;$XaYLEp%nds;D*TVh~GCcJIVk-N<2 zrSAdoh&JkYwO0U}`ez3n+EVpAe(iJno=kh}#H`1WdRBC@*9p8vsX1*tDl87wMv)=% zO7;iyM4#9wq4zh0$YqTML&_4yqF9m&&{NJOAr4PDrL*}z+d61IMNDOJwRzK6G~Fe4 z4;HL-ma}&KZsUS!`a#dgdoH}WwKcx3VmkY5vRH_Gq*Vx7O(Gp9!SiX-p|@e)2c$@k z;Wwy@-v+Pe>T;rydDxK;FHc)}i(Urn`G|c(lgh`CYR71KG~GVB8tzp2EGi21NYlf5 z`h@LM=#&<|;xO-q!->#g)94`=RC#(gppZ`437n`yBjkupoV?<;P3j0g(b#-E(*Auh zEs)W9Pzpfz<^4KreV{7=A7OdZytMwp&`U zKq*2cOeoTe&z{E45)!s$Gb)+;EhMc2x)4pqsX9GdG+(JdwuoZAlU|6BLa0NEgODPA z_f|of%e>jvJJvf8syz=eP&CGxX`D{fpzw2?UAq-} zLASCP^Oh>e*mQ=`K@CyS}lkvT{ zQsolr@boVGeE;};_m3rCa60<^z2+c7?6Y_5x8JG8Dsd#=Be&gbc83p9=y}1+3TNRB z#$8W;LelO;4Lx?{h@oPCm6_9u@cNz^pK}Hmfb%1}jeb?<#(wbdpk#ho zs8EtZgkZ#d=z-t$nbOL>Yn2HaqQ;VqCuuLF;(fJ)Hsbi6R~(x0z&$)VjJt`w5Tu^|s9XrBRJlPL{T2T{q0Ma zDa;C0=Ep6%rFVp#>FqI?vyk%L%UPCTYtQ9{ys8du zeA5@OTb8~Aw{w$v^}|l_{KNt+ZPDBtE{A}4{7#Adj{eMj*_|{g)L23%evUdmw$^0S zVGK+Al-*xIqO4km$QJcbjsySJBnHNqBikG`*e zDj5C(lSP=4vWLB%C!6$TWedMn293MPqn@LtCRc^-I);d5GG7Z54vTg&g7peVZJ!(L z>7dmm%xe-)g6E$VR2NuDXC0kIR3dM$omM-o3QiP#WnTMb5eS9H{7P2YIQFyGlAdbW zpSwD%JzLk4m5LGGQ7gyOrIw6i>l?PuNSVDmB+6l?eBnFyhB`i?4Ni?oZoUl@7Q=ag zomdW|TVODlf9C~M*757z1EZqlp-z!C;%r_J+ib@|qC6YQ`%W)y3fAmFx$&rD9%BxhH!5G65#7OoV~vhZ%RtngS-{JU@_ zZK2K*scA#|XsVWDzzNBx5&cBio(4X*bF^ zQa%^~SpwCSUoy4vW(sI4adj2-o%7zlC?CLClW`g2bJy~gf0)xG>F3E+OD?J`Zx%Hj z>*}WOwU}-)p(iQ+z*SI25(|rVB)buRx|y#1&5l^9k7ClTzyJjdz-X%?X#6Lr&GnqMEes75M)FNJdgoqEgK0`+osmRg`o9 diff --git a/maps/map_files/Taipei_Station/Taipei_Station.dmm b/maps/map_files/Taipei_Station/Taipei_Station.dmm index ed8ba311104..9345851313f 100644 --- a/maps/map_files/Taipei_Station/Taipei_Station.dmm +++ b/maps/map_files/Taipei_Station/Taipei_Station.dmm @@ -21,7 +21,7 @@ pixel_y = -2 }, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "acu" = ( /obj/structure/barricade/handrail/strata{ dir = 4; @@ -69,7 +69,7 @@ dir = 1 }, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "aex" = ( /obj/structure/sink/kitchen{ dir = 4; @@ -77,7 +77,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "aeB" = ( /obj/structure/closet/crate/radiation, /obj/structure/largecrate/random/case{ @@ -203,7 +203,7 @@ pixel_y = 14 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "ajD" = ( /obj/structure/bed/sofa/vert/white/top, /obj/effect/decal/cleanable/dirt, @@ -253,7 +253,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "alc" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -279,7 +279,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue, -/area/taipei/atrium/club) +/area/taipei/club) "amB" = ( /obj/structure/platform, /obj/structure/barricade/handrail/strata, @@ -380,10 +380,9 @@ "ass" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/light{ - light_color = #00008B; - light_power = .5 + light_color = "#38a9fd" }, -/area/taipei/atrium/club) +/area/taipei/club) "atd" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -554,7 +553,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "azb" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -642,7 +641,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "aDG" = ( /turf/open/floor/kutjevo/colors/red/edge{ dir = 1 @@ -798,7 +797,7 @@ "aLh" = ( /obj/structure/window/reinforced, /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "aLy" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, @@ -872,6 +871,7 @@ /area/taipei/maints/south) "aOx" = ( /obj/item/trash/hotdog, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/asteroidfloor/north, /area/taipei/hangar) "aON" = ( @@ -970,7 +970,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "aSY" = ( /turf/closed/shuttle/elevator/gears, /area/taipei/elevator/arrivals) @@ -994,7 +994,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "aTD" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" @@ -1007,14 +1007,14 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "aTY" = ( /obj/structure/platform/kutjevo{ dir = 1 }, /obj/structure/bed/sofa/south, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "aUj" = ( /obj/structure/barricade/handrail/kutjevo{ dir = 4 @@ -1032,7 +1032,7 @@ /obj/structure/window/reinforced, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "aWs" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -1207,7 +1207,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "bbQ" = ( /obj/structure/barricade/handrail/strata{ pixel_y = -4 @@ -1267,7 +1267,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "beN" = ( /turf/open/floor/kutjevo/tan/alt_edge, /area/taipei/atrium) @@ -1533,7 +1533,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "bqq" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -1566,7 +1566,7 @@ /area/taipei/maints/south) "brs" = ( /turf/open/blank, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "brv" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 @@ -1682,6 +1682,9 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/biodome, /area/taipei/atrium/hotel) +"bwE" = ( +/turf/closed/mineral, +/area/taipei/theatre) "bwN" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -1811,7 +1814,7 @@ /obj/structure/pipes/vents, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet7_3/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "bBD" = ( /obj/structure/machinery/light/blue{ dir = 8 @@ -2005,7 +2008,7 @@ "bHx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/chapel_carpet/doubleside, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "bHG" = ( /obj/structure/platform{ dir = 8 @@ -2051,7 +2054,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "bKY" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/drinks/cans/aspen, @@ -2064,7 +2067,7 @@ light_power = .75 }, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "bLA" = ( /obj/structure/platform/shiva/catwalk{ dir = 8 @@ -2079,7 +2082,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "bMk" = ( /obj/structure/platform{ dir = 8 @@ -2155,9 +2158,7 @@ /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) "bPx" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2 - }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium/bookstore) "bQM" = ( @@ -2205,7 +2206,7 @@ /area/taipei/hangar) "bVs" = ( /turf/closed/wall/almayer, -/area/taipei/atrium/club) +/area/taipei/club) "bVt" = ( /obj/structure/machinery/camera/autoname{ dir = 4 @@ -2500,7 +2501,7 @@ }, /obj/structure/pipes/vents/pump, /turf/open/floor/prison/blue/north, -/area/taipei/atrium/club) +/area/taipei/club) "cgV" = ( /obj/structure/machinery/computer/shuttle/elevator_controller, /turf/closed/wall/biodome, @@ -2509,7 +2510,7 @@ /obj/structure/surface/table/reinforced/almayer_B, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "chl" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -2600,7 +2601,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "cjq" = ( /turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, /area/taipei/reactor) @@ -2806,7 +2807,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "csy" = ( /obj/structure/stairs/perspective, /obj/effect/decal/cleanable/dirt, @@ -2991,7 +2992,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "cyC" = ( /obj/structure/bed/chair/comfy{ dir = 1; @@ -3172,7 +3173,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "cGq" = ( /obj/structure/prop/turbine, /obj/structure/prop/turbine_extras/left, @@ -3383,6 +3384,10 @@ dir = 4 }, /area/taipei/atrium/restaurant) +"cPE" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) "cPG" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname, /obj/effect/decal/cleanable/dirt, @@ -3466,7 +3471,7 @@ dir = 1 }, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "cSO" = ( /obj/structure/cargo_container/kelland/left{ pixel_x = 12; @@ -3497,15 +3502,15 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet11_12/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "cUh" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-4-8" +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/plating/plating_catwalk/prison, -/area/taipei/maints/south) +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) "cUw" = ( /obj/structure/surface/table, /obj/item/toy/desk/fan{ @@ -3530,7 +3535,7 @@ pixel_y = 3 }, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "cVj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cargo_container/grant/right, @@ -3603,7 +3608,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "dap" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -3731,7 +3736,7 @@ }, /obj/item/storage/briefcase, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "deX" = ( /obj/structure/cargo_container/hd/mid/alt, /turf/open/floor/plating/asteroidfloor/north, @@ -3772,6 +3777,7 @@ /obj/structure/platform_decoration, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/asteroidfloor/north, /area/taipei/hangar) "dij" = ( @@ -3936,7 +3942,7 @@ pixel_x = 4 }, /turf/open/floor/prison/blue, -/area/taipei/atrium/club) +/area/taipei/club) "doY" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -3991,7 +3997,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "dtY" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -4021,7 +4027,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "duV" = ( /obj/structure/surface/table, /obj/item/trash/ceramic_plate, @@ -4089,7 +4095,7 @@ /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet13_5/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "dvO" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -4188,6 +4194,17 @@ }, /turf/open/floor/kutjevo/tan/alt_edge, /area/taipei/atrium) +"dxT" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) "dyr" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -4224,7 +4241,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/north, -/area/taipei/atrium/club) +/area/taipei/club) "dBp" = ( /obj/structure/machinery/body_scanconsole{ dir = 8 @@ -4316,14 +4333,14 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet7_3/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "dGa" = ( /turf/open/floor/kutjevo/tan/alt_edge/northeast, /area/taipei/atrium) "dGp" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/biodome, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "dGJ" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, @@ -4344,14 +4361,14 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkred2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "dHP" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkred2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "dIb" = ( /obj/structure/barricade/handrail/strata, /obj/structure/platform, @@ -4418,7 +4435,7 @@ /obj/item/reagent_container/food/drinks/shaker, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "dJX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -4494,7 +4511,7 @@ }, /obj/item/storage/pill_bottle/spaceacillin/skillless, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "dOO" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice4"; @@ -4543,7 +4560,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "dPm" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -4599,7 +4616,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "dSv" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -4627,7 +4644,7 @@ /obj/structure/sign/poster/music, /obj/structure/mirror, /turf/closed/wall/biodome, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "dSW" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 8 @@ -4692,11 +4709,9 @@ /turf/open/gm/empty, /area/taipei/reactor) "dXc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Visitor Entrance" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/whitered{ dir = 1 }, @@ -5055,8 +5070,8 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/north) "ejA" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/whitered{ dir = 1 }, @@ -5144,13 +5159,13 @@ dir = 1 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "eoj" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "eoO" = ( /turf/open/floor/strata/faux_wood, /area/taipei/atrium/hotel) @@ -5224,6 +5239,10 @@ /area/taipei/maints/south) "equ" = ( /obj/structure/machinery/power/smes/buildable/charged, +/obj/structure/machinery/power/smes/buildable/charged{ + pixel_x = 0; + pixel_y = 16 + }, /turf/open/floor/prison, /area/taipei/reactor) "eqY" = ( @@ -5369,7 +5388,7 @@ /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/drinks/bottle/vodka, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "ezN" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -5408,7 +5427,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "eBz" = ( /obj/structure/platform{ dir = 1 @@ -5425,7 +5444,7 @@ "eCr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkred2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "eCv" = ( /obj/structure/machinery/light{ dir = 8 @@ -5475,7 +5494,7 @@ dir = 4 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "eDn" = ( /obj/structure/surface/table, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -5506,13 +5525,13 @@ dir = 4 }, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "eDM" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "eEb" = ( /turf/open/floor/kutjevo/multi_tiles/southwest, /area/taipei/atrium) @@ -5610,9 +5629,9 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "eIq" = ( -/obj/docking_port/stationary/marine_dropship, +/obj/docking_port, /turf/open/floor/plating, /area/taipei/hangar/landingzone) "eIR" = ( @@ -5622,7 +5641,7 @@ pixel_y = 3 }, /turf/open/floor/prison/darkbrowncorners2/southwest, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "eKu" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 3 @@ -5676,7 +5695,7 @@ "eNX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "eOh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -5769,7 +5788,7 @@ dir = 1 }, /turf/open/floor/prison/darkred2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "eSC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor, @@ -6118,7 +6137,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "fgE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -6405,7 +6424,7 @@ /obj/item/trash/cigbutt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "frY" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -6508,7 +6527,7 @@ /area/taipei/maints/south) "fwT" = ( /turf/closed/wall/biodome, -/area/taipei/atrium/club) +/area/taipei/club) "fxe" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -6781,7 +6800,7 @@ /obj/structure/bed/sofa/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "fOo" = ( /obj/structure/machinery/conveyor, /obj/structure/prop/invuln/lattice_prop{ @@ -7068,7 +7087,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "gak" = ( /obj/structure/barricade/handrail/kutjevo{ layer = 3.05 @@ -7097,10 +7116,10 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "gbt" = ( /turf/closed/wall/biodome, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "gbD" = ( /turf/open/floor/corsat/marked, /area/taipei/elevator/arrivals) @@ -7142,7 +7161,7 @@ "gdg" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue, -/area/taipei/atrium/club) +/area/taipei/club) "gds" = ( /obj/structure/window/reinforced/ultra{ dir = 4 @@ -7155,7 +7174,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/north, -/area/taipei/atrium/club) +/area/taipei/club) "gdN" = ( /obj/structure/machinery/light{ dir = 1 @@ -7281,7 +7300,7 @@ dir = 8 }, /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "gnu" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -7612,7 +7631,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "gCN" = ( /obj/structure/platform, /obj/structure/cable/heavyduty{ @@ -7626,7 +7645,6 @@ }, /obj/structure/pipes/standard/manifold/hidden/supply, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/south, /turf/open/floor/prison, /area/taipei/maints/south) "gEA" = ( @@ -7656,11 +7674,11 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "gFL" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/carpet15_15/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "gFX" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -7695,7 +7713,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "gHA" = ( /obj/structure/surface/rack{ pixel_x = -5 @@ -7712,6 +7730,10 @@ pixel_x = 18 }, /obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -10; + pixel_y = 9 + }, /turf/open/floor/bar, /area/taipei/atrium/store) "gHK" = ( @@ -8091,7 +8113,7 @@ dir = 8 }, /turf/open/floor/prison/darkbrowncorners2/southwest, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "heo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8144,7 +8166,7 @@ /obj/item/trash/crushed_cup, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet10_8/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "hhI" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 1 @@ -8173,7 +8195,6 @@ /obj/structure/cable/heavyduty{ icon_state = "0-2" }, -/obj/structure/machinery/power/apc/power/north, /turf/open/floor/prison, /area/taipei/maints/north) "hjy" = ( @@ -8222,7 +8243,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "hmJ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -8323,15 +8344,10 @@ /turf/open/floor/corsat/marked, /area/taipei/maints/north) "hrp" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating/asteroidfloor, -/area/taipei/maints/north) +/turf/open/floor/prison, +/area/taipei/hangar) "hrv" = ( /obj/structure/blocker/invisible_wall, /turf/closed/wall/almayer/outer, @@ -8354,7 +8370,7 @@ /obj/item/trash/cigbutt, /obj/item/trash/cigbutt, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "hrQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/faux_wood, @@ -8365,6 +8381,10 @@ pixel_y = 10 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, /turf/open/floor/strata/faux_wood, /area/taipei/atrium/hotel) "hsz" = ( @@ -8466,7 +8486,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "hvy" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/fake_wood, @@ -8496,7 +8516,7 @@ light_power = .75 }, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "hyf" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo_arrow"; @@ -8536,6 +8556,11 @@ }, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) +"hAl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/maints/north) "hBn" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -8765,7 +8790,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "hJS" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -8811,7 +8836,7 @@ /area/taipei/maints/north) "hLc" = ( /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "hLu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8826,7 +8851,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "hMB" = ( /obj/structure/machinery/conveyor{ dir = 9; @@ -8894,7 +8919,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "hON" = ( /turf/open/floor/corsat/marked, /area/taipei/elevator/departures) @@ -8919,7 +8944,7 @@ pixel_y = 14 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "hSG" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -8933,13 +8958,10 @@ /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) "hTw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Visitor Entrance" - }, /obj/structure/machinery/door/poddoor/shutters/almayer/open, -/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "hTM" = ( /obj/structure/machinery/light{ dir = 4 @@ -9011,7 +9033,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "hWH" = ( /obj/structure/prop/almayer/computers/sensor_computer2, /turf/open/floor/prison, @@ -9139,7 +9161,7 @@ /obj/item/ashtray/glass, /obj/item/trash/cigbutt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "idY" = ( /obj/structure/machinery/washing_machine{ pixel_y = 13; @@ -9270,7 +9292,7 @@ dir = 4 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "iiq" = ( /obj/structure/platform{ dir = 4 @@ -9439,11 +9461,8 @@ /turf/open/floor/kutjevo/multi_tiles/west, /area/taipei/atrium) "ivo" = ( -/obj/item/tool/wet_sign{ - pixel_x = -3; - pixel_y = 2 - }, /obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) "ivC" = ( @@ -9508,7 +9527,7 @@ light_power = .50 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "iwv" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/cargo) @@ -9536,11 +9555,11 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "ixH" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet15_15/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "iyX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -9567,7 +9586,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "izW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light_switch{ @@ -9619,7 +9638,7 @@ "iDf" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/almayer, -/area/taipei/atrium/club) +/area/taipei/club) "iDD" = ( /obj/structure/machinery/light/blue{ dir = 4 @@ -9760,7 +9779,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "iJD" = ( /turf/closed/wall/biodome, /area/taipei/atrium/hotel) @@ -9858,7 +9877,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "iPf" = ( /obj/structure/machinery/light/spot{ dir = 1 @@ -9892,7 +9911,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkred2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "iQx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -9915,7 +9934,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/north, -/area/taipei/atrium/club) +/area/taipei/club) "iRX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -10060,7 +10079,7 @@ "iYe" = ( /obj/structure/machinery/light, /turf/open/floor/carpet13_5, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "iYm" = ( /obj/structure/surface/table/holotable, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -10346,7 +10365,7 @@ /area/taipei/maints/south) "jgX" = ( /obj/structure/window/framed/prison/reinforced, -/turf/closed/wall/r_wall/bunker, +/turf/open/space/basic, /area/taipei/cmb) "jhe" = ( /obj/effect/decal/warning_stripes{ @@ -10396,7 +10415,7 @@ pixel_y = -10 }, /turf/closed/wall/almayer, -/area/taipei/maints/north) +/area/taipei/club) "jiy" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -10458,12 +10477,10 @@ /turf/open/floor, /area/taipei/atrium/laundry) "jku" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Visitor Entrance" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium/bookstore) "jkG" = ( @@ -10497,7 +10514,7 @@ req_one_access = null }, /turf/open/floor/corsat/marked, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "jop" = ( /obj/structure/machinery/light{ dir = 1 @@ -10582,15 +10599,13 @@ /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) "jvg" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8; + light_power = .50 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/plating/asteroidfloor, -/area/taipei/maints/south) +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) "jvs" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -10632,6 +10647,19 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/asteroid, /area/taipei/maints/south) +"jxb" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) "jya" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/flora/bush/ausbushes/grassybush{ @@ -10653,7 +10681,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "jyx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -10692,7 +10720,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "jAx" = ( /obj/structure/platform{ dir = 1 @@ -10779,13 +10807,13 @@ "jEl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet13_5/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "jEJ" = ( /obj/structure/barricade/handrail/kutjevo, /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "jEM" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -10906,7 +10934,6 @@ "jKm" = ( /obj/structure/cable/heavyduty, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/south, /turf/open/floor/prison, /area/taipei/maints/south) "jKu" = ( @@ -11010,7 +11037,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "jPj" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -11056,7 +11083,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "jSY" = ( /obj/structure/window/framed/almayer, /obj/effect/decal/cleanable/dirt, @@ -11072,6 +11099,11 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison, /area/taipei/cargo) +"jTh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/north) "jTj" = ( /obj/structure/bed/chair/bolted{ dir = 1 @@ -11093,7 +11125,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "jVD" = ( /obj/structure/machinery/elevator_strut/top, /turf/open/gm/empty, @@ -11185,14 +11217,12 @@ /turf/open/floor/bar, /area/taipei/atrium/store) "kaR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Visitor Entrance" - }, /obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "kbx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/colors, @@ -11434,7 +11464,7 @@ }, /obj/structure/machinery/door/airlock/almayer/maint/autoname, /turf/open/floor/corsat/marked, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "kms" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -11474,7 +11504,7 @@ }, /obj/item/trash/cigbutt/cigarbutt, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "knG" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) @@ -11527,7 +11557,7 @@ "koO" = ( /obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "koW" = ( /obj/structure/surface/table, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -11603,7 +11633,7 @@ pixel_x = 4 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "kum" = ( /obj/structure/machinery/light{ dir = 8 @@ -11617,7 +11647,7 @@ "kuT" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet13_5, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "kuZ" = ( /turf/open/floor/prison, /area/taipei/maints/south) @@ -11664,7 +11694,7 @@ "kxn" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "kxp" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -11686,7 +11716,7 @@ /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/window/reinforced, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "kya" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -11875,20 +11905,13 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/closed/wall/biodome, -/area/taipei/atrium/club) +/area/taipei/club) "kEu" = ( -/obj/structure/barricade/handrail/strata{ - pixel_y = -4 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating/plating_catwalk/prison, -/area/taipei/maints/north) +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) "kEV" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/research, /obj/structure/machinery/door/airlock/multi_tile/elevator/access, @@ -11910,7 +11933,7 @@ /obj/structure/pipes/vents/scrubber, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/north, -/area/taipei/atrium/club) +/area/taipei/club) "kHz" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -11933,7 +11956,7 @@ /area/taipei/reactor) "kJO" = ( /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "kKt" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/strata_grass/layer1{ @@ -11977,7 +12000,7 @@ "kMg" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkred2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "kMk" = ( /obj/structure/machinery/light{ dir = 8 @@ -12045,7 +12068,6 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/obj/structure/machinery/power/apc/power/north, /turf/open/floor/prison, /area/taipei/maints/north) "kPG" = ( @@ -12139,12 +12161,12 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/north, -/area/taipei/atrium/club) +/area/taipei/club) "kSV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "kTm" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 1 @@ -12224,7 +12246,7 @@ dir = 4 }, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "kWJ" = ( /obj/structure/platform{ layer = 3.1 @@ -12300,6 +12322,11 @@ /obj/structure/platform/stair_cut/alt, /turf/open/floor/plating/asteroidfloor/north, /area/taipei/maints/south) +"kZf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/north) "laO" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice4"; @@ -12330,7 +12357,7 @@ /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/window/reinforced, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "leH" = ( /obj/structure/platform/strata/metal, /obj/structure/barricade/handrail/strata{ @@ -12377,7 +12404,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/apc/power/north, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "lgD" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -12387,7 +12414,7 @@ dir = 8 }, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "lgN" = ( /obj/structure/platform{ dir = 1 @@ -12439,7 +12466,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "liU" = ( /obj/structure/machinery/light/double{ dir = 8 @@ -12630,6 +12657,10 @@ /turf/closed/wall/almayer, /area/taipei/maints/south) "lqv" = ( +/obj/structure/machinery/light{ + dir = 8; + light_power = .25 + }, /turf/open/floor/kutjevo/colors/red/inner_corner{ dir = 4 }, @@ -12648,7 +12679,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "lsf" = ( /turf/closed/wall/almayer/white/hull, /area/taipei/atrium/medbay) @@ -12687,7 +12718,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "ltv" = ( /obj/structure/surface/table, /obj/item/toy/desk/dippingbird{ @@ -12761,7 +12792,7 @@ pixel_x = -5 }, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "lwq" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname, /obj/effect/decal/cleanable/dirt, @@ -12901,7 +12932,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "lBY" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -12928,6 +12959,10 @@ /turf/open/floor/prison, /area/taipei/maints/north) "lCh" = ( +/obj/structure/machinery/light{ + dir = 8; + light_power = .25 + }, /turf/open/floor/kutjevo/colors/red/inner_corner, /area/taipei/atrium) "lCt" = ( @@ -13044,7 +13079,7 @@ /area/taipei/maints/north) "lGx" = ( /turf/open/floor/prison/darkred2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "lGP" = ( /obj/structure/window/framed/almayer/white, /obj/item/cpr_dummy{ @@ -13132,7 +13167,7 @@ "lJu" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredcorners2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "lKe" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -13171,14 +13206,14 @@ dir = 8 }, /turf/open/floor/prison/darkbrowncorners2/southwest, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "lLD" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "lLE" = ( /obj/structure/platform{ layer = 2.7; @@ -13298,7 +13333,7 @@ /area/taipei/hangar) "lSk" = ( /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "lSq" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -13315,17 +13350,17 @@ "lTp" = ( /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "lTI" = ( /obj/structure/window/reinforced, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "lUk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue, -/area/taipei/atrium/club) +/area/taipei/club) "lUO" = ( /obj/structure/platform_decoration{ dir = 8 @@ -13397,7 +13432,7 @@ "lYS" = ( /obj/structure/closet/cabinet, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "lZD" = ( /obj/structure/platform{ layer = 2.7; @@ -13439,7 +13474,7 @@ pixel_y = 30 }, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "maN" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid, /obj/structure/machinery/door/poddoor/almayer/closed, @@ -13447,9 +13482,9 @@ /turf/open/floor/corsat/marked, /area/taipei/cmb) "mbc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, /turf/open/floor/asteroidplating, /area/taipei/atrium/store) "mbn" = ( @@ -13506,7 +13541,7 @@ light_power = .25 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "mdJ" = ( /turf/open/floor/plating/asteroidwarning/west, /area/taipei/reactor) @@ -13543,6 +13578,11 @@ /obj/structure/cargo_container/watatsumi/mid, /turf/open/floor/plating/asteroidfloor/north, /area/taipei/hangar) +"mfA" = ( +/obj/item/weapon/broken_bottle, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/bar, +/area/taipei/atrium/store) "mfT" = ( /obj/structure/lattice, /obj/item/lightstick/red/spoke/planted, @@ -13560,7 +13600,7 @@ dir = 4 }, /turf/open/floor/asteroid, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "mgc" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo_arrow" @@ -13740,7 +13780,7 @@ "mmZ" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/biodome, -/area/taipei/atrium/club) +/area/taipei/club) "mnw" = ( /obj/item/tool/mop{ pixel_x = -22; @@ -13907,12 +13947,13 @@ dir = 5 }, /turf/open/floor/carpet13_5/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "muT" = ( /obj/structure/pipes/vents, /obj/structure/machinery/light{ dir = 1 }, +/obj/structure/machinery/power/apc/power/north, /turf/open/floor/prison, /area/taipei/telecomms) "mvh" = ( @@ -13999,7 +14040,7 @@ "mAf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "mAV" = ( /obj/structure/machinery/medical_pod/bodyscanner, /turf/open/floor/kutjevo/colors/cyan/inner_corner/west, @@ -14025,7 +14066,7 @@ dir = 1 }, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "mBI" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -14109,7 +14150,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "mEH" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -14158,7 +14199,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "mGh" = ( /obj/structure/bed/sofa/vert/white/bot, /turf/open/floor/kutjevo/tan, @@ -14233,7 +14274,7 @@ /area/taipei/hangar) "mMa" = ( /turf/open/floor/carpet13_5, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "mMx" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 2; @@ -14295,7 +14336,7 @@ /area/taipei/hangar) "mPR" = ( /turf/open/floor/prison/darkred2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "mQE" = ( /obj/structure/flora/pottedplant/random{ pixel_x = 0; @@ -14405,7 +14446,7 @@ }, /obj/item/trash/buritto, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "mWy" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/toy/desk/newtoncradle{ @@ -14423,10 +14464,9 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/light{ - light_color = #00008B; - light_power = .5 + light_color = "#38a9fd" }, -/area/taipei/atrium/club) +/area/taipei/club) "mXX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/colors/red/edge{ @@ -14451,7 +14491,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/southwest, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "mZM" = ( /obj/structure/platform_decoration, /obj/structure/platform_decoration{ @@ -14476,7 +14516,6 @@ icon_state = "0-8" }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/east, /turf/open/floor/prison, /area/taipei/maints/south) "naz" = ( @@ -14548,7 +14587,7 @@ "nbG" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "nbW" = ( /obj/structure/shuttle/engine/heater{ dir = 8; @@ -14610,7 +14649,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "nec" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -14627,7 +14666,7 @@ "nek" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "neY" = ( /obj/structure/machinery/light{ dir = 8 @@ -14703,7 +14742,7 @@ /obj/structure/machinery/door/window/brigdoor/southleft, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "njs" = ( /obj/structure/flora/pottedplant{ desc = "How did that get in there?"; @@ -14740,7 +14779,7 @@ light_power = .25 }, /turf/open/floor/carpet7_3/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "nkn" = ( /obj/structure/surface/rack, /obj/item/bodybag, @@ -14754,6 +14793,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/fake_wood, /area/taipei/cmb) +"nkF" = ( +/obj/structure/surface/rack{ + pixel_x = 4 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = 4 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -1; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 8; + pixel_y = 25 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) "nkR" = ( /obj/structure/lattice, /obj/structure/prop/static_tank, @@ -14783,7 +14840,7 @@ pixel_y = -2 }, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "nnh" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, @@ -14880,7 +14937,8 @@ /area/taipei/reactor) "nug" = ( /obj/structure/window/framed/almayer/white, -/turf/closed/wall/almayer/white/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/turf/open/space/basic, /area/taipei/atrium/medbay) "nuJ" = ( /obj/structure/surface/table, @@ -14959,7 +15017,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroid, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "nwx" = ( /obj/structure/barricade/handrail/strata{ pixel_y = -4 @@ -15064,7 +15122,7 @@ dir = 1 }, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "nCA" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -15199,7 +15257,7 @@ pixel_x = -5 }, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "nJy" = ( /obj/structure/platform/strata/metal{ dir = 8 @@ -15281,7 +15339,7 @@ "nPP" = ( /obj/structure/machinery/door/window/brigdoor/southleft, /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "nPW" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -15507,7 +15565,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "nWA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cargo_container/trijent/mid, @@ -15584,7 +15642,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "obk" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -15796,7 +15854,7 @@ pixel_x = -8 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "oiM" = ( /obj/structure/toilet{ pixel_y = 12 @@ -15863,6 +15921,7 @@ "okm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/kutjevo/tan, /area/taipei/atrium/offices) "okM" = ( @@ -15912,7 +15971,7 @@ /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door/window/brigdoor/southright, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "ole" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -16012,7 +16071,7 @@ /obj/structure/surface/table, /obj/item/clothing/under/swimsuit/green, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "ooB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/tan/alt_edge/northeast, @@ -16087,7 +16146,7 @@ "osU" = ( /obj/structure/sign/safety/maint, /turf/closed/wall/almayer, -/area/taipei/atrium/club) +/area/taipei/club) "oty" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access, /turf/open/floor/corsat/marked, @@ -16103,7 +16162,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "oud" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet9_4, @@ -16309,6 +16368,9 @@ /obj/structure/sign/safety/elevator, /turf/closed/wall/biodome, /area/taipei/atrium) +"oEr" = ( +/turf/closed/mineral, +/area/taipei/reactor) "oEH" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/edge/smooth, @@ -16355,7 +16417,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet6_2, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "oIc" = ( /obj/structure/flora/grass/desert/lightgrass_3, /obj/effect/decal/grass_overlay/grass1/inner, @@ -16456,7 +16518,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "oMS" = ( /obj/structure/machinery/light{ dir = 8; @@ -16538,7 +16600,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/prison/darkred2, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "oSi" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -16633,7 +16695,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/north, -/area/taipei/atrium/club) +/area/taipei/club) "oVF" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -16701,7 +16763,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "oXI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -16734,6 +16796,7 @@ "oYS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/kutjevo/tan, /area/taipei/atrium/offices) "oZJ" = ( @@ -16777,6 +16840,9 @@ /obj/structure/cargo_container/trijent/left, /turf/open/floor/plating/asteroidfloor/north, /area/taipei/hangar) +"pbd" = ( +/turf/closed/wall/almayer/outer, +/area/taipei/club) "pbt" = ( /obj/structure/prop/turbine, /obj/structure/prop/turbine_extras/left, @@ -16855,7 +16921,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "pdt" = ( /obj/structure/sink{ dir = 1; @@ -16871,10 +16937,9 @@ pixel_y = 14 }, /turf/open/floor/light{ - light_color = #00008B; - light_power = .5 + light_color = "#38a9fd" }, -/area/taipei/atrium/club) +/area/taipei/club) "pdA" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -16891,7 +16956,7 @@ dir = 8 }, /turf/open/floor/prison/darkredcorners2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pdP" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, @@ -16987,7 +17052,7 @@ /obj/structure/sign/poster/pinup, /obj/structure/mirror, /turf/closed/wall/biodome, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pig" = ( /obj/structure/surface/table, /obj/structure/window/reinforced{ @@ -17022,7 +17087,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "plc" = ( /obj/structure/machinery/washing_machine{ pixel_y = 13; @@ -17129,7 +17194,7 @@ "poQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "ppk" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/corsat/marked, @@ -17151,7 +17216,7 @@ /area/taipei/hangar) "pqL" = ( /turf/open/floor/prison/chapel_carpet/doubleside, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pqP" = ( /obj/structure/toilet{ pixel_y = 15; @@ -17263,7 +17328,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pvI" = ( /obj/structure/machinery/light{ dir = 1 @@ -17282,6 +17347,7 @@ "pwz" = ( /obj/structure/window/framed/almayer/white, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/closed/wall/almayer/white/reinforced, /area/taipei/atrium/medbay) "pwM" = ( @@ -17295,7 +17361,7 @@ /obj/structure/pipes/vents, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet7_3/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pxr" = ( /obj/structure/blocker/forcefield/human{ icon = 'icons/' @@ -17341,7 +17407,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pzg" = ( /obj/structure/platform/shiva/catwalk, /obj/structure/platform/shiva/catwalk{ @@ -17350,7 +17416,7 @@ /obj/item/trash/cigbutt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "pzh" = ( /obj/effect/elevator, /obj/structure/prop/invuln/lattice_prop{ @@ -17539,14 +17605,14 @@ pixel_x = -5 }, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "pHQ" = ( /obj/structure/sign/banners/united_americas_flag{ pixel_y = 28 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue, -/area/taipei/atrium/club) +/area/taipei/club) "pIu" = ( /obj/item/storage/briefcase{ pixel_y = -13; @@ -17638,10 +17704,9 @@ /area/taipei/atrium) "pLb" = ( /turf/open/floor/light{ - light_color = #00008B; - light_power = .5 + light_color = "#38a9fd" }, -/area/taipei/atrium/club) +/area/taipei/club) "pLt" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -17652,14 +17717,14 @@ light_power = .25 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "pLA" = ( /obj/structure/machinery/door/window/brigdoor/southright, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, /turf/open/floor/prison/darkbrowncorners2/southwest, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pLN" = ( /turf/open/floor/carpet11_12/west, /area/taipei/atrium/hotel) @@ -17687,7 +17752,7 @@ "pMv" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/north, -/area/taipei/atrium/club) +/area/taipei/club) "pMJ" = ( /obj/item/lightstick/red/variant/planted, /turf/open/gm/empty, @@ -17776,7 +17841,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "pOp" = ( /obj/item/trash/popcorn{ dir = 1; @@ -17797,7 +17862,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pOq" = ( /turf/open/floor/plating, /area/taipei/hangar/landingzone) @@ -17910,7 +17975,7 @@ dir = 8 }, /turf/open/floor/prison/darkredcorners2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pTu" = ( /obj/structure/surface/table/reinforced/black, /obj/structure/window/reinforced/toughened{ @@ -18032,7 +18097,7 @@ pixel_x = 10 }, /turf/closed/wall/almayer, -/area/taipei/atrium/club) +/area/taipei/club) "pZD" = ( /obj/structure/machinery/light/double{ dir = 1 @@ -18139,7 +18204,7 @@ /obj/structure/sign/poster/io, /obj/structure/mirror, /turf/closed/wall/biodome, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "qgs" = ( /obj/structure/platform{ dir = 1 @@ -18186,7 +18251,7 @@ pixel_x = -5 }, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "qjd" = ( /obj/structure/platform{ layer = 2.7; @@ -18199,7 +18264,7 @@ pixel_y = -3 }, /turf/closed/wall/almayer, -/area/taipei/atrium/club) +/area/taipei/club) "qjJ" = ( /obj/structure/sign/safety/opens_up, /turf/closed/wall/almayer, @@ -18254,7 +18319,7 @@ "qkq" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "qkv" = ( /obj/item/stool{ pixel_y = 12; @@ -18262,7 +18327,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "qky" = ( /turf/closed/wall/almayer, /area/taipei/atrium/hotel) @@ -18340,8 +18405,9 @@ "qou" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/west, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "qpi" = ( /obj/structure/toilet{ pixel_y = 12 @@ -18372,7 +18438,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "qpY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -18543,7 +18609,7 @@ pixel_y = 6 }, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "qyk" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 6; @@ -18612,7 +18678,7 @@ /obj/structure/machinery/door/window/brigdoor/southright, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "qBL" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21"; @@ -18678,10 +18744,9 @@ /obj/item/spacecash/c20, /obj/effect/decal/cleanable/dirt, /turf/open/floor/light{ - light_color = #00008B; - light_power = .5 + light_color = "#38a9fd" }, -/area/taipei/atrium/club) +/area/taipei/club) "qDy" = ( /obj/structure/machinery/deployable, /turf/closed/mineral, @@ -18745,7 +18810,7 @@ /obj/structure/pipes/vents/scrubber, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "qHh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -18807,6 +18872,7 @@ name = "\improper Medical Bay"; req_one_access = null }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/kutjevo, /area/taipei/atrium/medbay) "qJh" = ( @@ -18830,7 +18896,7 @@ pixel_y = 22 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "qJJ" = ( /obj/structure/cable/heavyduty{ icon_state = "2-8" @@ -18906,7 +18972,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "qOn" = ( /obj/structure/platform, /obj/structure/barricade/handrail/strata, @@ -19064,7 +19130,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroid, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "qTZ" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -19151,7 +19217,7 @@ /obj/structure/sign/poster/hunk, /obj/structure/mirror, /turf/closed/wall/biodome, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "qYe" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -19261,7 +19327,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rfk" = ( /obj/structure/machinery/light{ dir = 1 @@ -19273,7 +19339,7 @@ "rfD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rfT" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -19406,7 +19472,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rkA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -19434,14 +19500,14 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rlh" = ( /obj/structure/surface/table/almayer, /obj/structure/window/reinforced{ dir = 4 }, /turf/open/floor/prison/darkredcorners2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rly" = ( /obj/structure/largecrate/random/barrel/true_random{ pixel_x = -9; @@ -19495,7 +19561,7 @@ /area/taipei/maints/south) "rnW" = ( /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "rnX" = ( /obj/structure/cargo_container/arious/leftmid, /obj/structure/prop/invuln/lattice_prop{ @@ -19549,7 +19615,6 @@ /obj/structure/machinery/power/terminal{ dir = 4 }, -/obj/structure/machinery/power/apc/power/east, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/prison, /area/taipei/maints/south) @@ -19576,7 +19641,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "rqT" = ( /obj/structure/platform_decoration{ dir = 8 @@ -19610,7 +19675,7 @@ "rrE" = ( /obj/structure/curtain/red, /turf/open/floor/asteroidplating, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rrU" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning, @@ -19920,7 +19985,7 @@ pixel_y = -10 }, /turf/closed/wall/almayer/outer, -/area/taipei/maints/north) +/area/taipei/club) "rEc" = ( /obj/structure/largecrate/random/barrel/blue{ pixel_x = -10 @@ -20129,7 +20194,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rKL" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -20162,7 +20227,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "rLX" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 6; @@ -20217,7 +20282,7 @@ "rNR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "rOq" = ( /obj/structure/barricade/handrail/type_b{ dir = 4; @@ -20305,7 +20370,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rRE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/barrel/true_random{ @@ -20413,7 +20478,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/carpet15_15/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rVb" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /obj/structure/flora/bush/ausbushes/var3/sunnybush{ @@ -20516,7 +20581,7 @@ /obj/structure/curtain/red, /obj/item/trash/crushed_cup, /turf/open/floor/carpet7_3/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rZT" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -20533,7 +20598,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "sao" = ( /obj/structure/cargo_container/arious/leftmid, /turf/open/floor/asteroidwarning, @@ -20614,15 +20679,15 @@ /turf/open/floor/kutjevo/colors/red/inner_corner, /area/taipei/cmb) "seS" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/obj/structure/machinery/power/apc/power/south, /turf/open/floor/plating/plating_catwalk/prison, -/area/taipei/maints/south) +/area/taipei/reactor) "sfA" = ( /obj/structure/sink{ dir = 1; @@ -20689,7 +20754,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "shQ" = ( /obj/structure/platform{ dir = 1 @@ -20714,7 +20779,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "sjh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidwarning/east, @@ -20747,7 +20812,7 @@ /area/taipei/atrium/medbay) "sjQ" = ( /turf/closed/wall/almayer, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "skD" = ( /obj/structure/bed/sofa/south/white, /obj/effect/decal/cleanable/dirt, @@ -20761,10 +20826,9 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/light{ - light_color = #00008B; - light_power = .5 + light_color = "#38a9fd" }, -/area/taipei/atrium/club) +/area/taipei/club) "skO" = ( /obj/structure/machinery/light{ dir = 8; @@ -20823,7 +20887,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "snK" = ( /turf/open/floor/kutjevo/colors/cyan/edge, /area/taipei/atrium/medbay) @@ -20869,7 +20933,7 @@ dir = 8 }, /turf/open/floor/asteroid, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "sqd" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 @@ -20890,7 +20954,7 @@ dir = 1 }, /turf/open/floor/prison/darkredcorners2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "sqO" = ( /obj/structure/surface/table/reinforced/black, /obj/item/restraint/handcuffs/zip{ @@ -20925,11 +20989,11 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "srJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkred2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "ssc" = ( /obj/structure/machinery/light{ dir = 4 @@ -20939,6 +21003,7 @@ "ssB" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/east, /turf/open/floor/almayer/edge/east, /area/taipei/hangar/cargoshuttle) "ssE" = ( @@ -21173,7 +21238,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "sFd" = ( /obj/structure/platform/kutjevo/smooth, /obj/effect/decal/cleanable/dirt, @@ -21186,7 +21251,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "sFS" = ( /turf/open/floor/asteroidwarning/north, /area/taipei/maints/south) @@ -21410,7 +21475,7 @@ /obj/structure/window/framed/corsat/cell, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "sPt" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -21566,7 +21631,7 @@ dir = 1 }, /turf/open/floor/prison/chapel_carpet/doubleside, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "sVa" = ( /obj/structure/platform, /obj/effect/decal/cleanable/dirt, @@ -21600,7 +21665,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "sVA" = ( /obj/structure/closet/secure_closet/medical2{ pixel_x = 9; @@ -21645,7 +21710,7 @@ "sYX" = ( /obj/structure/machinery/light, /turf/open/floor/carpet13_5/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "sZf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -21823,7 +21888,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "ten" = ( /obj/structure/bed{ pixel_x = 0; @@ -22054,12 +22119,12 @@ "tnX" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/almayer, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "toi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "toC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -22162,7 +22227,7 @@ /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet13_5, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "trY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -22174,7 +22239,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "tsy" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -22201,12 +22266,12 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "tuF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, /turf/open/floor/asteroidplating, /area/taipei/atrium/store) "tuI" = ( @@ -22246,7 +22311,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "tvQ" = ( /obj/structure/platform{ dir = 1 @@ -22277,7 +22342,7 @@ pixel_x = -5 }, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "twU" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" @@ -22501,10 +22566,10 @@ pixel_x = -5 }, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "tHU" = ( /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "tIH" = ( /obj/structure/surface/table, /obj/structure/window/reinforced, @@ -22559,7 +22624,7 @@ /obj/item/clothing/under/stripper/mankini, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "tMF" = ( /obj/structure/platform/kutjevo/smooth{ luminosity = 15 @@ -22574,7 +22639,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "tMI" = ( /obj/structure/toilet{ pixel_y = 12 @@ -22752,7 +22817,7 @@ /obj/structure/closet/cabinet, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "tSZ" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -22819,7 +22884,7 @@ dir = 1 }, /turf/open/floor/corsat/marked, -/area/taipei/atrium/club) +/area/taipei/club) "tYp" = ( /obj/structure/window/framed/corsat, /obj/structure/machinery/door/poddoor/shutters/almayer/open, @@ -22846,7 +22911,7 @@ dir = 8 }, /turf/open/floor/prison/darkbrowncorners2/southwest, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "uaq" = ( /turf/closed/wall/almayer, /area/taipei/atrium/offices) @@ -22856,7 +22921,7 @@ dir = 8 }, /turf/open/floor/carpet9_4/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "ubP" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/kutjevo/tan, @@ -23007,7 +23072,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "ujx" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -23200,7 +23265,7 @@ dir = 9 }, /turf/open/floor/carpet13_5, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "upf" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -23307,7 +23372,7 @@ pixel_y = -2 }, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "utK" = ( /obj/structure/surface/rack{ pixel_x = 4 @@ -23318,6 +23383,12 @@ }, /turf/open/floor/bar, /area/taipei/atrium/store) +"utQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) "utX" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 30 @@ -23365,7 +23436,7 @@ dir = 3 }, /turf/closed/wall/almayer, -/area/space) +/area/taipei/theatre) "uwK" = ( /obj/structure/platform/stair_cut/alt, /obj/structure/stairs/perspective{ @@ -23432,7 +23503,7 @@ /obj/structure/machinery/camera, /obj/structure/pipes/vents/pump, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "uyN" = ( /obj/structure/machinery/light/small{ light_color = "#C02526"; @@ -23541,7 +23612,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "uGe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -23591,7 +23662,7 @@ "uIK" = ( /obj/structure/window/reinforced, /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "uIO" = ( /obj/structure/surface/table, /obj/structure/window/reinforced{ @@ -23687,6 +23758,15 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/telecomms) +"uQf" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8; + light_power = .50 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) "uQW" = ( /obj/structure/sign/safety/bathunisex, /turf/closed/wall/biodome, @@ -23725,7 +23805,7 @@ /area/taipei/maints/south) "uSc" = ( /turf/open/floor/prison/darkred2, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "uSs" = ( /obj/structure/cable/heavyduty{ icon_state = "0-2" @@ -23882,7 +23962,7 @@ pixel_y = 2 }, /turf/open/floor/prison/darkredcorners2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "vcZ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/bar, @@ -23967,6 +24047,18 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor, /area/taipei/atrium/laundry) +"vhw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -17; + pixel_y = 23 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) "vhM" = ( /obj/structure/machinery/door/airlock/almayer/generic/autoname{ dir = 1 @@ -24028,6 +24120,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor, /area/taipei/maints/south) +"vkA" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) "vlp" = ( /obj/structure/machinery/light/double{ dir = 4 @@ -24106,7 +24205,7 @@ /obj/effect/decal/cleanable/vomit, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "vqo" = ( /turf/closed/wall/r_wall/prison, /area/taipei/cmb) @@ -24176,7 +24275,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "vtK" = ( /obj/structure/platform{ layer = 2.7; @@ -24198,7 +24297,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "vvv" = ( /obj/structure/cargo_container/kelland/left{ pixel_x = 4; @@ -24278,7 +24377,6 @@ dir = 6 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north, /turf/open/floor/prison, /area/taipei/maints/north) "vwH" = ( @@ -24289,7 +24387,7 @@ dir = 1 }, /turf/open/floor/carpet11_12/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "vwX" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -24337,7 +24435,7 @@ "vAE" = ( /obj/item/spacecash/c20, /turf/open/floor/light/broken, -/area/taipei/atrium/club) +/area/taipei/club) "vBq" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 1 @@ -24359,7 +24457,7 @@ light_power = .50 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "vBx" = ( /obj/structure/machinery/light/blue{ dir = 4 @@ -24449,7 +24547,7 @@ dir = 1 }, /turf/open/floor/corsat/marked, -/area/taipei/atrium/club) +/area/taipei/club) "vDl" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -24484,6 +24582,8 @@ }, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) +"vEr" = ( +/turf/closed/wall/biodome) "vEU" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -24499,7 +24599,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "vFI" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 30 @@ -24510,7 +24610,7 @@ "vGe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkred2, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "vGr" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -24518,7 +24618,6 @@ /obj/structure/cable/heavyduty{ icon_state = "node" }, -/obj/structure/machinery/power/apc/power/south, /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, @@ -24572,7 +24671,7 @@ light_power = .25 }, /turf/open/floor/carpet11_12/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "vJq" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -24594,7 +24693,6 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/obj/structure/machinery/power/apc/power/north, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/north) "vKR" = ( @@ -24613,7 +24711,7 @@ /obj/item/spacecash/c10, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "vME" = ( /obj/structure/noticeboard{ pixel_y = 32 @@ -24824,7 +24922,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "vTd" = ( /obj/structure/barricade/handrail/kutjevo{ dir = 8 @@ -24852,7 +24950,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/carpet13_5/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "vUm" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 8 @@ -24928,7 +25026,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "vZD" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/corsat/marked, @@ -24963,7 +25061,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "wbN" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -24988,6 +25086,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/edge/smooth/endcap_left/west, /area/taipei/hangar/cargoshuttle) +"wcn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/atrium/hotel) "wcS" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -25134,6 +25236,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/kitchen, /area/taipei/atrium/restaurant) +"wfD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) "wfQ" = ( /obj/structure/cargo_container/arious/rightmid, /obj/structure/prop/invuln/lattice_prop{ @@ -25269,7 +25376,7 @@ pixel_x = -5 }, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "wkA" = ( /obj/structure/phone_base{ dir = 1 @@ -25280,7 +25387,7 @@ /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/chem_dispenser/soda, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "wly" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -25423,7 +25530,7 @@ "wuw" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "wuF" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -25447,7 +25554,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "wwD" = ( /obj/structure/platform/kutjevo/smooth{ luminosity = 15 @@ -25465,7 +25572,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "wxB" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -25526,7 +25633,7 @@ /area/taipei/hangar/cargoshuttle) "wAj" = ( /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "wAm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/overhead_pipe{ @@ -25639,7 +25746,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "wFN" = ( /obj/structure/stairs/perspective{ dir = 8 @@ -25725,7 +25832,7 @@ /obj/structure/machinery/chem_dispenser/soda, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "wJI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/lattice_prop{ @@ -25868,7 +25975,7 @@ /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredcorners2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "wUA" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/tan/alt_edge/northwest, @@ -25898,7 +26005,7 @@ "wVX" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "wWa" = ( /obj/structure/machinery/light{ dir = 8 @@ -25912,7 +26019,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "wWp" = ( /obj/structure/machinery/door/poddoor/shutters/almayer, /obj/effect/decal/cleanable/dirt, @@ -25950,7 +26057,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet11_12/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "wXh" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -26014,6 +26121,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) +"wYE" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) "wZw" = ( /obj/item/spacecash/c10{ pixel_y = 4; @@ -26021,7 +26132,7 @@ }, /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "wZZ" = ( /obj/structure/bed/sofa/vert/white/bot, /turf/open/floor/plating/asteroidfloor, @@ -26065,12 +26176,12 @@ "xaP" = ( /obj/structure/curtain/red, /turf/open/floor/carpet7_3/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "xbd" = ( /obj/structure/pipes/vents/scrubber, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "xck" = ( /obj/structure/machinery/door/window/brigdoor/southleft, /obj/effect/decal/cleanable/dirt, @@ -26116,7 +26227,7 @@ }, /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "xeN" = ( /obj/structure/machinery/door/poddoor/almayer/locked, /obj/structure/blocker/forcefield/human, @@ -26169,7 +26280,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "xgS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -26228,7 +26339,7 @@ "xiK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/southwest, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "xiT" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -26285,7 +26396,7 @@ "xjG" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/light/broken, -/area/taipei/atrium/club) +/area/taipei/club) "xjW" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, @@ -26317,9 +26428,7 @@ /turf/open/floor/kutjevo/colors/red/edge, /area/taipei/cmb) "xlJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Visitor Entrance" - }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, /obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/whitered{ dir = 1 @@ -26383,7 +26492,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "xou" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -26455,7 +26564,7 @@ /obj/item/trash/cigbutt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "xrQ" = ( /obj/structure/surface/table, /obj/structure/prop/invuln/overhead_pipe{ @@ -26472,7 +26581,7 @@ "xsp" = ( /obj/structure/surface/table/almayer, /turf/open/floor/prison/darkbrowncorners2/southwest, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "xsr" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -26498,7 +26607,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "xtP" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -26525,7 +26634,7 @@ "xuJ" = ( /obj/structure/sign/poster/blacklight, /turf/closed/wall/almayer, -/area/taipei/atrium/club) +/area/taipei/club) "xvJ" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -26564,7 +26673,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/closed/wall/almayer, -/area/taipei/atrium/club) +/area/taipei/club) "xwt" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 30 @@ -26792,7 +26901,7 @@ /obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "xDs" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -26925,6 +27034,7 @@ /area/taipei/maints/north) "xJD" = ( /obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/kutjevo/tan, /area/taipei/atrium/offices) "xJK" = ( @@ -27009,7 +27119,7 @@ dir = 8 }, /turf/open/floor/prison/darkredcorners2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "xOK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair{ @@ -27395,7 +27505,7 @@ dir = 8 }, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "yfC" = ( /obj/structure/pipes/vents, /obj/effect/decal/cleanable/dirt, @@ -27457,7 +27567,7 @@ dir = 8 }, /turf/open/floor/carpet5_1/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "yiF" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -27485,10 +27595,9 @@ "yjz" = ( /obj/item/spacecash/c20, /turf/open/floor/light{ - light_color = #00008B; - light_power = .5 + light_color = "#38a9fd" }, -/area/taipei/atrium/club) +/area/taipei/club) "yjJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -35532,7 +35641,7 @@ fdU fnB fnB xJD -bej +kEu kzi kzi cEr @@ -35957,7 +36066,7 @@ kRV vSl mTi bXl -gCt +wYE sdS wrB nCN @@ -36138,7 +36247,7 @@ cuq cKu uaq uaq -bej +kEu bej bej cEr @@ -39156,7 +39265,7 @@ iQr lGZ lRT aqL -hrp +xBP vQx uvp wuF @@ -39402,7 +39511,7 @@ fnG mBI vim dtY -jvg +lEC bzQ dvy bzQ @@ -40348,7 +40457,7 @@ wJp tau hKJ gje -vUH +utQ vQx vQx aNh @@ -40751,7 +40860,7 @@ wJp wJp xeN blu -wBC +jTh vQx jOE bNd @@ -41144,7 +41253,7 @@ bkG cGF cHI equ -njf +seS ehP sCY kYI @@ -41827,14 +41936,14 @@ sjQ sjQ kmf sjQ -tuY -tuY -tuY -tuY -tuY -tuY -tuY -tuY +bwE +bwE +bwE +bwE +bwE +bwE +bwE +bwE uwC kQD bEU @@ -41957,8 +42066,8 @@ qjY kYI yhR yhR -tuY -tuY +oEr +oEr aqL aqL aqL @@ -42225,7 +42334,7 @@ ejY cEB jIA hDM -utK +nkF aKV gbt lgm @@ -42428,7 +42537,7 @@ cEB ryw kRY gHA -cEB +mfA pic aej uoV @@ -42629,7 +42738,7 @@ vcZ cEB cEB hDM -vcZ +vhw vcZ gbt kJO @@ -43053,7 +43162,7 @@ dbC uot doI uot -fzp +jxb qgs rrU lQJ @@ -44448,7 +44557,7 @@ qqj cEB jeM xiV -gbt +ttc gbt wuw try @@ -44650,7 +44759,7 @@ ttc ttc ttc ttc -gbt +ttc gbt wuw ixH @@ -46412,7 +46521,7 @@ vQx jOE nOk xDs -aqL +bVs bVs bVs bVs @@ -46614,7 +46723,7 @@ vQx jOE amB xDs -aqL +bVs qJh iif bJY @@ -46685,7 +46794,7 @@ mgb cUe rrE xYs -cUh +mpN uot doI uot @@ -46816,7 +46925,7 @@ alr jEe qSj pnr -lGZ +pbd liI qNy rqN @@ -47018,7 +47127,7 @@ vQx jrf amB foW -aqL +bVs deH eNX iPe @@ -47074,20 +47183,20 @@ tuY tuY tuY tuY -gbt +vEr sjQ sjQ joa sjQ -tuY -tuY -tuY -tuY -tuY -tuY -tuY -tuY -tuY +bwE +bwE +bwE +bwE +bwE +bwE +bwE +bwE +bwE uot iaN uot @@ -47220,7 +47329,7 @@ vQx lng amB xDs -aqL +bVs bVs bVs bVs @@ -48230,7 +48339,7 @@ vQx jOE amB lmv -aqL +bVs bVs bVs bVs @@ -49302,10 +49411,10 @@ aOi gKn gKn hDR -ogc +jvg ces eZE -jZK +uQf hYm iJD iJD @@ -49646,7 +49755,7 @@ tcp sjh sjh bFJ -sjh +kZf xKO rdf bFJ @@ -49916,7 +50025,7 @@ gKn gKn lfa iJD -ltx +qky iQr iQr iQr @@ -50049,7 +50158,7 @@ fDw vbr mDD mDD -mDD +hAl mDD mDD ook @@ -50118,7 +50227,7 @@ gKn gKn xpT iJD -ltx +qky iQr iQr iQr @@ -50320,7 +50429,7 @@ eoO jZK iJD iJD -ltx +qky iQr iQr iQr @@ -50521,8 +50630,8 @@ eoO gKn ogc iJD -ltx -ltx +qky +qky iQr iQr iQr @@ -50719,11 +50828,11 @@ hDR hsj hYm eZE -ogc +cUh ces iJD iJD -ltx +qky iQr iQr iQr @@ -50924,8 +51033,8 @@ iJD bwz bwz iJD -ltx -ltx +qky +qky iQr iQr iQr @@ -51125,8 +51234,8 @@ dov kin koZ iJD -ltx -ltx +qky +qky iQr iQr iQr @@ -51327,7 +51436,7 @@ aQg bwz fWG iJD -ltx +qky iQr iQr iQr @@ -51529,7 +51638,7 @@ iJD iJD iJD iJD -ltx +qky iQr iQr iQr @@ -51731,7 +51840,7 @@ dov fql koZ iJD -ltx +qky iQr iQr iQr @@ -51933,7 +52042,7 @@ mnA bwz xBS iJD -ltx +qky iQr iQr iQr @@ -52135,7 +52244,7 @@ bwz iJD bwz iJD -ltx +qky iQr iQr iQr @@ -52337,7 +52446,7 @@ dov kin koZ iJD -ltx +qky iQr iQr iQr @@ -52539,7 +52648,7 @@ mnA bwz bGo iJD -ltx +qky iQr iQr iQr @@ -52741,7 +52850,7 @@ vgg bwz iJD iJD -ltx +qky iQr iQr iQr @@ -52943,7 +53052,7 @@ dov fql aON iJD -ltx +qky iQr iQr iQr @@ -53145,7 +53254,7 @@ tgu iJD bGo bwz -ltx +qky iQr iQr iQr @@ -53347,7 +53456,7 @@ vgg iJD bwz bwz -tyZ +wcn iQr iQr iQr @@ -53549,7 +53658,7 @@ iLJ kin knT iJD -ltx +qky iQr iQr iQr @@ -53751,7 +53860,7 @@ tgu bwz bGo iJD -ltx +qky iQr iQr iQr @@ -53953,7 +54062,7 @@ iJD bwz bwz iJD -ltx +qky iQr iQr iQr @@ -54155,7 +54264,7 @@ dov kin koZ iJD -ltx +qky iQr iQr iQr @@ -54357,7 +54466,7 @@ aQg bwz fWG iJD -ltx +qky iQr iQr iQr @@ -54559,7 +54668,7 @@ bwz iJD iJD iJD -ltx +qky iQr iQr iQr @@ -55731,7 +55840,7 @@ iQr iQr iQr aqL -kEu +hsW gvH oty nZf @@ -55753,7 +55862,7 @@ igm nWK huQ bbQ -seS +iXI uot iQr iQr @@ -57362,7 +57471,7 @@ tPV cOS tPV emO -qtT +dxT nGI mpX qtT @@ -60134,7 +60243,7 @@ apD apD apD pew -aof +cPE xKG rqJ dNF @@ -61588,7 +61697,7 @@ rqJ rqJ sgE fLE -nvl +hrp pCy nvl mpR @@ -61782,7 +61891,7 @@ pOq flb krw itE -qoj +vkA xKG rqJ rqJ @@ -62592,7 +62701,7 @@ mPE dqM shQ xKG -rqJ +wfD rqJ aof rqJ From 9266b5fe38ba454a91cde886b067944aad8ed43e Mon Sep 17 00:00:00 2001 From: Lagomorph121 Date: Fri, 3 Jan 2025 12:15:57 -0700 Subject: [PATCH 03/15] Map fixes Nothing big, power issues + small mapping errors (Ie. walls under windows, improperly named doors, etc.) --- code/game/area/Taipei.dm | 7 +- .../Taipei_Station/Taipei_Station.dmm | 2786 ++++++++--------- 2 files changed, 1395 insertions(+), 1398 deletions(-) diff --git a/code/game/area/Taipei.dm b/code/game/area/Taipei.dm index 6bfb1dc8c19..c37ae3a38be 100644 --- a/code/game/area/Taipei.dm +++ b/code/game/area/Taipei.dm @@ -98,12 +98,17 @@ sound_environment = SOUND_ENVIRONMENT_LIVINGROOM /area/taipei/reactor - name = "Reactor Control Room" + name = "\improper Reactor Control Room" icon_state = "upperengineering" sound_environment = SOUND_ENVIRONMENT_GENERIC soundscape_playlist = SCAPE_PL_ENG soundscape_interval = 15 +/area/taipei/reactor/chamber + name = "\improper Reactor Chamber" + icon_state = "green" + sound_environment = SOUND_ENVIRONMENT_MOUNTAINS + /area/taipei/atrium/restaurant name = "\improper Sal's Noodles" icon_state = "pink" diff --git a/maps/map_files/Taipei_Station/Taipei_Station.dmm b/maps/map_files/Taipei_Station/Taipei_Station.dmm index 9345851313f..1737aa17b03 100644 --- a/maps/map_files/Taipei_Station/Taipei_Station.dmm +++ b/maps/map_files/Taipei_Station/Taipei_Station.dmm @@ -28,7 +28,7 @@ pixel_x = -1 }, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "acM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -300,8 +300,8 @@ /area/taipei/atrium) "ans" = ( /obj/structure/prop/turbine, -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "anz" = ( /obj/effect/decal/cleanable/cobweb2/dynamic, /obj/effect/decal/cleanable/dirt, @@ -459,23 +459,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) -"avR" = ( -/obj/structure/platform{ - layer = 2.7; - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/taipei/cargo) "awf" = ( /obj/structure/platform_decoration, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "awh" = ( /obj/structure/barricade/handrail/strata{ pixel_y = -4 @@ -656,6 +643,11 @@ id = "vehicle_elevator_railing" }, /obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, /turf/open/floor/prison, /area/taipei/cargo) "aFw" = ( @@ -1082,13 +1074,9 @@ /obj/structure/barricade/handrail/strata{ pixel_y = -4 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/prison, /area/taipei/cargo) "aYp" = ( @@ -1212,11 +1200,11 @@ /obj/structure/barricade/handrail/strata{ pixel_y = -4 }, -/turf/open/gm/empty, +/turf/open/void, /area/taipei/maints/south) "bcJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/closed/wall/almayer, +/turf/closed/wall/almayer/outer, /area/taipei/reactor) "bdi" = ( /obj/structure/platform_decoration/kutjevo{ @@ -1337,8 +1325,8 @@ "bkG" = ( /obj/structure/platform, /obj/structure/barricade/handrail/strata, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "bkU" = ( /obj/structure/surface/rack, /obj/structure/surface/rack{ @@ -1726,6 +1714,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/tan/grey_edge/west, /area/taipei/atrium/offices) +"byz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/prison, +/area/taipei/maints/north) "byS" = ( /obj/structure/bed{ pixel_x = 0; @@ -1987,8 +1980,8 @@ "bGR" = ( /obj/structure/machinery/elevator_strut/bottom, /obj/item/lightstick/red/variant/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "bGX" = ( /obj/structure/barricade/handrail/strata{ pixel_y = -4 @@ -2310,8 +2303,8 @@ pixel_y = 6; dir = 3 }, -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "cac" = ( /obj/structure/sink{ dir = 1; @@ -2324,9 +2317,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/colors, /area/taipei/cmb) -"caH" = ( -/turf/open/floor/asteroid, -/area/taipei/cargo) "caU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/overhead_pipe{ @@ -2602,9 +2592,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/west, /area/taipei/theatre) -"cjq" = ( -/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, -/area/taipei/reactor) "cjC" = ( /obj/structure/machinery/light/blue{ dir = 8 @@ -2661,8 +2648,8 @@ /area/taipei/maints/south) "clj" = ( /obj/structure/prop/invuln/overhead_pipe, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "clS" = ( /obj/structure/machinery/light, /turf/open/floor/prison, @@ -3191,14 +3178,14 @@ /obj/item/lightstick/red/variant/planted{ light_range = 5 }, -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "cGF" = ( /obj/structure/platform, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "cHC" = ( /obj/item/stool{ icon_state = "stool_alt" @@ -3207,13 +3194,6 @@ dir = 4 }, /area/taipei/atrium/restaurant) -"cHI" = ( -/obj/structure/window/framed/almayer, -/obj/structure/blocker/forcefield/human{ - icon = 'icons/' - }, -/turf/open/floor/prison, -/area/taipei/reactor) "cHV" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -3725,8 +3705,8 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "deH" = ( /obj/item/storage/secure/safe{ pixel_y = 29 @@ -4158,19 +4138,14 @@ "dwY" = ( /obj/structure/prop/turbine, /obj/item/lightstick/red/variant/planted, -/turf/open/floor/mech_bay_recharge_floor, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "dxb" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_y = 1; pixel_x = 1 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/taipei/cargo) @@ -4267,8 +4242,8 @@ "dCp" = ( /obj/structure/machinery/elevator_strut/bottom, /obj/structure/prop/invuln/overhead_pipe, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "dCF" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -4312,8 +4287,8 @@ pixel_x = 16; pixel_y = 0 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "dET" = ( /obj/item/lightstick/red/spoke/planted, /obj/effect/decal/warning_stripes{ @@ -4418,7 +4393,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "dJA" = ( /obj/structure/window/framed/corsat, /obj/structure/machinery/door/poddoor/shutters/almayer/open, @@ -4444,7 +4419,7 @@ light_power = .50 }, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "dLf" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -4675,8 +4650,8 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, /turf/open/floor/prison, /area/taipei/cargo) @@ -4706,8 +4681,8 @@ pixel_x = -8; pixel_y = 0 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "dXc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, @@ -4724,6 +4699,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/prison, /area/taipei/cargo) "dXu" = ( @@ -4966,8 +4942,8 @@ /area/taipei/maints/south) "egf" = ( /obj/item/lightstick/red/spoke/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "egt" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, @@ -5418,9 +5394,6 @@ }, /turf/open/floor/mech_bay_recharge_floor, /area/taipei/cargo) -"eAu" = ( -/turf/open/space/basic, -/area/taipei/cargo) "eAQ" = ( /obj/item/stool{ pixel_y = 15 @@ -5631,7 +5604,7 @@ /turf/open/floor/prison/bluecorner/north, /area/taipei/club) "eIq" = ( -/obj/docking_port, +/obj/docking_port/stationary/marine_dropship/lz1, /turf/open/floor/plating, /area/taipei/hangar/landingzone) "eIR" = ( @@ -5865,9 +5838,21 @@ /turf/open/floor/prison/cell_stripe, /area/taipei/atrium/hotel) "eWE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/closed/wall/almayer, -/area/taipei/reactor) +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/turf/open/void/vehicle, +/area/taipei/reactor/chamber) "eWQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -5918,8 +5903,8 @@ pixel_x = 16; pixel_y = -15 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "eZE" = ( /obj/structure/bed/chair/comfy{ pixel_y = -2 @@ -5932,11 +5917,7 @@ /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) "eZX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/chem_dispenser/soda/beer{ - pixel_y = 8; - dir = 4 - }, +/obj/structure/machinery/cm_vending/sorted/boozeomat, /turf/open/floor/bar, /area/taipei/atrium/restaurant) "faq" = ( @@ -5988,8 +5969,8 @@ pixel_x = -4; pixel_y = 6 }, -/turf/open/floor/mech_bay_recharge_floor, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "fby" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -6088,8 +6069,8 @@ pixel_y = 7 }, /obj/item/lightstick/red/variant/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "feT" = ( /obj/structure/bed/sofa/south/white, /turf/open/floor/plating/asteroidfloor, @@ -6129,7 +6110,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "fgw" = ( /obj/item/stool{ pixel_y = 8; @@ -6576,8 +6557,8 @@ /obj/item/lightstick/red/variant/planted{ light_range = 5 }, -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "fBF" = ( /obj/structure/bed/sofa/south/white/left{ pixel_y = 16 @@ -6902,8 +6883,8 @@ dir = 4; pixel_x = -1 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "fRG" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -6972,6 +6953,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/prison, /area/taipei/cargo) "fVU" = ( @@ -7486,11 +7468,11 @@ pixel_y = 6; dir = 3 }, -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "gua" = ( -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "guf" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -7523,7 +7505,7 @@ /turf/open/floor/plating/asteroidfloor/north, /area/taipei/hangar) "gvH" = ( -/turf/open/gm/empty, +/turf/open/void, /area/taipei/maints/north) "gwB" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -7563,11 +7545,6 @@ layer = 2.7; dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -7589,14 +7566,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/faux_wood, /area/taipei/atrium/restaurant) -"gAi" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/asteroid, -/area/taipei/cargo) "gAS" = ( /turf/open/floor/kutjevo/tan/grey_inner_edge/east, /area/taipei/atrium) @@ -7647,9 +7616,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/taipei/maints/south) -"gEA" = ( -/turf/open/floor/almayer/empty, -/area/taipei/reactor) "gEE" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -8137,8 +8103,8 @@ pixel_x = -16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "hgl" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -8288,11 +8254,6 @@ dir = 4; id = "vehicle_elevator_railing_aux" }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, /turf/open/floor/prison, /area/taipei/cargo) "hnU" = ( @@ -8527,11 +8488,6 @@ dir = 4; id = "vehicle_elevator_railing_aux" }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, /turf/open/floor/prison, /area/taipei/cargo) "hyw" = ( @@ -8934,11 +8890,6 @@ }, /turf/open/space/basic, /area/space) -"hRn" = ( -/obj/structure/prop/turbine, -/obj/item/lightstick/red/variant/planted, -/turf/open/gm/empty, -/area/taipei/reactor) "hSu" = ( /obj/item/stool{ pixel_y = 14 @@ -9011,7 +8962,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "hVs" = ( /obj/item/lightstick/red/spoke/planted, /obj/effect/decal/warning_stripes{ @@ -9413,7 +9364,7 @@ /obj/structure/platform, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "itE" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -9714,8 +9665,8 @@ pixel_x = 13; pixel_y = 0 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "iGJ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/storage/toolbox/electrical{ @@ -10129,7 +10080,8 @@ /area/taipei/maints/south) "jal" = ( /obj/effect/elevator, -/turf/open/space/basic, +/obj/effect/elevator/animation_overlay, +/turf/open/void, /area/taipei/cargo) "jav" = ( /obj/structure/bookcase{ @@ -10275,8 +10227,8 @@ dir = 10 }, /obj/structure/barricade/handrail/strata, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "jes" = ( /obj/structure/curtain/medical, /obj/structure/cable/heavyduty{ @@ -10382,6 +10334,11 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, /turf/open/floor/prison, /area/taipei/cargo) "jhE" = ( @@ -10623,8 +10580,8 @@ pixel_x = -1 }, /obj/item/lightstick/red/spoke/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "jvY" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -11128,7 +11085,7 @@ /area/taipei/theatre) "jVD" = ( /obj/structure/machinery/elevator_strut/top, -/turf/open/gm/empty, +/turf/open/void, /area/taipei/maints/north) "jVM" = ( /obj/effect/decal/cleanable/dirt, @@ -11429,6 +11386,34 @@ }, /turf/open/floor/prison, /area/taipei/cargo) +"klC" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/stack/cable_coil{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding10" + }, +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/mob/living/simple_animal/mouse{ + desc = "One day, while doing nothing particularly out of the ordinary, because of natural laws he was completely powerless to understand or intuit, he was instantly killed in a horrifying way by forces vastly in excess of anything he was ever designed to experience, for no reason, to no ones particular surprise or upset. In this we are more like him than different"; + health = -10; + name = "burnt mouse" + }, +/obj/effect/decal/strata_decals/grime/grime3, +/obj/item/stack/catwalk{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/plating, +/area/taipei/maints/north) "klI" = ( /obj/structure/surface/rack{ pixel_x = -5 @@ -11595,8 +11580,8 @@ pixel_x = -12; pixel_y = 0 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "kqv" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -11754,8 +11739,8 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "kAA" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -11890,14 +11875,15 @@ /turf/open/floor/prison, /area/taipei/cargo) "kDQ" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "vehicle_elevator_railing_aux" +/obj/structure/platform{ + layer = 2.7; + dir = 4 }, +/obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 }, /turf/open/floor/prison, /area/taipei/cargo) @@ -11953,7 +11939,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "kJO" = ( /turf/open/floor/carpet14_10/west, /area/taipei/theatre) @@ -12251,10 +12237,7 @@ /obj/structure/platform{ layer = 3.1 }, -/obj/structure/window/framed/almayer, -/obj/structure/blocker/forcefield/human{ - icon = 'icons/' - }, +/obj/structure/window/framed/almayer/hull, /turf/open/floor/prison, /area/taipei/reactor) "kWK" = ( @@ -12397,8 +12380,8 @@ dir = 8 }, /obj/item/lightstick/red/spoke/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "lgm" = ( /obj/structure/pipes/vents, /obj/effect/decal/cleanable/dirt, @@ -12665,6 +12648,9 @@ dir = 4 }, /area/taipei/atrium) +"lqR" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor/chamber) "lrH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door/poddoor/shutters/almayer, @@ -12763,8 +12749,8 @@ pixel_x = 16; pixel_y = -15 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "luW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -12844,8 +12830,8 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "lxO" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -13198,8 +13184,8 @@ pixel_x = 16; pixel_y = -15 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "lLw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -13406,15 +13392,15 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "lXo" = ( /obj/structure/machinery/elevator_strut/bottom, /obj/structure/prop/invuln/overhead_pipe{ pixel_x = -8; pixel_y = 0 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "lXI" = ( /obj/structure/machinery/light{ dir = 1 @@ -13586,8 +13572,8 @@ "mfT" = ( /obj/structure/lattice, /obj/item/lightstick/red/spoke/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "mgb" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -13811,11 +13797,12 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/prison, /area/taipei/cargo) "moD" = ( /obj/structure/machinery/elevator_strut/bottom, -/turf/open/gm/empty, +/turf/open/void, /area/taipei/maints/north) "moK" = ( /obj/structure/surface/rack{ @@ -13902,8 +13889,8 @@ pixel_x = -4; pixel_y = 6 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "msJ" = ( /obj/structure/machinery/light/blue, /obj/structure/coatrack{ @@ -14098,8 +14085,8 @@ pixel_x = 16; pixel_y = -15 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "mDl" = ( /obj/structure/bed/sofa/vert/white/bot, /obj/effect/decal/cleanable/dirt, @@ -14288,8 +14275,8 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "mNy" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 8 @@ -14598,8 +14585,8 @@ pixel_x = -4; pixel_y = 6 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "ncn" = ( /obj/structure/stairs/perspective{ dir = 8 @@ -14814,8 +14801,8 @@ "nkR" = ( /obj/structure/lattice, /obj/structure/prop/static_tank, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "nkV" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -15042,8 +15029,8 @@ /area/taipei/hangar) "nxk" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/closed/wall/almayer, -/area/space) +/turf/closed/wall/almayer/outer, +/area/taipei/reactor) "nxq" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -15115,7 +15102,7 @@ /obj/structure/barricade/handrail/strata{ pixel_y = -4 }, -/turf/open/gm/empty, +/turf/open/void, /area/taipei/maints/south) "nCy" = ( /obj/structure/machinery/light{ @@ -15288,9 +15275,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor, /area/taipei/maints/north) -"nLW" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/taipei/reactor) "nNw" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 4 @@ -15526,7 +15510,7 @@ pixel_y = -11 }, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "nUs" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -15643,17 +15627,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/west, /area/taipei/club) -"obk" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/taipei/cargo) "obs" = ( /obj/structure/barricade/handrail/strata{ pixel_y = -4 @@ -15673,11 +15646,8 @@ /obj/structure/platform{ layer = 3.1 }, -/obj/structure/window/framed/almayer, /obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/human{ - icon = 'icons/' - }, +/obj/structure/window/framed/almayer/hull, /turf/open/floor/prison, /area/taipei/reactor) "ocK" = ( @@ -16086,7 +16056,7 @@ "opt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/closed/wall/almayer, +/turf/closed/wall/almayer/outer, /area/taipei/reactor) "opZ" = ( /obj/structure/closet/secure_closet/detective{ @@ -16222,12 +16192,14 @@ /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) "ovS" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/turf/open/space/basic, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, /area/taipei/cargo) "oxM" = ( /obj/structure/window/framed/prison/cell, @@ -16767,6 +16739,7 @@ "oXI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/north) "oYd" = ( @@ -16860,8 +16833,8 @@ /obj/item/lightstick/red/variant/planted{ light_range = 5 }, -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "pbP" = ( /obj/structure/barricade/metal{ dir = 8; @@ -16898,11 +16871,6 @@ dir = 8; id = "supply_elevator_railing" }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -17363,10 +17331,7 @@ /turf/open/floor/carpet7_3/west, /area/taipei/theatre) "pxr" = ( -/obj/structure/blocker/forcefield/human{ - icon = 'icons/' - }, -/obj/structure/window/framed/almayer, +/obj/structure/window/framed/almayer/hull, /turf/open/floor/prison, /area/taipei/reactor) "pxG" = ( @@ -17417,15 +17382,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner, /area/taipei/club) -"pzh" = ( -/obj/effect/elevator, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/asteroid, -/area/taipei/cargo) "pzk" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -17755,8 +17711,8 @@ /area/taipei/club) "pMJ" = ( /obj/item/lightstick/red/variant/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "pMK" = ( /obj/structure/platform_decoration{ dir = 1 @@ -17766,8 +17722,8 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "pMR" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -17871,8 +17827,8 @@ /turf/open/floor/kutjevo/tan, /area/taipei/elevator/arrivals) "pOK" = ( -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/cargo) "pPy" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -17919,7 +17875,7 @@ light_power = .50 }, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "pRe" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -18125,8 +18081,8 @@ pixel_x = 16; pixel_y = 6 }, -/turf/open/floor/mech_bay_recharge_floor, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "qaS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, @@ -19202,9 +19158,23 @@ /turf/open/floor/prison, /area/taipei/maints/south) "qXz" = ( -/obj/structure/prop/turbine, -/turf/open/floor/mech_bay_recharge_floor, -/area/taipei/reactor) +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow"; + color = "#E10600"; + dir = 8 + }, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "vehicle_elevator_railing_aux" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/turf/open/floor/prison, +/area/taipei/cargo) "qXE" = ( /turf/open/floor/plating/wood_broken2, /area/taipei/atrium/bookstore) @@ -19258,8 +19228,8 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "qZy" = ( /obj/structure/platform, /obj/structure/barricade/handrail/strata, @@ -19368,8 +19338,8 @@ }, /obj/structure/lattice, /obj/item/lightstick/red/spoke/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "rgP" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -19540,8 +19510,8 @@ pixel_y = 6 }, /obj/item/lightstick/red/variant/planted, -/turf/open/floor/mech_bay_recharge_floor, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "rmW" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/taipei/atrium) @@ -19791,9 +19761,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/prison, /area/taipei/cargo) "rxA" = ( @@ -19870,16 +19838,17 @@ /turf/open/floor/prison, /area/taipei/hangar) "rAv" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "vehicle_elevator_railing_aux" +/obj/structure/barricade/handrail/strata{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; + icon_state = "lattice8"; pixel_x = 16; - pixel_y = -8 + pixel_y = 31 }, -/turf/open/floor/prison, +/turf/open/floor/plating/plating_catwalk/prison, /area/taipei/cargo) "rBh" = ( /obj/effect/decal/cleanable/dirt, @@ -20100,8 +20069,8 @@ pixel_x = 16; pixel_y = -15 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "rIm" = ( /obj/structure/platform{ layer = 2.7; @@ -20116,8 +20085,8 @@ dir = 4; pixel_x = -1 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "rIo" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -20294,7 +20263,7 @@ "rOz" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "rOH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/lattice_prop{ @@ -20316,6 +20285,10 @@ }, /turf/open/floor/prison, /area/taipei/maints/north) +"rQg" = ( +/obj/item/holder/mouse/gray, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor/chamber) "rQp" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -20566,7 +20539,7 @@ pixel_y = -4 }, /obj/structure/machinery/elevator_strut/bottom, -/turf/open/gm/empty, +/turf/open/void, /area/taipei/maints/south) "rZo" = ( /obj/effect/decal/grass_overlay/grass1/inner, @@ -20668,8 +20641,8 @@ pixel_y = 6; dir = 3 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "seC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cargo_container/grant/rightmid, @@ -21141,8 +21114,8 @@ pixel_y = -15 }, /obj/item/lightstick/red/spoke/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "sBy" = ( /obj/structure/platform{ dir = 1 @@ -21494,8 +21467,8 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "sQC" = ( /obj/structure/stairs/perspective{ dir = 4 @@ -21697,6 +21670,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) +"sYq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor/chamber) "sYW" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -22281,6 +22259,7 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/prison, /area/taipei/cargo) "tuM" = ( @@ -22400,10 +22379,6 @@ }, /turf/open/floor/prison/bright_clean2, /area/taipei/hangar/cargoshuttle) -"tyZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/almayer, -/area/space) "tzy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -22466,6 +22441,10 @@ /obj/structure/machinery/light/double, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) +"tCd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor/chamber) "tDQ" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -22477,8 +22456,8 @@ pixel_y = 6; dir = 3 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "tEq" = ( /obj/structure/machinery/washing_machine{ pixel_x = -4; @@ -22834,8 +22813,8 @@ "tTn" = ( /obj/structure/prop/power_transformer, /obj/structure/lattice, -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "tTE" = ( /obj/structure/barricade/handrail/strata{ pixel_y = -4 @@ -22865,8 +22844,8 @@ /obj/structure/prop/invuln/lattice_prop, /obj/structure/prop/power_transformer, /obj/structure/prop/structure_lattice, -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "tWa" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -23031,6 +23010,12 @@ }, /turf/open/floor/plating/asteroidfloor/north, /area/taipei/hangar) +"uiE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/prison, +/area/taipei/club) "uiH" = ( /obj/structure/barricade/handrail/strata{ dir = 4; @@ -23202,7 +23187,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "unz" = ( /obj/item/lightstick/red/spoke/planted, /obj/effect/decal/warning_stripes{ @@ -23698,8 +23683,8 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "uKQ" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -23954,7 +23939,7 @@ /obj/structure/platform_decoration, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "vcF" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -24399,8 +24384,8 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "vxs" = ( /turf/closed/shuttle/ert{ icon_state = "twe3" @@ -24589,6 +24574,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/cargo) "vFc" = ( @@ -24655,7 +24641,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "vIE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet5_1/west, @@ -26100,8 +26086,8 @@ pixel_x = -16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "wYi" = ( /obj/structure/machinery/disposal{ density = 0; @@ -27018,7 +27004,7 @@ /obj/effect/decal/strata_decals/grime/grime2, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "xJr" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -27271,7 +27257,7 @@ light_power = .50 }, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "xUP" = ( /obj/structure/machinery/computer/shuttle/ert/broken, /obj/structure/blocker/invisible_wall, @@ -27572,6 +27558,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/cargo) "yja" = ( @@ -27607,6 +27594,11 @@ pixel_y = 1 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, /turf/open/floor/prison, /area/taipei/cargo) "yjZ" = ( @@ -38008,12 +38000,12 @@ iQr iQr iQr iQr -ltx -ltx -ltx +yhR +yhR +yhR nxk -ltx -ltx +yhR +yhR iQr iQr iQr @@ -38210,217 +38202,217 @@ tkR tkR tkR tkR -tkR +yhR ffX -wJp -wJp -wJp +tCd +tCd +tCd bcJ +yhR +yhR +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +lGZ +nTf +moD +aCs +sGD +ekq +ekq +uHy +tmq +oEd +bej +bej +oPv +wgM +xVn +dlv +iQN +iQN +eNU +aRc +ogl +jEW +jEW +jEW +jEW +jEW +jEW +oAr +jEW +oAr +euI +vJq +dlv +iQN +iQN +eNU +aRc +lxO +dGa +bej +bej +oEd +aCs +erc +qzs +qzs +uHy +tmq +rZm +dTd +bzQ +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +pjr +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +"} +(54,1,1) = {" +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +apD +tPK +iQr +iQr +iQr +iQr +tkR +tkR tkR tkR -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -lGZ -nTf -moD -aCs -sGD -ekq -ekq -uHy -tmq -oEd -bej -bej -oPv -wgM -xVn -dlv -iQN -iQN -eNU -aRc -ogl -jEW -jEW -jEW -jEW -jEW -jEW -oAr -jEW -oAr -euI -vJq -dlv -iQN -iQN -eNU -aRc -lxO -dGa -bej -bej -oEd -aCs -erc -qzs -qzs -uHy -tmq -rZm -dTd -bzQ -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -"} -(54,1,1) = {" -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -apD -tPK -iQr -iQr -iQr -iQr -tkR -tkR -tkR -tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -bkG -acu -hVi -acu -bfm -xUk -wJp -tkR -tkR +gua +gua +gua +gua +gua +gua +gua +bkG +acu +hVi +acu +lqR +xUk +tCd +yhR +yhR iQr iQr iQr @@ -38604,26 +38596,26 @@ iQr tkR tkR tkR -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua sPB lxH lxH jem hVi hVi -wJp -bfm -tkR -tkR +tCd +lqR +yhR +yhR iQr iQr iQr @@ -38804,29 +38796,29 @@ iQr iQr tkR tkR -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua lfN wXY acu -vzG -wJp -tkR -tkR +sYq +tCd +yhR +yhR iQr iQr iQr @@ -39005,30 +38997,30 @@ iQr iQr tkR tkR -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua pMK jem hVi -wJp -wJp -tkR +tCd +tCd +yhR iQr iQr iQr @@ -39206,32 +39198,32 @@ iQr iQr iQr tkR -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua egf mMG sPB jem -wJp +tCd kHO -tkR -tkR +yhR +yhR iQr iQr iQr @@ -39408,32 +39400,32 @@ iQr iQr tkR tkR -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua qZd -pOK +gua bkG acu -vzG +sYq bcJ -tkR +yhR iQr iQr iQr @@ -39609,33 +39601,33 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua bGR dEt feF -pOK -pOK +gua +gua rgI rHV lLn luj jem -wJp -wJp -tkR +tCd +tCd +yhR yhR yhR yhR @@ -39811,32 +39803,32 @@ iQr iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua pMJ -pOK +gua pMJ -pOK -pOK +gua +gua mfT dem -pOK -pOK +gua +gua bkG nUg -vzG +sYq yhR yhR sLp @@ -40013,29 +40005,29 @@ iQr iQr tkR tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua hfD -pOK -pOK +gua +gua bkG vIr vcm @@ -40214,30 +40206,30 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua egf mMG -pOK -pOK +gua +gua sPB jem itw @@ -40416,34 +40408,34 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua clj dCp -nLW -nLW -hRn +gua +gua +dwY mrU -pOK -pOK -pOK -pOK +gua +gua +gua +gua mMG -pOK -pOK -pOK +gua +gua +gua bkG cGF -cHI +pxr bwN ceo ehP @@ -40618,22 +40610,22 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua clj clj -cjq -qXz -nLW +gua +ans +gua dwY qan eZv @@ -40645,7 +40637,7 @@ lLn lLn bkG itw -cHI +pxr mlF frf ehP @@ -40820,17 +40812,17 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua clj dCp gua @@ -40840,14 +40832,14 @@ ans pbt tTn tVc -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua bkG itw -cHI +pxr kgq njf ehP @@ -41022,17 +41014,17 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua dXb dXb gua @@ -41049,7 +41041,7 @@ tDQ tDQ sen itw -cHI +pxr kgq njf ehP @@ -41224,34 +41216,34 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua dXb lXo -cjq -qXz -nLW +gua +ans +gua rms fbc nkR -pOK +gua egf hfD kqo -pOK -pOK +gua +gua bkG cGF -cHI +pxr equ seS ehP @@ -41426,34 +41418,34 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua dXb dXb -nLW -nLW -hRn +gua +gua +dwY nbW -pOK -pOK -pOK -pOK +gua +gua +gua +gua mMG -pOK -pOK -pOK +gua +gua +gua bkG cGF -cHI +pxr rTe ygF ehP @@ -41628,34 +41620,34 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua egf mMG -pOK -pOK +gua +gua awf rIm itw -cHI +pxr vDb nrm eys @@ -41831,29 +41823,29 @@ iQr iQr tkR tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua qZd -pOK -pOK +gua +gua bkG xJn lWe @@ -42033,32 +42025,32 @@ iQr iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua bGR dEt feF -pOK -pOK +gua +gua rgI rHV lLn lLn bkG dJx -vzG +sYq yhR yhR lZU @@ -42168,18 +42160,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -42235,33 +42227,33 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua pMJ -pOK +gua pMJ -pOK -pOK +gua +gua mfT dem -pOK +gua awf rIm -wJp -vzG -tkR +tCd +sYq +yhR yhR sXD sGs @@ -42370,18 +42362,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -42438,30 +42430,30 @@ iQr iQr tkR tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua hfD -pOK +gua bkG rOz -wJp +tCd opt yhR cqH @@ -42572,18 +42564,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -42640,31 +42632,31 @@ iQr iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua egf mMG awf rIm -wJp +tCd pQW -tkR +yhR yhR tkR kYI @@ -42774,18 +42766,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -42843,30 +42835,30 @@ iQr iQr tkR tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua kzK rIm -wJp -wJp -wJp -tkR +tCd +tCd +tCd +yhR iQr yhR yhR @@ -42976,18 +42968,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -43046,29 +43038,29 @@ iQr iQr tkR tkR -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua awf jvB uJs -bfm -bfm -wJp -tkR -tkR +lqR +lqR +tCd +yhR +yhR iQr iQr iQr @@ -43178,18 +43170,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -43250,26 +43242,26 @@ iQr tkR tkR tkR -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua awf fRl fRl -rIm -bfm -wJp -vzG -wJp -tkR -tkR +eWE +lqR +tCd +sYq +tCd +yhR +yhR iQr iQr iQr @@ -43380,18 +43372,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -43455,22 +43447,22 @@ tkR tkR tkR tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua bkG -bfm -bfm -bfm -wJp +lqR +rQg +lqR +tCd dJX -wJp -tkR -tkR +tCd +yhR +yhR iQr iQr iQr @@ -43582,18 +43574,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -43664,14 +43656,14 @@ tkR tkR tkR tkR -tkR +yhR unn -vzG -vzG -wJp -tkR -tkR -tkR +sYq +sYq +tCd +yhR +yhR +yhR iQr iQr iQr @@ -43784,18 +43776,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -43866,12 +43858,12 @@ iQr iQr iQr iQr -tkR -tkR -tkR -eWE -tkR -tkR +yhR +yhR +yhR +nxk +yhR +yhR iQr iQr iQr @@ -43986,10 +43978,6 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY tuY tuY @@ -43997,7 +43985,11 @@ tuY tuY tuY tuY -pjr +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -44188,18 +44180,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -44390,18 +44382,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -44592,18 +44584,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -44794,18 +44786,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -44996,10 +44988,6 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY tuY tuY @@ -45007,7 +44995,11 @@ tuY tuY tuY tuY -pjr +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -45198,18 +45190,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr tuY -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -45400,18 +45392,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr tuY -pjr -pjr tuY -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -45602,18 +45594,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr tuY tuY tuY -pjr -pjr tuY -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -45804,18 +45796,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr tuY tuY tuY -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -46006,18 +45998,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -46208,18 +46200,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr tuY tuY tuY tuY tuY -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -46410,18 +46402,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr tuY -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -46612,18 +46604,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr tuY -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -46814,18 +46806,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr tuY -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -47016,18 +47008,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -47218,18 +47210,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -47420,18 +47412,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -47622,18 +47614,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -48545,7 +48537,7 @@ eYD qDd oMS uUW -aIC +byz aIC foW tYd @@ -48747,7 +48739,7 @@ kCg klI wAI moK -jEX +klC ltG ouF iDf @@ -48962,7 +48954,7 @@ vBs wls eDc aTL -wwN +uiE bVs iQr iQr @@ -50187,7 +50179,7 @@ pWD fuE iQr iQr -ltx +brZ brZ oAr eOl @@ -50203,7 +50195,7 @@ eOl eOl jEW bQM -ltx +brZ iQr iQr iQr @@ -50389,7 +50381,7 @@ fuE iQr iQr iQr -ltx +brZ brZ pPz oAr @@ -50405,7 +50397,7 @@ nZZ uTb pPz brZ -ltx +brZ iQr iQr iQr @@ -50591,7 +50583,7 @@ iQr iQr iQr iQr -ltx +brZ brZ oAr jEW @@ -50607,7 +50599,7 @@ eOl jEW jEW brZ -ltx +brZ iQr iQr iQr @@ -50793,7 +50785,7 @@ iQr iQr iQr iQr -ltx +brZ pPz oAr eOl @@ -50809,7 +50801,7 @@ eOl eOl jEW pPz -ltx +brZ iQr iQr iQr @@ -50995,7 +50987,7 @@ iQr iQr iQr iQr -ltx +brZ pPz jEW nZZ @@ -51011,7 +51003,7 @@ jEW eOl eOl pPz -ltx +brZ iQr iQr iQr @@ -51197,7 +51189,7 @@ iQr iQr iQr iQr -ltx +brZ eCz oAr jEW @@ -51213,7 +51205,7 @@ jEW eOl jEW eCz -ltx +brZ iQr iQr iQr @@ -51399,7 +51391,7 @@ iQr iQr iQr iQr -ltx +brZ brZ bQM amQ @@ -51415,7 +51407,7 @@ jEW iXB bQM urd -ltx +brZ iQr iQr iQr @@ -51601,7 +51593,7 @@ iQr iQr iQr iQr -ltx +brZ pPz jEW jEW @@ -51617,7 +51609,7 @@ jEW jEW jEW pPz -ltx +brZ iQr iQr iQr @@ -51803,7 +51795,7 @@ iQr iQr iQr iQr -ltx +brZ pPz ifL ihA @@ -51819,7 +51811,7 @@ ihA rhs dij pPz -ltx +brZ iQr iQr iQr @@ -51984,12 +51976,12 @@ joE eAs pfy hnP -kDQ +mtx kDG mtx kDG jhe -kDG +qXz wmR kDG wmR @@ -52005,7 +51997,7 @@ iQr iQr iQr iQr -ltx +brZ gjh yfb oNt @@ -52021,7 +52013,7 @@ dtZ oNt bVt pPz -ltx +brZ iQr iQr iQr @@ -52185,17 +52177,17 @@ iQr joE olB wsx -ovS -eAu -eAu -eAu +pOK +pOK +pOK +pOK jal aEq -caH -caH -caH -caH -pzh +pOK +pOK +pOK +pOK +jal iOi nCX joE @@ -52207,7 +52199,7 @@ iQr iQr iQr iQr -ltx +brZ gjh oNt dtZ @@ -52223,7 +52215,7 @@ oNt oNt jEW eCz -ltx +brZ iQr iQr iQr @@ -52387,17 +52379,17 @@ iQr joE ruS mMx -ovS -eAu -eAu -eAu -eAu +pOK +pOK +pOK +pOK +pOK aEq -caH -caH -caH -caH -gAi +pOK +pOK +pOK +pOK +pOK iOi ruS joE @@ -52409,7 +52401,7 @@ iQr iQr iQr iQr -ltx +brZ gjh dtZ qvZ @@ -52425,7 +52417,7 @@ oNt qvZ oAr pPz -ltx +brZ iQr iQr iQr @@ -52589,17 +52581,17 @@ iQr joE ruS mMx -ovS -eAu -eAu -eAu -eAu +pOK +pOK +pOK +pOK +pOK aEq -caH -caH -caH -caH -gAi +pOK +pOK +pOK +pOK +pOK aYq oyv joE @@ -52611,7 +52603,7 @@ iQr iQr iQr iQr -tyZ +bQM eCz lQQ lQQ @@ -52627,7 +52619,7 @@ eXw eXw jEU pPz -ltx +brZ iQr iQr iQr @@ -52791,17 +52783,17 @@ iQr joE ruS mMx -ovS -eAu -eAu -eAu -eAu +pOK +pOK +pOK +pOK +pOK aEq -caH -caH -caH -caH -gAi +pOK +pOK +pOK +pOK +pOK tUg qrl joE @@ -52813,7 +52805,7 @@ iQr iQr iQr iQr -tyZ +bQM eCz xEO xEO @@ -52829,7 +52821,7 @@ xEO awh nsc pPz -ltx +brZ iQr iQr iQr @@ -52993,17 +52985,17 @@ iQr joE ruS mMx -ovS -eAu -eAu -eAu -eAu +pOK +pOK +pOK +pOK +pOK aEq -caH -caH -caH -caH -gAi +pOK +pOK +pOK +pOK +pOK tUg oyv joE @@ -53015,7 +53007,7 @@ iQr iQr iQr iQr -ltx +brZ eCz dtZ dtZ @@ -53031,7 +53023,7 @@ dtZ oNt jEW pPz -ltx +brZ iQr iQr iQr @@ -53195,7 +53187,7 @@ joE ajs wxB hZU -rAv +nkd nkd nkd nkd @@ -53217,7 +53209,7 @@ iQr iQr iQr iQr -ltx +brZ pPz oNt oNt @@ -53233,7 +53225,7 @@ qvZ oNt eOl pPz -ltx +brZ iQr iQr iQr @@ -53397,13 +53389,13 @@ joE wIz uqp jOB -avR isO isO isO -jOB isO jOB +kDQ +jOB isO isO isO @@ -53419,7 +53411,7 @@ iQr iQr iQr iQr -ltx +brZ eCz pEQ ihA @@ -53435,7 +53427,7 @@ rhs ihA adM pPz -ltx +brZ iQr iQr iQr @@ -53600,12 +53592,12 @@ isO dVp mow dXn -obk +yiF yiF yiF vEU fVD -vEU +rAv vEU vEU yiF @@ -53621,7 +53613,7 @@ iQr iQr iQr iQr -tyZ +bQM pPz jEW oAr @@ -53637,7 +53629,7 @@ jEW nZZ jEW eCz -ltx +brZ iQr iQr iQr @@ -53823,7 +53815,7 @@ iQr iQr iQr iQr -tyZ +bQM bQM urd tGI @@ -53839,7 +53831,7 @@ wYs wwD urd brZ -ltx +brZ iQr iQr iQr @@ -54025,7 +54017,7 @@ iQr iQr iQr iQr -tyZ +bQM eCz qMW ulA @@ -54041,7 +54033,7 @@ oTa oYd alc pPz -ltx +brZ iQr iQr iQr @@ -54227,7 +54219,7 @@ iQr iQr iQr iQr -ltx +brZ pPz jEW eOl @@ -54243,7 +54235,7 @@ aLB jEW jEW eCz -ltx +brZ iQr iQr iQr @@ -54411,9 +54403,9 @@ wfu pdA fmQ pdA -fmQ +ovS fer -fmQ +ovS pCX fmQ fmQ @@ -54429,7 +54421,7 @@ iQr iQr iQr iQr -ltx +brZ pPz eOl jEW @@ -54445,7 +54437,7 @@ eOl jEW jEW eCz -ltx +brZ iQr iQr iQr @@ -54631,7 +54623,7 @@ iQr iQr iQr iQr -ltx +brZ pPz jEW oAr @@ -54647,7 +54639,7 @@ jEW eOl oAr pPz -ltx +brZ iQr iQr iQr From 965cbbfe2c76ddba1ce944ec16ed3916258f726f Mon Sep 17 00:00:00 2001 From: Lagomorph121 Date: Fri, 3 Jan 2025 13:29:03 -0700 Subject: [PATCH 04/15] Guh More Fixes Its Even More Fixes --- map_config/maps.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/map_config/maps.txt b/map_config/maps.txt index 4a2b4996881..c76a9531859 100644 --- a/map_config/maps.txt +++ b/map_config/maps.txt @@ -74,5 +74,5 @@ endmap map whiskey_outpost_v2 endmap -map taipei_station +map Taipei_Station endmap From 7f774fa3837ee28c069ba02230750e114559da84 Mon Sep 17 00:00:00 2001 From: Lagomorph121 Date: Fri, 3 Jan 2025 14:02:06 -0700 Subject: [PATCH 05/15] Merr and Andro wont stop hitting me idk fuck all --- map_config/maps.txt | 2 +- maps/map_files/Taipei_Station/Taipei_Station.dmm | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/map_config/maps.txt b/map_config/maps.txt index c76a9531859..4a2b4996881 100644 --- a/map_config/maps.txt +++ b/map_config/maps.txt @@ -74,5 +74,5 @@ endmap map whiskey_outpost_v2 endmap -map Taipei_Station +map taipei_station endmap diff --git a/maps/map_files/Taipei_Station/Taipei_Station.dmm b/maps/map_files/Taipei_Station/Taipei_Station.dmm index 1737aa17b03..22be0062fef 100644 --- a/maps/map_files/Taipei_Station/Taipei_Station.dmm +++ b/maps/map_files/Taipei_Station/Taipei_Station.dmm @@ -20285,10 +20285,6 @@ }, /turf/open/floor/prison, /area/taipei/maints/north) -"rQg" = ( -/obj/item/holder/mouse/gray, -/turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor/chamber) "rQp" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -43456,7 +43452,7 @@ gua gua bkG lqR -rQg +lqR lqR tCd dJX From 165ba67f209e4976c2d225dafcb9b0cc29c18f01 Mon Sep 17 00:00:00 2001 From: Lagomorph121 Date: Fri, 3 Jan 2025 14:07:19 -0700 Subject: [PATCH 06/15] for pookie (andro) I hate mapping --- code/modules/cm_marines/equipment/maps.dm | 1 + maps/Taipei_Station.json | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/cm_marines/equipment/maps.dm b/code/modules/cm_marines/equipment/maps.dm index a0e6df2eba8..e72fb6d0db4 100644 --- a/code/modules/cm_marines/equipment/maps.dm +++ b/code/modules/cm_marines/equipment/maps.dm @@ -174,6 +174,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_TAIPEI_STATION = new /obj/item/map/taipei_map(), ) //used by marine equipment machines to spawn the correct map. diff --git a/maps/Taipei_Station.json b/maps/Taipei_Station.json index e79cc805302..88a3c1c48d7 100644 --- a/maps/Taipei_Station.json +++ b/maps/Taipei_Station.json @@ -1,8 +1,8 @@ { "map_name": "Taipei Way-Station", "short_name": "Taipei Station", - "map_path": "map_files/Taipei_Station", - "map_file": "Taipei_Station.dmm", + "map_path": "map_files/taipei_station", + "map_file": "taipei_station.dmm", "map_item_type": "/obj/item/map/taipei_map", "traits": [{ "ground": true}], "camouflage": "jungle", From 46ec290a2e0278a3eaecc1aae1dbbf374e29c942 Mon Sep 17 00:00:00 2001 From: Lagomorph121 Date: Fri, 3 Jan 2025 14:34:31 -0700 Subject: [PATCH 07/15] for pookie (andro) I hate mapping --- code/game/area/Taipei.dm | 35 +- code/modules/cm_marines/equipment/maps.dm | 1 + maps/Taipei_Station.json | 4 +- .../Taipei_Station/Taipei_Station.dmm | 3485 +++++++++-------- 4 files changed, 1815 insertions(+), 1710 deletions(-) diff --git a/code/game/area/Taipei.dm b/code/game/area/Taipei.dm index 124e22f118b..c37ae3a38be 100644 --- a/code/game/area/Taipei.dm +++ b/code/game/area/Taipei.dm @@ -4,7 +4,7 @@ /area/taipei ceiling = CEILING_DEEP_UNDERGROUND_METAL ceiling_muffle = FALSE - powernet_name = "Taipei" + powernet_name = "ground" can_build_special = TRUE icon_state = "lv-626" ambience_exterior = AMBIENCE_SHIP @@ -13,11 +13,11 @@ /area/taipei/underground always_unpowered = 1 - name = "asteroid" + name = "\improper Asteroid" icon_state = "caves" -/area/taipei/atrium/club - name = "The Velvet Tassle" +/area/taipei/club + name = "\improper Velvet Tassle" icon_state = "blue" sound_environment = SOUND_ENVIRONMENT_ROOM @@ -63,7 +63,7 @@ icon_state = "yellow" sound_environment = SOUND_ENVIRONMENT_HANGAR soundscape_playlist = SCAPE_PL_HANGAR - soundscape_interval = 120 + soundscape_interval = 30 /area/taipei/hangar/landingzone name = "\improper Landing Zone One" @@ -71,8 +71,10 @@ icon_state = "lv-626" /area/taipei/telecomms - name = "Telecommunications" + name = "\improper Telecommunications" icon_state = "purple" + soundscape_playlist = SCAPE_PL_AICORE + soundscape_interval = 5 sound_environment = SOUND_ENVIRONMENT_GENERIC /area/taipei/atrium/laundry @@ -81,11 +83,11 @@ sound_environment = SOUND_ENVIRONMENT_ROOM /area/taipei/atrium/store - name = "Conveniance-Mart" + name = "\improper Conveniance-Mart" icon_state = "req" sound_environment = SOUND_ENVIRONMENT_ROOM -/area/taipei/atrium/theatre +/area/taipei/theatre name = "\improper Movie Star" icon_state = "almayer" sound_environment = SOUND_ENVIRONMENT_AUDITORIUM @@ -96,24 +98,29 @@ sound_environment = SOUND_ENVIRONMENT_LIVINGROOM /area/taipei/reactor - name = "Reactor Control Room" + name = "\improper Reactor Control Room" icon_state = "upperengineering" sound_environment = SOUND_ENVIRONMENT_GENERIC soundscape_playlist = SCAPE_PL_ENG - soundscape_interval = 25 + soundscape_interval = 15 + +/area/taipei/reactor/chamber + name = "\improper Reactor Chamber" + icon_state = "green" + sound_environment = SOUND_ENVIRONMENT_MOUNTAINS /area/taipei/atrium/restaurant - name = "Sal's Noodles" + name = "\improper Sal's Noodles" icon_state = "pink" sound_environment = SOUND_ENVIRONMENT_ROOM /area/taipei/atrium/bookstore - name = "Lots'o'Books" + name = "\improper Lots'o'Books" icon_state = "yellow" sound_environment = SOUND_ENVIRONMENT_LIVINGROOM /area/taipei/hangar/cargoshuttle - name = "Cargo Skiff" + name = "\improper Cargo Skiff" icon_state = "green" sound_environment = SOUND_ENVIRONMENT_HALLWAY @@ -128,6 +135,6 @@ name = "\improper Departures Elevator" /area/taipei/atrium/hotel - name = "Short Stay Room and Board" + name = "\improper Short Stay Room and Board" icon_state = "green" sound_environment = SOUND_ENVIRONMENT_CARPETED_HALLWAY diff --git a/code/modules/cm_marines/equipment/maps.dm b/code/modules/cm_marines/equipment/maps.dm index a0e6df2eba8..e72fb6d0db4 100644 --- a/code/modules/cm_marines/equipment/maps.dm +++ b/code/modules/cm_marines/equipment/maps.dm @@ -174,6 +174,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_TAIPEI_STATION = new /obj/item/map/taipei_map(), ) //used by marine equipment machines to spawn the correct map. diff --git a/maps/Taipei_Station.json b/maps/Taipei_Station.json index e79cc805302..88a3c1c48d7 100644 --- a/maps/Taipei_Station.json +++ b/maps/Taipei_Station.json @@ -1,8 +1,8 @@ { "map_name": "Taipei Way-Station", "short_name": "Taipei Station", - "map_path": "map_files/Taipei_Station", - "map_file": "Taipei_Station.dmm", + "map_path": "map_files/taipei_station", + "map_file": "taipei_station.dmm", "map_item_type": "/obj/item/map/taipei_map", "traits": [{ "ground": true}], "camouflage": "jungle", diff --git a/maps/map_files/Taipei_Station/Taipei_Station.dmm b/maps/map_files/Taipei_Station/Taipei_Station.dmm index ed8ba311104..957071c5ff7 100644 --- a/maps/map_files/Taipei_Station/Taipei_Station.dmm +++ b/maps/map_files/Taipei_Station/Taipei_Station.dmm @@ -21,14 +21,14 @@ pixel_y = -2 }, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "acu" = ( /obj/structure/barricade/handrail/strata{ dir = 4; pixel_x = -1 }, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "acM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -69,7 +69,7 @@ dir = 1 }, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "aex" = ( /obj/structure/sink/kitchen{ dir = 4; @@ -77,7 +77,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "aeB" = ( /obj/structure/closet/crate/radiation, /obj/structure/largecrate/random/case{ @@ -203,7 +203,7 @@ pixel_y = 14 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "ajD" = ( /obj/structure/bed/sofa/vert/white/top, /obj/effect/decal/cleanable/dirt, @@ -253,7 +253,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "alc" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -279,7 +279,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue, -/area/taipei/atrium/club) +/area/taipei/club) "amB" = ( /obj/structure/platform, /obj/structure/barricade/handrail/strata, @@ -300,8 +300,8 @@ /area/taipei/atrium) "ans" = ( /obj/structure/prop/turbine, -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "anz" = ( /obj/effect/decal/cleanable/cobweb2/dynamic, /obj/effect/decal/cleanable/dirt, @@ -327,7 +327,7 @@ "aol" = ( /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.50 }, /obj/structure/machinery/camera{ dir = 8 @@ -380,10 +380,9 @@ "ass" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/light{ - light_color = #00008B; - light_power = .5 + light_color = "#38a9fd" }, -/area/taipei/atrium/club) +/area/taipei/club) "atd" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -460,23 +459,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) -"avR" = ( -/obj/structure/platform{ - layer = 2.7; - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/taipei/cargo) "awf" = ( /obj/structure/platform_decoration, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "awh" = ( /obj/structure/barricade/handrail/strata{ pixel_y = -4 @@ -554,7 +540,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "azb" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -642,7 +628,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "aDG" = ( /turf/open/floor/kutjevo/colors/red/edge{ dir = 1 @@ -657,6 +643,11 @@ id = "vehicle_elevator_railing" }, /obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, /turf/open/floor/prison, /area/taipei/cargo) "aFw" = ( @@ -798,7 +789,7 @@ "aLh" = ( /obj/structure/window/reinforced, /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "aLy" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, @@ -872,6 +863,7 @@ /area/taipei/maints/south) "aOx" = ( /obj/item/trash/hotdog, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/asteroidfloor/north, /area/taipei/hangar) "aON" = ( @@ -970,7 +962,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "aSY" = ( /turf/closed/shuttle/elevator/gears, /area/taipei/elevator/arrivals) @@ -994,7 +986,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "aTD" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" @@ -1007,14 +999,14 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "aTY" = ( /obj/structure/platform/kutjevo{ dir = 1 }, /obj/structure/bed/sofa/south, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "aUj" = ( /obj/structure/barricade/handrail/kutjevo{ dir = 4 @@ -1032,7 +1024,7 @@ /obj/structure/window/reinforced, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "aWs" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -1082,13 +1074,9 @@ /obj/structure/barricade/handrail/strata{ pixel_y = -4 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/prison, /area/taipei/cargo) "aYp" = ( @@ -1207,16 +1195,16 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "bbQ" = ( /obj/structure/barricade/handrail/strata{ pixel_y = -4 }, -/turf/open/gm/empty, +/turf/open/void, /area/taipei/maints/south) "bcJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/closed/wall/almayer, +/turf/closed/wall/almayer/outer, /area/taipei/reactor) "bdi" = ( /obj/structure/platform_decoration/kutjevo{ @@ -1267,7 +1255,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "beN" = ( /turf/open/floor/kutjevo/tan/alt_edge, /area/taipei/atrium) @@ -1337,8 +1325,8 @@ "bkG" = ( /obj/structure/platform, /obj/structure/barricade/handrail/strata, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "bkU" = ( /obj/structure/surface/rack, /obj/structure/surface/rack{ @@ -1533,7 +1521,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "bqq" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -1566,7 +1554,7 @@ /area/taipei/maints/south) "brs" = ( /turf/open/blank, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "brv" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 @@ -1682,6 +1670,9 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/biodome, /area/taipei/atrium/hotel) +"bwE" = ( +/turf/closed/mineral, +/area/taipei/theatre) "bwN" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -1723,6 +1714,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/tan/grey_edge/west, /area/taipei/atrium/offices) +"byz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/prison, +/area/taipei/maints/north) "byS" = ( /obj/structure/bed{ pixel_x = 0; @@ -1811,7 +1807,7 @@ /obj/structure/pipes/vents, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet7_3/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "bBD" = ( /obj/structure/machinery/light/blue{ dir = 8 @@ -1984,8 +1980,8 @@ "bGR" = ( /obj/structure/machinery/elevator_strut/bottom, /obj/item/lightstick/red/variant/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "bGX" = ( /obj/structure/barricade/handrail/strata{ pixel_y = -4 @@ -2005,7 +2001,7 @@ "bHx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/chapel_carpet/doubleside, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "bHG" = ( /obj/structure/platform{ dir = 8 @@ -2051,7 +2047,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "bKY" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/drinks/cans/aspen, @@ -2064,7 +2060,7 @@ light_power = .75 }, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "bLA" = ( /obj/structure/platform/shiva/catwalk{ dir = 8 @@ -2079,7 +2075,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "bMk" = ( /obj/structure/platform{ dir = 8 @@ -2155,9 +2151,7 @@ /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) "bPx" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2 - }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium/bookstore) "bQM" = ( @@ -2205,7 +2199,7 @@ /area/taipei/hangar) "bVs" = ( /turf/closed/wall/almayer, -/area/taipei/atrium/club) +/area/taipei/club) "bVt" = ( /obj/structure/machinery/camera/autoname{ dir = 4 @@ -2309,8 +2303,8 @@ pixel_y = 6; dir = 3 }, -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "cac" = ( /obj/structure/sink{ dir = 1; @@ -2323,9 +2317,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/colors, /area/taipei/cmb) -"caH" = ( -/turf/open/floor/asteroid, -/area/taipei/cargo) "caU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/overhead_pipe{ @@ -2500,7 +2491,7 @@ }, /obj/structure/pipes/vents/pump, /turf/open/floor/prison/blue/north, -/area/taipei/atrium/club) +/area/taipei/club) "cgV" = ( /obj/structure/machinery/computer/shuttle/elevator_controller, /turf/closed/wall/biodome, @@ -2509,7 +2500,7 @@ /obj/structure/surface/table/reinforced/almayer_B, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "chl" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -2600,10 +2591,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) -"cjq" = ( -/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, -/area/taipei/reactor) +/area/taipei/theatre) "cjC" = ( /obj/structure/machinery/light/blue{ dir = 8 @@ -2660,8 +2648,8 @@ /area/taipei/maints/south) "clj" = ( /obj/structure/prop/invuln/overhead_pipe, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "clS" = ( /obj/structure/machinery/light, /turf/open/floor/prison, @@ -2806,7 +2794,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "csy" = ( /obj/structure/stairs/perspective, /obj/effect/decal/cleanable/dirt, @@ -2991,7 +2979,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "cyC" = ( /obj/structure/bed/chair/comfy{ dir = 1; @@ -3172,7 +3160,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "cGq" = ( /obj/structure/prop/turbine, /obj/structure/prop/turbine_extras/left, @@ -3190,14 +3178,14 @@ /obj/item/lightstick/red/variant/planted{ light_range = 5 }, -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "cGF" = ( /obj/structure/platform, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "cHC" = ( /obj/item/stool{ icon_state = "stool_alt" @@ -3206,13 +3194,6 @@ dir = 4 }, /area/taipei/atrium/restaurant) -"cHI" = ( -/obj/structure/window/framed/almayer, -/obj/structure/blocker/forcefield/human{ - icon = 'icons/' - }, -/turf/open/floor/prison, -/area/taipei/reactor) "cHV" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -3383,6 +3364,10 @@ dir = 4 }, /area/taipei/atrium/restaurant) +"cPE" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) "cPG" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname, /obj/effect/decal/cleanable/dirt, @@ -3466,7 +3451,7 @@ dir = 1 }, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "cSO" = ( /obj/structure/cargo_container/kelland/left{ pixel_x = 12; @@ -3497,15 +3482,15 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet11_12/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "cUh" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-4-8" +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/plating/plating_catwalk/prison, -/area/taipei/maints/south) +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) "cUw" = ( /obj/structure/surface/table, /obj/item/toy/desk/fan{ @@ -3530,7 +3515,7 @@ pixel_y = 3 }, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "cVj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cargo_container/grant/right, @@ -3603,7 +3588,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "dap" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -3720,8 +3705,8 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "deH" = ( /obj/item/storage/secure/safe{ pixel_y = 29 @@ -3731,7 +3716,7 @@ }, /obj/item/storage/briefcase, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "deX" = ( /obj/structure/cargo_container/hd/mid/alt, /turf/open/floor/plating/asteroidfloor/north, @@ -3772,6 +3757,7 @@ /obj/structure/platform_decoration, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/asteroidfloor/north, /area/taipei/hangar) "dij" = ( @@ -3936,7 +3922,7 @@ pixel_x = 4 }, /turf/open/floor/prison/blue, -/area/taipei/atrium/club) +/area/taipei/club) "doY" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -3991,7 +3977,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "dtY" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -4021,7 +4007,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "duV" = ( /obj/structure/surface/table, /obj/item/trash/ceramic_plate, @@ -4089,7 +4075,7 @@ /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet13_5/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "dvO" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -4152,19 +4138,14 @@ "dwY" = ( /obj/structure/prop/turbine, /obj/item/lightstick/red/variant/planted, -/turf/open/floor/mech_bay_recharge_floor, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "dxb" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_y = 1; pixel_x = 1 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/taipei/cargo) @@ -4188,6 +4169,17 @@ }, /turf/open/floor/kutjevo/tan/alt_edge, /area/taipei/atrium) +"dxT" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/south) "dyr" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -4224,7 +4216,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/north, -/area/taipei/atrium/club) +/area/taipei/club) "dBp" = ( /obj/structure/machinery/body_scanconsole{ dir = 8 @@ -4250,8 +4242,8 @@ "dCp" = ( /obj/structure/machinery/elevator_strut/bottom, /obj/structure/prop/invuln/overhead_pipe, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "dCF" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -4295,8 +4287,8 @@ pixel_x = 16; pixel_y = 0 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "dET" = ( /obj/item/lightstick/red/spoke/planted, /obj/effect/decal/warning_stripes{ @@ -4316,14 +4308,14 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet7_3/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "dGa" = ( /turf/open/floor/kutjevo/tan/alt_edge/northeast, /area/taipei/atrium) "dGp" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/biodome, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "dGJ" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, @@ -4344,14 +4336,14 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkred2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "dHP" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkred2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "dIb" = ( /obj/structure/barricade/handrail/strata, /obj/structure/platform, @@ -4401,7 +4393,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "dJA" = ( /obj/structure/window/framed/corsat, /obj/structure/machinery/door/poddoor/shutters/almayer/open, @@ -4418,7 +4410,7 @@ /obj/item/reagent_container/food/drinks/shaker, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "dJX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -4427,7 +4419,7 @@ light_power = .50 }, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "dLf" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -4494,7 +4486,7 @@ }, /obj/item/storage/pill_bottle/spaceacillin/skillless, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "dOO" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice4"; @@ -4543,7 +4535,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "dPm" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -4599,7 +4591,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "dSv" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -4627,7 +4619,7 @@ /obj/structure/sign/poster/music, /obj/structure/mirror, /turf/closed/wall/biodome, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "dSW" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 8 @@ -4658,8 +4650,8 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, /turf/open/floor/prison, /area/taipei/cargo) @@ -4689,14 +4681,12 @@ pixel_x = -8; pixel_y = 0 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "dXc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Visitor Entrance" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/whitered{ dir = 1 }, @@ -4709,6 +4699,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/prison, /area/taipei/cargo) "dXu" = ( @@ -4951,8 +4942,8 @@ /area/taipei/maints/south) "egf" = ( /obj/item/lightstick/red/spoke/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "egt" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, @@ -5055,8 +5046,8 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/north) "ejA" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/whitered{ dir = 1 }, @@ -5144,13 +5135,13 @@ dir = 1 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "eoj" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "eoO" = ( /turf/open/floor/strata/faux_wood, /area/taipei/atrium/hotel) @@ -5224,6 +5215,10 @@ /area/taipei/maints/south) "equ" = ( /obj/structure/machinery/power/smes/buildable/charged, +/obj/structure/machinery/power/smes/buildable/charged{ + pixel_x = 0; + pixel_y = 16 + }, /turf/open/floor/prison, /area/taipei/reactor) "eqY" = ( @@ -5369,7 +5364,7 @@ /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/drinks/bottle/vodka, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "ezN" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -5399,16 +5394,13 @@ }, /turf/open/floor/mech_bay_recharge_floor, /area/taipei/cargo) -"eAu" = ( -/turf/open/space/basic, -/area/taipei/cargo) "eAQ" = ( /obj/item/stool{ pixel_y = 15 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "eBz" = ( /obj/structure/platform{ dir = 1 @@ -5425,7 +5417,7 @@ "eCr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkred2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "eCv" = ( /obj/structure/machinery/light{ dir = 8 @@ -5475,7 +5467,7 @@ dir = 4 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "eDn" = ( /obj/structure/surface/table, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -5506,13 +5498,13 @@ dir = 4 }, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "eDM" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "eEb" = ( /turf/open/floor/kutjevo/multi_tiles/southwest, /area/taipei/atrium) @@ -5610,9 +5602,9 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "eIq" = ( -/obj/docking_port/stationary/marine_dropship, +/obj/docking_port/stationary/marine_dropship/lz1, /turf/open/floor/plating, /area/taipei/hangar/landingzone) "eIR" = ( @@ -5622,7 +5614,7 @@ pixel_y = 3 }, /turf/open/floor/prison/darkbrowncorners2/southwest, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "eKu" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 3 @@ -5676,7 +5668,7 @@ "eNX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "eOh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -5769,7 +5761,7 @@ dir = 1 }, /turf/open/floor/prison/darkred2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "eSC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor, @@ -5846,9 +5838,21 @@ /turf/open/floor/prison/cell_stripe, /area/taipei/atrium/hotel) "eWE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/closed/wall/almayer, -/area/taipei/reactor) +/obj/structure/platform{ + layer = 2.7; + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_x = -1 + }, +/turf/open/void/vehicle, +/area/taipei/reactor/chamber) "eWQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -5899,8 +5903,8 @@ pixel_x = 16; pixel_y = -15 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "eZE" = ( /obj/structure/bed/chair/comfy{ pixel_y = -2 @@ -5913,11 +5917,7 @@ /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) "eZX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/chem_dispenser/soda/beer{ - pixel_y = 8; - dir = 4 - }, +/obj/structure/machinery/cm_vending/sorted/boozeomat, /turf/open/floor/bar, /area/taipei/atrium/restaurant) "faq" = ( @@ -5969,8 +5969,8 @@ pixel_x = -4; pixel_y = 6 }, -/turf/open/floor/mech_bay_recharge_floor, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "fby" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -6069,8 +6069,8 @@ pixel_y = 7 }, /obj/item/lightstick/red/variant/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "feT" = ( /obj/structure/bed/sofa/south/white, /turf/open/floor/plating/asteroidfloor, @@ -6110,7 +6110,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "fgw" = ( /obj/item/stool{ pixel_y = 8; @@ -6118,7 +6118,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "fgE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -6405,7 +6405,7 @@ /obj/item/trash/cigbutt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "frY" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -6508,7 +6508,7 @@ /area/taipei/maints/south) "fwT" = ( /turf/closed/wall/biodome, -/area/taipei/atrium/club) +/area/taipei/club) "fxe" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -6557,8 +6557,8 @@ /obj/item/lightstick/red/variant/planted{ light_range = 5 }, -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "fBF" = ( /obj/structure/bed/sofa/south/white/left{ pixel_y = 16 @@ -6781,7 +6781,7 @@ /obj/structure/bed/sofa/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "fOo" = ( /obj/structure/machinery/conveyor, /obj/structure/prop/invuln/lattice_prop{ @@ -6883,8 +6883,8 @@ dir = 4; pixel_x = -1 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "fRG" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -6953,6 +6953,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/prison, /area/taipei/cargo) "fVU" = ( @@ -7068,7 +7069,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "gak" = ( /obj/structure/barricade/handrail/kutjevo{ layer = 3.05 @@ -7097,10 +7098,10 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "gbt" = ( /turf/closed/wall/biodome, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "gbD" = ( /turf/open/floor/corsat/marked, /area/taipei/elevator/arrivals) @@ -7142,7 +7143,7 @@ "gdg" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue, -/area/taipei/atrium/club) +/area/taipei/club) "gds" = ( /obj/structure/window/reinforced/ultra{ dir = 4 @@ -7155,7 +7156,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/north, -/area/taipei/atrium/club) +/area/taipei/club) "gdN" = ( /obj/structure/machinery/light{ dir = 1 @@ -7281,7 +7282,7 @@ dir = 8 }, /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "gnu" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -7467,11 +7468,11 @@ pixel_y = 6; dir = 3 }, -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "gua" = ( -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "guf" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -7504,7 +7505,7 @@ /turf/open/floor/plating/asteroidfloor/north, /area/taipei/hangar) "gvH" = ( -/turf/open/gm/empty, +/turf/open/void, /area/taipei/maints/north) "gwB" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -7544,11 +7545,6 @@ layer = 2.7; dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -7570,14 +7566,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/faux_wood, /area/taipei/atrium/restaurant) -"gAi" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/asteroid, -/area/taipei/cargo) "gAS" = ( /turf/open/floor/kutjevo/tan/grey_inner_edge/east, /area/taipei/atrium) @@ -7612,7 +7600,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "gCN" = ( /obj/structure/platform, /obj/structure/cable/heavyduty{ @@ -7626,12 +7614,8 @@ }, /obj/structure/pipes/standard/manifold/hidden/supply, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/south, /turf/open/floor/prison, /area/taipei/maints/south) -"gEA" = ( -/turf/open/floor/almayer/empty, -/area/taipei/reactor) "gEE" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -7656,11 +7640,11 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "gFL" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/carpet15_15/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "gFX" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -7695,7 +7679,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "gHA" = ( /obj/structure/surface/rack{ pixel_x = -5 @@ -7712,6 +7696,10 @@ pixel_x = 18 }, /obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -10; + pixel_y = 9 + }, /turf/open/floor/bar, /area/taipei/atrium/store) "gHK" = ( @@ -8091,7 +8079,7 @@ dir = 8 }, /turf/open/floor/prison/darkbrowncorners2/southwest, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "heo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8115,8 +8103,8 @@ pixel_x = -16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "hgl" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -8144,7 +8132,7 @@ /obj/item/trash/crushed_cup, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet10_8/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "hhI" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 1 @@ -8173,7 +8161,6 @@ /obj/structure/cable/heavyduty{ icon_state = "0-2" }, -/obj/structure/machinery/power/apc/power/north, /turf/open/floor/prison, /area/taipei/maints/north) "hjy" = ( @@ -8222,7 +8209,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "hmJ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -8267,11 +8254,6 @@ dir = 4; id = "vehicle_elevator_railing_aux" }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, /turf/open/floor/prison, /area/taipei/cargo) "hnU" = ( @@ -8323,15 +8305,10 @@ /turf/open/floor/corsat/marked, /area/taipei/maints/north) "hrp" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating/asteroidfloor, -/area/taipei/maints/north) +/turf/open/floor/prison, +/area/taipei/hangar) "hrv" = ( /obj/structure/blocker/invisible_wall, /turf/closed/wall/almayer/outer, @@ -8354,7 +8331,7 @@ /obj/item/trash/cigbutt, /obj/item/trash/cigbutt, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "hrQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/faux_wood, @@ -8365,6 +8342,10 @@ pixel_y = 10 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4; + light_power = .50 + }, /turf/open/floor/strata/faux_wood, /area/taipei/atrium/hotel) "hsz" = ( @@ -8466,7 +8447,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "hvy" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/fake_wood, @@ -8496,7 +8477,7 @@ light_power = .75 }, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "hyf" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo_arrow"; @@ -8507,11 +8488,6 @@ dir = 4; id = "vehicle_elevator_railing_aux" }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, /turf/open/floor/prison, /area/taipei/cargo) "hyw" = ( @@ -8536,6 +8512,11 @@ }, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) +"hAl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone, +/turf/open/floor/plating/asteroidwarning/west, +/area/taipei/maints/north) "hBn" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -8765,7 +8746,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "hJS" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -8811,7 +8792,7 @@ /area/taipei/maints/north) "hLc" = ( /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "hLu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8826,7 +8807,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "hMB" = ( /obj/structure/machinery/conveyor{ dir = 9; @@ -8894,7 +8875,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "hON" = ( /turf/open/floor/corsat/marked, /area/taipei/elevator/departures) @@ -8909,17 +8890,12 @@ }, /turf/open/space/basic, /area/space) -"hRn" = ( -/obj/structure/prop/turbine, -/obj/item/lightstick/red/variant/planted, -/turf/open/gm/empty, -/area/taipei/reactor) "hSu" = ( /obj/item/stool{ pixel_y = 14 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "hSG" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -8933,13 +8909,10 @@ /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) "hTw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Visitor Entrance" - }, /obj/structure/machinery/door/poddoor/shutters/almayer/open, -/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "hTM" = ( /obj/structure/machinery/light{ dir = 4 @@ -8989,7 +8962,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "hVs" = ( /obj/item/lightstick/red/spoke/planted, /obj/effect/decal/warning_stripes{ @@ -9011,7 +8984,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "hWH" = ( /obj/structure/prop/almayer/computers/sensor_computer2, /turf/open/floor/prison, @@ -9139,7 +9112,7 @@ /obj/item/ashtray/glass, /obj/item/trash/cigbutt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "idY" = ( /obj/structure/machinery/washing_machine{ pixel_y = 13; @@ -9270,7 +9243,7 @@ dir = 4 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "iiq" = ( /obj/structure/platform{ dir = 4 @@ -9391,7 +9364,7 @@ /obj/structure/platform, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "itE" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -9439,11 +9412,8 @@ /turf/open/floor/kutjevo/multi_tiles/west, /area/taipei/atrium) "ivo" = ( -/obj/item/tool/wet_sign{ - pixel_x = -3; - pixel_y = 2 - }, /obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) "ivC" = ( @@ -9508,7 +9478,7 @@ light_power = .50 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "iwv" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/cargo) @@ -9536,11 +9506,11 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "ixH" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet15_15/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "iyX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -9567,7 +9537,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "izW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light_switch{ @@ -9619,7 +9589,7 @@ "iDf" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/almayer, -/area/taipei/atrium/club) +/area/taipei/club) "iDD" = ( /obj/structure/machinery/light/blue{ dir = 4 @@ -9695,8 +9665,8 @@ pixel_x = 13; pixel_y = 0 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "iGJ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/storage/toolbox/electrical{ @@ -9760,7 +9730,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "iJD" = ( /turf/closed/wall/biodome, /area/taipei/atrium/hotel) @@ -9858,7 +9828,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "iPf" = ( /obj/structure/machinery/light/spot{ dir = 1 @@ -9892,7 +9862,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkred2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "iQx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -9915,7 +9885,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/north, -/area/taipei/atrium/club) +/area/taipei/club) "iRX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -10060,7 +10030,7 @@ "iYe" = ( /obj/structure/machinery/light, /turf/open/floor/carpet13_5, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "iYm" = ( /obj/structure/surface/table/holotable, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -10110,7 +10080,8 @@ /area/taipei/maints/south) "jal" = ( /obj/effect/elevator, -/turf/open/space/basic, +/obj/effect/elevator/animation_overlay, +/turf/open/void, /area/taipei/cargo) "jav" = ( /obj/structure/bookcase{ @@ -10256,8 +10227,8 @@ dir = 10 }, /obj/structure/barricade/handrail/strata, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "jes" = ( /obj/structure/curtain/medical, /obj/structure/cable/heavyduty{ @@ -10346,7 +10317,7 @@ /area/taipei/maints/south) "jgX" = ( /obj/structure/window/framed/prison/reinforced, -/turf/closed/wall/r_wall/bunker, +/turf/open/space/basic, /area/taipei/cmb) "jhe" = ( /obj/effect/decal/warning_stripes{ @@ -10363,6 +10334,11 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, /turf/open/floor/prison, /area/taipei/cargo) "jhE" = ( @@ -10396,7 +10372,7 @@ pixel_y = -10 }, /turf/closed/wall/almayer, -/area/taipei/maints/north) +/area/taipei/club) "jiy" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -10458,12 +10434,10 @@ /turf/open/floor, /area/taipei/atrium/laundry) "jku" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Visitor Entrance" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium/bookstore) "jkG" = ( @@ -10497,7 +10471,7 @@ req_one_access = null }, /turf/open/floor/corsat/marked, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "jop" = ( /obj/structure/machinery/light{ dir = 1 @@ -10582,15 +10556,13 @@ /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) "jvg" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8; + light_power = .50 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/plating/asteroidfloor, -/area/taipei/maints/south) +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) "jvs" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -10608,8 +10580,8 @@ pixel_x = -1 }, /obj/item/lightstick/red/spoke/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "jvY" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -10632,6 +10604,19 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/asteroid, /area/taipei/maints/south) +"jxb" = ( +/obj/structure/barricade/handrail/strata{ + pixel_y = -4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk/prison, +/area/taipei/maints/south) "jya" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/flora/bush/ausbushes/grassybush{ @@ -10653,7 +10638,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "jyx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -10692,7 +10677,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "jAx" = ( /obj/structure/platform{ dir = 1 @@ -10779,13 +10764,13 @@ "jEl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet13_5/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "jEJ" = ( /obj/structure/barricade/handrail/kutjevo, /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "jEM" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -10906,7 +10891,6 @@ "jKm" = ( /obj/structure/cable/heavyduty, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/south, /turf/open/floor/prison, /area/taipei/maints/south) "jKu" = ( @@ -11010,7 +10994,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "jPj" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -11056,7 +11040,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "jSY" = ( /obj/structure/window/framed/almayer, /obj/effect/decal/cleanable/dirt, @@ -11072,6 +11056,11 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison, /area/taipei/cargo) +"jTh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning, +/area/taipei/maints/north) "jTj" = ( /obj/structure/bed/chair/bolted{ dir = 1 @@ -11093,10 +11082,10 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "jVD" = ( /obj/structure/machinery/elevator_strut/top, -/turf/open/gm/empty, +/turf/open/void, /area/taipei/maints/north) "jVM" = ( /obj/effect/decal/cleanable/dirt, @@ -11185,14 +11174,12 @@ /turf/open/floor/bar, /area/taipei/atrium/store) "kaR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Visitor Entrance" - }, /obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "kbx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/colors, @@ -11399,6 +11386,34 @@ }, /turf/open/floor/prison, /area/taipei/cargo) +"klC" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/stack/cable_coil{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding10" + }, +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/mob/living/simple_animal/mouse{ + desc = "One day, while doing nothing particularly out of the ordinary, because of natural laws he was completely powerless to understand or intuit, he was instantly killed in a horrifying way by forces vastly in excess of anything he was ever designed to experience, for no reason, to no ones particular surprise or upset. In this we are more like him than different"; + health = -10; + name = "burnt mouse" + }, +/obj/effect/decal/strata_decals/grime/grime3, +/obj/item/stack/catwalk{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/plating, +/area/taipei/maints/north) "klI" = ( /obj/structure/surface/rack{ pixel_x = -5 @@ -11434,7 +11449,7 @@ }, /obj/structure/machinery/door/airlock/almayer/maint/autoname, /turf/open/floor/corsat/marked, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "kms" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -11474,7 +11489,7 @@ }, /obj/item/trash/cigbutt/cigarbutt, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "knG" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) @@ -11527,7 +11542,7 @@ "koO" = ( /obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "koW" = ( /obj/structure/surface/table, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -11565,8 +11580,8 @@ pixel_x = -12; pixel_y = 0 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "kqv" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -11603,7 +11618,7 @@ pixel_x = 4 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "kum" = ( /obj/structure/machinery/light{ dir = 8 @@ -11617,7 +11632,7 @@ "kuT" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet13_5, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "kuZ" = ( /turf/open/floor/prison, /area/taipei/maints/south) @@ -11664,7 +11679,7 @@ "kxn" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "kxp" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -11686,7 +11701,7 @@ /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/window/reinforced, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "kya" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -11724,8 +11739,8 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "kAA" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -11860,14 +11875,15 @@ /turf/open/floor/prison, /area/taipei/cargo) "kDQ" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "vehicle_elevator_railing_aux" +/obj/structure/platform{ + layer = 2.7; + dir = 4 }, +/obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 }, /turf/open/floor/prison, /area/taipei/cargo) @@ -11875,20 +11891,13 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/closed/wall/biodome, -/area/taipei/atrium/club) +/area/taipei/club) "kEu" = ( -/obj/structure/barricade/handrail/strata{ - pixel_y = -4 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating/plating_catwalk/prison, -/area/taipei/maints/north) +/turf/open/floor/kutjevo/tan, +/area/taipei/atrium) "kEV" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/research, /obj/structure/machinery/door/airlock/multi_tile/elevator/access, @@ -11910,7 +11919,7 @@ /obj/structure/pipes/vents/scrubber, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/north, -/area/taipei/atrium/club) +/area/taipei/club) "kHz" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -11930,10 +11939,10 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "kJO" = ( /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "kKt" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/strata_grass/layer1{ @@ -11977,7 +11986,7 @@ "kMg" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkred2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "kMk" = ( /obj/structure/machinery/light{ dir = 8 @@ -12045,7 +12054,6 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/obj/structure/machinery/power/apc/power/north, /turf/open/floor/prison, /area/taipei/maints/north) "kPG" = ( @@ -12139,12 +12147,12 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/north, -/area/taipei/atrium/club) +/area/taipei/club) "kSV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "kTm" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 1 @@ -12224,15 +12232,12 @@ dir = 4 }, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "kWJ" = ( /obj/structure/platform{ layer = 3.1 }, -/obj/structure/window/framed/almayer, -/obj/structure/blocker/forcefield/human{ - icon = 'icons/' - }, +/obj/structure/window/framed/almayer/hull, /turf/open/floor/prison, /area/taipei/reactor) "kWK" = ( @@ -12300,6 +12305,11 @@ /obj/structure/platform/stair_cut/alt, /turf/open/floor/plating/asteroidfloor/north, /area/taipei/maints/south) +"kZf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone, +/turf/open/floor/plating/asteroidwarning/east, +/area/taipei/maints/north) "laO" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice4"; @@ -12330,7 +12340,7 @@ /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/window/reinforced, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "leH" = ( /obj/structure/platform/strata/metal, /obj/structure/barricade/handrail/strata{ @@ -12370,14 +12380,14 @@ dir = 8 }, /obj/item/lightstick/red/spoke/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "lgm" = ( /obj/structure/pipes/vents, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/apc/power/north, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "lgD" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -12387,7 +12397,7 @@ dir = 8 }, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "lgN" = ( /obj/structure/platform{ dir = 1 @@ -12439,7 +12449,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "liU" = ( /obj/structure/machinery/light/double{ dir = 8 @@ -12630,10 +12640,17 @@ /turf/closed/wall/almayer, /area/taipei/maints/south) "lqv" = ( +/obj/structure/machinery/light{ + dir = 8; + light_power = .25 + }, /turf/open/floor/kutjevo/colors/red/inner_corner{ dir = 4 }, /area/taipei/atrium) +"lqR" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor/chamber) "lrH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door/poddoor/shutters/almayer, @@ -12648,7 +12665,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "lsf" = ( /turf/closed/wall/almayer/white/hull, /area/taipei/atrium/medbay) @@ -12687,7 +12704,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "ltv" = ( /obj/structure/surface/table, /obj/item/toy/desk/dippingbird{ @@ -12732,8 +12749,8 @@ pixel_x = 16; pixel_y = -15 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "luW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -12761,7 +12778,7 @@ pixel_x = -5 }, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "lwq" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname, /obj/effect/decal/cleanable/dirt, @@ -12813,8 +12830,8 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "lxO" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -12901,7 +12918,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "lBY" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -12928,6 +12945,10 @@ /turf/open/floor/prison, /area/taipei/maints/north) "lCh" = ( +/obj/structure/machinery/light{ + dir = 8; + light_power = .25 + }, /turf/open/floor/kutjevo/colors/red/inner_corner, /area/taipei/atrium) "lCt" = ( @@ -13044,7 +13065,7 @@ /area/taipei/maints/north) "lGx" = ( /turf/open/floor/prison/darkred2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "lGP" = ( /obj/structure/window/framed/almayer/white, /obj/item/cpr_dummy{ @@ -13132,7 +13153,7 @@ "lJu" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredcorners2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "lKe" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -13163,22 +13184,22 @@ pixel_x = 16; pixel_y = -15 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "lLw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, /turf/open/floor/prison/darkbrowncorners2/southwest, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "lLD" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "lLE" = ( /obj/structure/platform{ layer = 2.7; @@ -13298,7 +13319,7 @@ /area/taipei/hangar) "lSk" = ( /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "lSq" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -13315,17 +13336,17 @@ "lTp" = ( /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "lTI" = ( /obj/structure/window/reinforced, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "lUk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue, -/area/taipei/atrium/club) +/area/taipei/club) "lUO" = ( /obj/structure/platform_decoration{ dir = 8 @@ -13371,15 +13392,15 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "lXo" = ( /obj/structure/machinery/elevator_strut/bottom, /obj/structure/prop/invuln/overhead_pipe{ pixel_x = -8; pixel_y = 0 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "lXI" = ( /obj/structure/machinery/light{ dir = 1 @@ -13397,7 +13418,7 @@ "lYS" = ( /obj/structure/closet/cabinet, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "lZD" = ( /obj/structure/platform{ layer = 2.7; @@ -13439,7 +13460,7 @@ pixel_y = 30 }, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "maN" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid, /obj/structure/machinery/door/poddoor/almayer/closed, @@ -13447,9 +13468,9 @@ /turf/open/floor/corsat/marked, /area/taipei/cmb) "mbc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, /turf/open/floor/asteroidplating, /area/taipei/atrium/store) "mbn" = ( @@ -13506,7 +13527,7 @@ light_power = .25 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "mdJ" = ( /turf/open/floor/plating/asteroidwarning/west, /area/taipei/reactor) @@ -13543,11 +13564,16 @@ /obj/structure/cargo_container/watatsumi/mid, /turf/open/floor/plating/asteroidfloor/north, /area/taipei/hangar) +"mfA" = ( +/obj/item/weapon/broken_bottle, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/bar, +/area/taipei/atrium/store) "mfT" = ( /obj/structure/lattice, /obj/item/lightstick/red/spoke/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "mgb" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -13560,7 +13586,7 @@ dir = 4 }, /turf/open/floor/asteroid, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "mgc" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo_arrow" @@ -13740,7 +13766,7 @@ "mmZ" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/biodome, -/area/taipei/atrium/club) +/area/taipei/club) "mnw" = ( /obj/item/tool/mop{ pixel_x = -22; @@ -13771,11 +13797,12 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/prison, /area/taipei/cargo) "moD" = ( /obj/structure/machinery/elevator_strut/bottom, -/turf/open/gm/empty, +/turf/open/void, /area/taipei/maints/north) "moK" = ( /obj/structure/surface/rack{ @@ -13862,8 +13889,8 @@ pixel_x = -4; pixel_y = 6 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "msJ" = ( /obj/structure/machinery/light/blue, /obj/structure/coatrack{ @@ -13907,12 +13934,13 @@ dir = 5 }, /turf/open/floor/carpet13_5/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "muT" = ( /obj/structure/pipes/vents, /obj/structure/machinery/light{ dir = 1 }, +/obj/structure/machinery/power/apc/power/north, /turf/open/floor/prison, /area/taipei/telecomms) "mvh" = ( @@ -13999,7 +14027,7 @@ "mAf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "mAV" = ( /obj/structure/machinery/medical_pod/bodyscanner, /turf/open/floor/kutjevo/colors/cyan/inner_corner/west, @@ -14025,7 +14053,7 @@ dir = 1 }, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "mBI" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -14057,8 +14085,8 @@ pixel_x = 16; pixel_y = -15 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "mDl" = ( /obj/structure/bed/sofa/vert/white/bot, /obj/effect/decal/cleanable/dirt, @@ -14109,7 +14137,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "mEH" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -14158,7 +14186,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "mGh" = ( /obj/structure/bed/sofa/vert/white/bot, /turf/open/floor/kutjevo/tan, @@ -14233,7 +14261,7 @@ /area/taipei/hangar) "mMa" = ( /turf/open/floor/carpet13_5, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "mMx" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 2; @@ -14247,8 +14275,8 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "mNy" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 8 @@ -14295,7 +14323,7 @@ /area/taipei/hangar) "mPR" = ( /turf/open/floor/prison/darkred2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "mQE" = ( /obj/structure/flora/pottedplant/random{ pixel_x = 0; @@ -14405,7 +14433,7 @@ }, /obj/item/trash/buritto, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "mWy" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/toy/desk/newtoncradle{ @@ -14423,10 +14451,9 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/light{ - light_color = #00008B; - light_power = .5 + light_color = "#38a9fd" }, -/area/taipei/atrium/club) +/area/taipei/club) "mXX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/colors/red/edge{ @@ -14451,7 +14478,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/southwest, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "mZM" = ( /obj/structure/platform_decoration, /obj/structure/platform_decoration{ @@ -14476,7 +14503,6 @@ icon_state = "0-8" }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/east, /turf/open/floor/prison, /area/taipei/maints/south) "naz" = ( @@ -14548,7 +14574,7 @@ "nbG" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "nbW" = ( /obj/structure/shuttle/engine/heater{ dir = 8; @@ -14559,8 +14585,8 @@ pixel_x = -4; pixel_y = 6 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "ncn" = ( /obj/structure/stairs/perspective{ dir = 8 @@ -14610,7 +14636,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "nec" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -14627,7 +14653,7 @@ "nek" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "neY" = ( /obj/structure/machinery/light{ dir = 8 @@ -14703,7 +14729,7 @@ /obj/structure/machinery/door/window/brigdoor/southleft, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "njs" = ( /obj/structure/flora/pottedplant{ desc = "How did that get in there?"; @@ -14740,7 +14766,7 @@ light_power = .25 }, /turf/open/floor/carpet7_3/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "nkn" = ( /obj/structure/surface/rack, /obj/item/bodybag, @@ -14754,11 +14780,29 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/fake_wood, /area/taipei/cmb) +"nkF" = ( +/obj/structure/surface/rack{ + pixel_x = 4 + }, +/obj/structure/surface/rack{ + pixel_y = 16; + pixel_x = 4 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -1; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 8; + pixel_y = 25 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) "nkR" = ( /obj/structure/lattice, /obj/structure/prop/static_tank, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "nkV" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -14783,7 +14827,7 @@ pixel_y = -2 }, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "nnh" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, @@ -14880,7 +14924,8 @@ /area/taipei/reactor) "nug" = ( /obj/structure/window/framed/almayer/white, -/turf/closed/wall/almayer/white/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/turf/open/space/basic, /area/taipei/atrium/medbay) "nuJ" = ( /obj/structure/surface/table, @@ -14959,7 +15004,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroid, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "nwx" = ( /obj/structure/barricade/handrail/strata{ pixel_y = -4 @@ -14984,8 +15029,8 @@ /area/taipei/hangar) "nxk" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/closed/wall/almayer, -/area/space) +/turf/closed/wall/almayer/outer, +/area/taipei/reactor) "nxq" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -15057,14 +15102,14 @@ /obj/structure/barricade/handrail/strata{ pixel_y = -4 }, -/turf/open/gm/empty, +/turf/open/void, /area/taipei/maints/south) "nCy" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "nCA" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -15199,7 +15244,7 @@ pixel_x = -5 }, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "nJy" = ( /obj/structure/platform/strata/metal{ dir = 8 @@ -15230,9 +15275,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor, /area/taipei/maints/north) -"nLW" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/taipei/reactor) "nNw" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 4 @@ -15281,7 +15323,7 @@ "nPP" = ( /obj/structure/machinery/door/window/brigdoor/southleft, /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "nPW" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -15468,7 +15510,7 @@ pixel_y = -11 }, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "nUs" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -15507,7 +15549,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "nWA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cargo_container/trijent/mid, @@ -15584,18 +15626,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) -"obk" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/taipei/cargo) +/area/taipei/club) "obs" = ( /obj/structure/barricade/handrail/strata{ pixel_y = -4 @@ -15615,11 +15646,8 @@ /obj/structure/platform{ layer = 3.1 }, -/obj/structure/window/framed/almayer, /obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/human{ - icon = 'icons/' - }, +/obj/structure/window/framed/almayer/hull, /turf/open/floor/prison, /area/taipei/reactor) "ocK" = ( @@ -15796,7 +15824,7 @@ pixel_x = -8 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "oiM" = ( /obj/structure/toilet{ pixel_y = 12 @@ -15863,6 +15891,7 @@ "okm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/kutjevo/tan, /area/taipei/atrium/offices) "okM" = ( @@ -15912,7 +15941,7 @@ /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door/window/brigdoor/southright, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "ole" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -16012,7 +16041,7 @@ /obj/structure/surface/table, /obj/item/clothing/under/swimsuit/green, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "ooB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/tan/alt_edge/northeast, @@ -16027,7 +16056,7 @@ "opt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/closed/wall/almayer, +/turf/closed/wall/almayer/outer, /area/taipei/reactor) "opZ" = ( /obj/structure/closet/secure_closet/detective{ @@ -16087,7 +16116,7 @@ "osU" = ( /obj/structure/sign/safety/maint, /turf/closed/wall/almayer, -/area/taipei/atrium/club) +/area/taipei/club) "oty" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access, /turf/open/floor/corsat/marked, @@ -16103,7 +16132,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "oud" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet9_4, @@ -16163,12 +16192,14 @@ /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) "ovS" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/turf/open/space/basic, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, /area/taipei/cargo) "oxM" = ( /obj/structure/window/framed/prison/cell, @@ -16309,6 +16340,9 @@ /obj/structure/sign/safety/elevator, /turf/closed/wall/biodome, /area/taipei/atrium) +"oEr" = ( +/turf/closed/mineral, +/area/taipei/reactor) "oEH" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/edge/smooth, @@ -16355,7 +16389,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet6_2, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "oIc" = ( /obj/structure/flora/grass/desert/lightgrass_3, /obj/effect/decal/grass_overlay/grass1/inner, @@ -16456,7 +16490,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "oMS" = ( /obj/structure/machinery/light{ dir = 8; @@ -16538,7 +16572,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/prison/darkred2, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "oSi" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -16633,7 +16667,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/north, -/area/taipei/atrium/club) +/area/taipei/club) "oVF" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -16701,10 +16735,11 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "oXI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/north) "oYd" = ( @@ -16734,6 +16769,7 @@ "oYS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/kutjevo/tan, /area/taipei/atrium/offices) "oZJ" = ( @@ -16777,6 +16813,9 @@ /obj/structure/cargo_container/trijent/left, /turf/open/floor/plating/asteroidfloor/north, /area/taipei/hangar) +"pbd" = ( +/turf/closed/wall/almayer/outer, +/area/taipei/club) "pbt" = ( /obj/structure/prop/turbine, /obj/structure/prop/turbine_extras/left, @@ -16794,8 +16833,8 @@ /obj/item/lightstick/red/variant/planted{ light_range = 5 }, -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "pbP" = ( /obj/structure/barricade/metal{ dir = 8; @@ -16832,11 +16871,6 @@ dir = 8; id = "supply_elevator_railing" }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -16855,7 +16889,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "pdt" = ( /obj/structure/sink{ dir = 1; @@ -16871,10 +16905,9 @@ pixel_y = 14 }, /turf/open/floor/light{ - light_color = #00008B; - light_power = .5 + light_color = "#38a9fd" }, -/area/taipei/atrium/club) +/area/taipei/club) "pdA" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -16891,7 +16924,7 @@ dir = 8 }, /turf/open/floor/prison/darkredcorners2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pdP" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, @@ -16987,7 +17020,7 @@ /obj/structure/sign/poster/pinup, /obj/structure/mirror, /turf/closed/wall/biodome, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pig" = ( /obj/structure/surface/table, /obj/structure/window/reinforced{ @@ -17022,7 +17055,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "plc" = ( /obj/structure/machinery/washing_machine{ pixel_y = 13; @@ -17129,7 +17162,7 @@ "poQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "ppk" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/corsat/marked, @@ -17151,7 +17184,7 @@ /area/taipei/hangar) "pqL" = ( /turf/open/floor/prison/chapel_carpet/doubleside, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pqP" = ( /obj/structure/toilet{ pixel_y = 15; @@ -17263,7 +17296,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pvI" = ( /obj/structure/machinery/light{ dir = 1 @@ -17282,6 +17315,7 @@ "pwz" = ( /obj/structure/window/framed/almayer/white, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/closed/wall/almayer/white/reinforced, /area/taipei/atrium/medbay) "pwM" = ( @@ -17295,12 +17329,9 @@ /obj/structure/pipes/vents, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet7_3/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pxr" = ( -/obj/structure/blocker/forcefield/human{ - icon = 'icons/' - }, -/obj/structure/window/framed/almayer, +/obj/structure/window/framed/almayer/hull, /turf/open/floor/prison, /area/taipei/reactor) "pxG" = ( @@ -17341,7 +17372,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pzg" = ( /obj/structure/platform/shiva/catwalk, /obj/structure/platform/shiva/catwalk{ @@ -17350,16 +17381,7 @@ /obj/item/trash/cigbutt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) -"pzh" = ( -/obj/effect/elevator, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/asteroid, -/area/taipei/cargo) +/area/taipei/club) "pzk" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -17539,14 +17561,14 @@ pixel_x = -5 }, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "pHQ" = ( /obj/structure/sign/banners/united_americas_flag{ pixel_y = 28 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue, -/area/taipei/atrium/club) +/area/taipei/club) "pIu" = ( /obj/item/storage/briefcase{ pixel_y = -13; @@ -17638,10 +17660,9 @@ /area/taipei/atrium) "pLb" = ( /turf/open/floor/light{ - light_color = #00008B; - light_power = .5 + light_color = "#38a9fd" }, -/area/taipei/atrium/club) +/area/taipei/club) "pLt" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -17652,14 +17673,14 @@ light_power = .25 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "pLA" = ( /obj/structure/machinery/door/window/brigdoor/southright, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, /turf/open/floor/prison/darkbrowncorners2/southwest, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pLN" = ( /turf/open/floor/carpet11_12/west, /area/taipei/atrium/hotel) @@ -17687,11 +17708,11 @@ "pMv" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/north, -/area/taipei/atrium/club) +/area/taipei/club) "pMJ" = ( /obj/item/lightstick/red/variant/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "pMK" = ( /obj/structure/platform_decoration{ dir = 1 @@ -17701,8 +17722,8 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "pMR" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -17776,7 +17797,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "pOp" = ( /obj/item/trash/popcorn{ dir = 1; @@ -17797,7 +17818,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pOq" = ( /turf/open/floor/plating, /area/taipei/hangar/landingzone) @@ -17806,8 +17827,8 @@ /turf/open/floor/kutjevo/tan, /area/taipei/elevator/arrivals) "pOK" = ( -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/cargo) "pPy" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -17854,7 +17875,7 @@ light_power = .50 }, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "pRe" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -17910,7 +17931,7 @@ dir = 8 }, /turf/open/floor/prison/darkredcorners2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "pTu" = ( /obj/structure/surface/table/reinforced/black, /obj/structure/window/reinforced/toughened{ @@ -18032,7 +18053,7 @@ pixel_x = 10 }, /turf/closed/wall/almayer, -/area/taipei/atrium/club) +/area/taipei/club) "pZD" = ( /obj/structure/machinery/light/double{ dir = 1 @@ -18060,8 +18081,8 @@ pixel_x = 16; pixel_y = 6 }, -/turf/open/floor/mech_bay_recharge_floor, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "qaS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, @@ -18139,7 +18160,7 @@ /obj/structure/sign/poster/io, /obj/structure/mirror, /turf/closed/wall/biodome, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "qgs" = ( /obj/structure/platform{ dir = 1 @@ -18186,7 +18207,7 @@ pixel_x = -5 }, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "qjd" = ( /obj/structure/platform{ layer = 2.7; @@ -18199,7 +18220,7 @@ pixel_y = -3 }, /turf/closed/wall/almayer, -/area/taipei/atrium/club) +/area/taipei/club) "qjJ" = ( /obj/structure/sign/safety/opens_up, /turf/closed/wall/almayer, @@ -18254,7 +18275,7 @@ "qkq" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "qkv" = ( /obj/item/stool{ pixel_y = 12; @@ -18262,7 +18283,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "qky" = ( /turf/closed/wall/almayer, /area/taipei/atrium/hotel) @@ -18340,8 +18361,9 @@ "qou" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/west, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "qpi" = ( /obj/structure/toilet{ pixel_y = 12 @@ -18372,7 +18394,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "qpY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -18543,7 +18565,7 @@ pixel_y = 6 }, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "qyk" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 6; @@ -18612,7 +18634,7 @@ /obj/structure/machinery/door/window/brigdoor/southright, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "qBL" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21"; @@ -18678,10 +18700,9 @@ /obj/item/spacecash/c20, /obj/effect/decal/cleanable/dirt, /turf/open/floor/light{ - light_color = #00008B; - light_power = .5 + light_color = "#38a9fd" }, -/area/taipei/atrium/club) +/area/taipei/club) "qDy" = ( /obj/structure/machinery/deployable, /turf/closed/mineral, @@ -18745,7 +18766,7 @@ /obj/structure/pipes/vents/scrubber, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "qHh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -18807,6 +18828,7 @@ name = "\improper Medical Bay"; req_one_access = null }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/kutjevo, /area/taipei/atrium/medbay) "qJh" = ( @@ -18830,7 +18852,7 @@ pixel_y = 22 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "qJJ" = ( /obj/structure/cable/heavyduty{ icon_state = "2-8" @@ -18906,7 +18928,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "qOn" = ( /obj/structure/platform, /obj/structure/barricade/handrail/strata, @@ -19064,7 +19086,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroid, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "qTZ" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -19136,9 +19158,23 @@ /turf/open/floor/prison, /area/taipei/maints/south) "qXz" = ( -/obj/structure/prop/turbine, -/turf/open/floor/mech_bay_recharge_floor, -/area/taipei/reactor) +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow"; + color = "#E10600"; + dir = 8 + }, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "vehicle_elevator_railing_aux" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 31 + }, +/turf/open/floor/prison, +/area/taipei/cargo) "qXE" = ( /turf/open/floor/plating/wood_broken2, /area/taipei/atrium/bookstore) @@ -19151,7 +19187,7 @@ /obj/structure/sign/poster/hunk, /obj/structure/mirror, /turf/closed/wall/biodome, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "qYe" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -19192,8 +19228,8 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "qZy" = ( /obj/structure/platform, /obj/structure/barricade/handrail/strata, @@ -19261,7 +19297,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rfk" = ( /obj/structure/machinery/light{ dir = 1 @@ -19273,7 +19309,7 @@ "rfD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rfT" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -19302,8 +19338,8 @@ }, /obj/structure/lattice, /obj/item/lightstick/red/spoke/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "rgP" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -19406,7 +19442,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rkA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -19434,14 +19470,14 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rlh" = ( /obj/structure/surface/table/almayer, /obj/structure/window/reinforced{ dir = 4 }, /turf/open/floor/prison/darkredcorners2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rly" = ( /obj/structure/largecrate/random/barrel/true_random{ pixel_x = -9; @@ -19474,8 +19510,8 @@ pixel_y = 6 }, /obj/item/lightstick/red/variant/planted, -/turf/open/floor/mech_bay_recharge_floor, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "rmW" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/taipei/atrium) @@ -19495,7 +19531,7 @@ /area/taipei/maints/south) "rnW" = ( /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "rnX" = ( /obj/structure/cargo_container/arious/leftmid, /obj/structure/prop/invuln/lattice_prop{ @@ -19549,7 +19585,6 @@ /obj/structure/machinery/power/terminal{ dir = 4 }, -/obj/structure/machinery/power/apc/power/east, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/prison, /area/taipei/maints/south) @@ -19576,7 +19611,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "rqT" = ( /obj/structure/platform_decoration{ dir = 8 @@ -19610,7 +19645,7 @@ "rrE" = ( /obj/structure/curtain/red, /turf/open/floor/asteroidplating, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rrU" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning, @@ -19726,9 +19761,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/prison, /area/taipei/cargo) "rxA" = ( @@ -19805,16 +19838,17 @@ /turf/open/floor/prison, /area/taipei/hangar) "rAv" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "vehicle_elevator_railing_aux" +/obj/structure/barricade/handrail/strata{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; + icon_state = "lattice8"; pixel_x = 16; - pixel_y = -8 + pixel_y = 31 }, -/turf/open/floor/prison, +/turf/open/floor/plating/plating_catwalk/prison, /area/taipei/cargo) "rBh" = ( /obj/effect/decal/cleanable/dirt, @@ -19920,7 +19954,7 @@ pixel_y = -10 }, /turf/closed/wall/almayer/outer, -/area/taipei/maints/north) +/area/taipei/club) "rEc" = ( /obj/structure/largecrate/random/barrel/blue{ pixel_x = -10 @@ -20035,8 +20069,8 @@ pixel_x = 16; pixel_y = -15 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "rIm" = ( /obj/structure/platform{ layer = 2.7; @@ -20051,8 +20085,8 @@ dir = 4; pixel_x = -1 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "rIo" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -20129,7 +20163,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rKL" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -20162,7 +20196,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "rLX" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 6; @@ -20217,7 +20251,7 @@ "rNR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "rOq" = ( /obj/structure/barricade/handrail/type_b{ dir = 4; @@ -20229,7 +20263,7 @@ "rOz" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "rOH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/lattice_prop{ @@ -20305,7 +20339,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rRE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/barrel/true_random{ @@ -20413,7 +20447,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/carpet15_15/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rVb" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /obj/structure/flora/bush/ausbushes/var3/sunnybush{ @@ -20501,7 +20535,7 @@ pixel_y = -4 }, /obj/structure/machinery/elevator_strut/bottom, -/turf/open/gm/empty, +/turf/open/void, /area/taipei/maints/south) "rZo" = ( /obj/effect/decal/grass_overlay/grass1/inner, @@ -20516,7 +20550,7 @@ /obj/structure/curtain/red, /obj/item/trash/crushed_cup, /turf/open/floor/carpet7_3/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "rZT" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -20533,7 +20567,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "sao" = ( /obj/structure/cargo_container/arious/leftmid, /turf/open/floor/asteroidwarning, @@ -20603,8 +20637,8 @@ pixel_y = 6; dir = 3 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "seC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cargo_container/grant/rightmid, @@ -20614,15 +20648,15 @@ /turf/open/floor/kutjevo/colors/red/inner_corner, /area/taipei/cmb) "seS" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/obj/structure/machinery/power/apc/power/south, /turf/open/floor/plating/plating_catwalk/prison, -/area/taipei/maints/south) +/area/taipei/reactor) "sfA" = ( /obj/structure/sink{ dir = 1; @@ -20689,7 +20723,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "shQ" = ( /obj/structure/platform{ dir = 1 @@ -20714,7 +20748,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "sjh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidwarning/east, @@ -20747,7 +20781,7 @@ /area/taipei/atrium/medbay) "sjQ" = ( /turf/closed/wall/almayer, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "skD" = ( /obj/structure/bed/sofa/south/white, /obj/effect/decal/cleanable/dirt, @@ -20761,10 +20795,9 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/light{ - light_color = #00008B; - light_power = .5 + light_color = "#38a9fd" }, -/area/taipei/atrium/club) +/area/taipei/club) "skO" = ( /obj/structure/machinery/light{ dir = 8; @@ -20823,7 +20856,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "snK" = ( /turf/open/floor/kutjevo/colors/cyan/edge, /area/taipei/atrium/medbay) @@ -20869,7 +20902,7 @@ dir = 8 }, /turf/open/floor/asteroid, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "sqd" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 @@ -20890,7 +20923,7 @@ dir = 1 }, /turf/open/floor/prison/darkredcorners2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "sqO" = ( /obj/structure/surface/table/reinforced/black, /obj/item/restraint/handcuffs/zip{ @@ -20925,11 +20958,11 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "srJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkred2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "ssc" = ( /obj/structure/machinery/light{ dir = 4 @@ -20939,6 +20972,7 @@ "ssB" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/east, /turf/open/floor/almayer/edge/east, /area/taipei/hangar/cargoshuttle) "ssE" = ( @@ -21076,8 +21110,8 @@ pixel_y = -15 }, /obj/item/lightstick/red/spoke/planted, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "sBy" = ( /obj/structure/platform{ dir = 1 @@ -21173,7 +21207,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "sFd" = ( /obj/structure/platform/kutjevo/smooth, /obj/effect/decal/cleanable/dirt, @@ -21186,7 +21220,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "sFS" = ( /turf/open/floor/asteroidwarning/north, /area/taipei/maints/south) @@ -21410,7 +21444,7 @@ /obj/structure/window/framed/corsat/cell, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "sPt" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -21429,8 +21463,8 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "sQC" = ( /obj/structure/stairs/perspective{ dir = 4 @@ -21566,7 +21600,7 @@ dir = 1 }, /turf/open/floor/prison/chapel_carpet/doubleside, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "sVa" = ( /obj/structure/platform, /obj/effect/decal/cleanable/dirt, @@ -21600,7 +21634,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "sVA" = ( /obj/structure/closet/secure_closet/medical2{ pixel_x = 9; @@ -21632,6 +21666,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) +"sYq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor/chamber) "sYW" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -21645,7 +21684,7 @@ "sYX" = ( /obj/structure/machinery/light, /turf/open/floor/carpet13_5/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "sZf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -21823,7 +21862,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "ten" = ( /obj/structure/bed{ pixel_x = 0; @@ -22054,12 +22093,12 @@ "tnX" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/almayer, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "toi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "toC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -22162,7 +22201,7 @@ /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet13_5, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "trY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -22174,7 +22213,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "tsy" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -22201,12 +22240,12 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "tuF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, /turf/open/floor/asteroidplating, /area/taipei/atrium/store) "tuI" = ( @@ -22216,6 +22255,7 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/prison, /area/taipei/cargo) "tuM" = ( @@ -22246,7 +22286,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/west, -/area/taipei/atrium/club) +/area/taipei/club) "tvQ" = ( /obj/structure/platform{ dir = 1 @@ -22277,7 +22317,7 @@ pixel_x = -5 }, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "twU" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" @@ -22335,10 +22375,6 @@ }, /turf/open/floor/prison/bright_clean2, /area/taipei/hangar/cargoshuttle) -"tyZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/almayer, -/area/space) "tzy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -22401,6 +22437,10 @@ /obj/structure/machinery/light/double, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) +"tCd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/reactor/chamber) "tDQ" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -22412,8 +22452,8 @@ pixel_y = 6; dir = 3 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "tEq" = ( /obj/structure/machinery/washing_machine{ pixel_x = -4; @@ -22501,10 +22541,10 @@ pixel_x = -5 }, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "tHU" = ( /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "tIH" = ( /obj/structure/surface/table, /obj/structure/window/reinforced, @@ -22559,7 +22599,7 @@ /obj/item/clothing/under/stripper/mankini, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "tMF" = ( /obj/structure/platform/kutjevo/smooth{ luminosity = 15 @@ -22574,7 +22614,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "tMI" = ( /obj/structure/toilet{ pixel_y = 12 @@ -22752,7 +22792,7 @@ /obj/structure/closet/cabinet, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "tSZ" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -22769,8 +22809,8 @@ "tTn" = ( /obj/structure/prop/power_transformer, /obj/structure/lattice, -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "tTE" = ( /obj/structure/barricade/handrail/strata{ pixel_y = -4 @@ -22800,8 +22840,8 @@ /obj/structure/prop/invuln/lattice_prop, /obj/structure/prop/power_transformer, /obj/structure/prop/structure_lattice, -/turf/open/space/basic, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "tWa" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -22819,7 +22859,7 @@ dir = 1 }, /turf/open/floor/corsat/marked, -/area/taipei/atrium/club) +/area/taipei/club) "tYp" = ( /obj/structure/window/framed/corsat, /obj/structure/machinery/door/poddoor/shutters/almayer/open, @@ -22846,7 +22886,7 @@ dir = 8 }, /turf/open/floor/prison/darkbrowncorners2/southwest, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "uaq" = ( /turf/closed/wall/almayer, /area/taipei/atrium/offices) @@ -22856,7 +22896,7 @@ dir = 8 }, /turf/open/floor/carpet9_4/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "ubP" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/kutjevo/tan, @@ -22966,6 +23006,12 @@ }, /turf/open/floor/plating/asteroidfloor/north, /area/taipei/hangar) +"uiE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/prison, +/area/taipei/club) "uiH" = ( /obj/structure/barricade/handrail/strata{ dir = 4; @@ -23007,7 +23053,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "ujx" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -23137,7 +23183,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "unz" = ( /obj/item/lightstick/red/spoke/planted, /obj/effect/decal/warning_stripes{ @@ -23200,7 +23246,7 @@ dir = 9 }, /turf/open/floor/carpet13_5, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "upf" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -23307,7 +23353,7 @@ pixel_y = -2 }, /turf/open/floor/kutjevo/fake_wood, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "utK" = ( /obj/structure/surface/rack{ pixel_x = 4 @@ -23318,6 +23364,12 @@ }, /turf/open/floor/bar, /area/taipei/atrium/store) +"utQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone, +/turf/open/floor/plating/asteroidfloor, +/area/taipei/maints/north) "utX" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 30 @@ -23365,7 +23417,7 @@ dir = 3 }, /turf/closed/wall/almayer, -/area/space) +/area/taipei/theatre) "uwK" = ( /obj/structure/platform/stair_cut/alt, /obj/structure/stairs/perspective{ @@ -23432,7 +23484,7 @@ /obj/structure/machinery/camera, /obj/structure/pipes/vents/pump, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "uyN" = ( /obj/structure/machinery/light/small{ light_color = "#C02526"; @@ -23541,7 +23593,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "uGe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -23591,7 +23643,7 @@ "uIK" = ( /obj/structure/window/reinforced, /turf/open/floor/prison/darkbrowncorners2/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "uIO" = ( /obj/structure/surface/table, /obj/structure/window/reinforced{ @@ -23627,8 +23679,8 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "uKQ" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -23687,6 +23739,15 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/telecomms) +"uQf" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8; + light_power = .50 + }, +/turf/open/floor/strata/faux_wood, +/area/taipei/atrium/hotel) "uQW" = ( /obj/structure/sign/safety/bathunisex, /turf/closed/wall/biodome, @@ -23725,7 +23786,7 @@ /area/taipei/maints/south) "uSc" = ( /turf/open/floor/prison/darkred2, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "uSs" = ( /obj/structure/cable/heavyduty{ icon_state = "0-2" @@ -23874,7 +23935,7 @@ /obj/structure/platform_decoration, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "vcF" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -23882,7 +23943,7 @@ pixel_y = 2 }, /turf/open/floor/prison/darkredcorners2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "vcZ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/bar, @@ -23967,6 +24028,18 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor, /area/taipei/atrium/laundry) +"vhw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -17; + pixel_y = 23 + }, +/turf/open/floor/bar, +/area/taipei/atrium/store) "vhM" = ( /obj/structure/machinery/door/airlock/almayer/generic/autoname{ dir = 1 @@ -24028,6 +24101,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor, /area/taipei/maints/south) +"vkA" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) "vlp" = ( /obj/structure/machinery/light/double{ dir = 4 @@ -24106,7 +24186,7 @@ /obj/effect/decal/cleanable/vomit, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "vqo" = ( /turf/closed/wall/r_wall/prison, /area/taipei/cmb) @@ -24176,7 +24256,7 @@ /turf/open/floor/prison/blue{ dir = 8 }, -/area/taipei/atrium/club) +/area/taipei/club) "vtK" = ( /obj/structure/platform{ layer = 2.7; @@ -24198,7 +24278,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "vvv" = ( /obj/structure/cargo_container/kelland/left{ pixel_x = 4; @@ -24278,7 +24358,6 @@ dir = 6 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north, /turf/open/floor/prison, /area/taipei/maints/north) "vwH" = ( @@ -24289,7 +24368,7 @@ dir = 1 }, /turf/open/floor/carpet11_12/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "vwX" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -24301,8 +24380,8 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "vxs" = ( /turf/closed/shuttle/ert{ icon_state = "twe3" @@ -24337,7 +24416,7 @@ "vAE" = ( /obj/item/spacecash/c20, /turf/open/floor/light/broken, -/area/taipei/atrium/club) +/area/taipei/club) "vBq" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 1 @@ -24359,7 +24438,7 @@ light_power = .50 }, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "vBx" = ( /obj/structure/machinery/light/blue{ dir = 4 @@ -24449,7 +24528,7 @@ dir = 1 }, /turf/open/floor/corsat/marked, -/area/taipei/atrium/club) +/area/taipei/club) "vDl" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -24484,11 +24563,14 @@ }, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) +"vEr" = ( +/turf/closed/wall/biodome) "vEU" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/cargo) "vFc" = ( @@ -24499,7 +24581,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "vFI" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 30 @@ -24510,7 +24592,7 @@ "vGe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkred2, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "vGr" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -24518,7 +24600,6 @@ /obj/structure/cable/heavyduty{ icon_state = "node" }, -/obj/structure/machinery/power/apc/power/south, /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, @@ -24556,7 +24637,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "vIE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet5_1/west, @@ -24572,7 +24653,7 @@ light_power = .25 }, /turf/open/floor/carpet11_12/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "vJq" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -24594,7 +24675,6 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/obj/structure/machinery/power/apc/power/north, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/north) "vKR" = ( @@ -24613,7 +24693,7 @@ /obj/item/spacecash/c10, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "vME" = ( /obj/structure/noticeboard{ pixel_y = 32 @@ -24824,7 +24904,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "vTd" = ( /obj/structure/barricade/handrail/kutjevo{ dir = 8 @@ -24852,7 +24932,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/carpet13_5/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "vUm" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 8 @@ -24928,7 +25008,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "vZD" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/corsat/marked, @@ -24963,7 +25043,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "wbN" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -24988,6 +25068,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/edge/smooth/endcap_left/west, /area/taipei/hangar/cargoshuttle) +"wcn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/taipei/atrium/hotel) "wcS" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -25134,6 +25218,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/kitchen, /area/taipei/atrium/restaurant) +"wfD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/asteroidfloor/north, +/area/taipei/hangar) "wfQ" = ( /obj/structure/cargo_container/arious/rightmid, /obj/structure/prop/invuln/lattice_prop{ @@ -25269,7 +25358,7 @@ pixel_x = -5 }, /turf/open/floor/prison/bluecorner/north, -/area/taipei/atrium/club) +/area/taipei/club) "wkA" = ( /obj/structure/phone_base{ dir = 1 @@ -25280,7 +25369,7 @@ /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/chem_dispenser/soda, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "wly" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -25423,7 +25512,7 @@ "wuw" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet14_10/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "wuF" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -25447,7 +25536,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "wwD" = ( /obj/structure/platform/kutjevo/smooth{ luminosity = 15 @@ -25465,7 +25554,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "wxB" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -25526,7 +25615,7 @@ /area/taipei/hangar/cargoshuttle) "wAj" = ( /turf/open/floor/prison/darkredcorners2/east, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "wAm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/overhead_pipe{ @@ -25639,7 +25728,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "wFN" = ( /obj/structure/stairs/perspective{ dir = 8 @@ -25725,7 +25814,7 @@ /obj/structure/machinery/chem_dispenser/soda, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "wJI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/lattice_prop{ @@ -25868,7 +25957,7 @@ /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredcorners2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "wUA" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/tan/alt_edge/northwest, @@ -25898,7 +25987,7 @@ "wVX" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "wWa" = ( /obj/structure/machinery/light{ dir = 8 @@ -25912,7 +26001,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "wWp" = ( /obj/structure/machinery/door/poddoor/shutters/almayer, /obj/effect/decal/cleanable/dirt, @@ -25950,7 +26039,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet11_12/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "wXh" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -25993,8 +26082,8 @@ pixel_x = -16; pixel_y = 24 }, -/turf/open/gm/empty, -/area/taipei/reactor) +/turf/open/void, +/area/taipei/reactor/chamber) "wYi" = ( /obj/structure/machinery/disposal{ density = 0; @@ -26014,6 +26103,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor, /area/taipei/atrium) +"wYE" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open, +/turf/open/floor/kutjevo, +/area/taipei/atrium/medbay) "wZw" = ( /obj/item/spacecash/c10{ pixel_y = 4; @@ -26021,7 +26114,7 @@ }, /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "wZZ" = ( /obj/structure/bed/sofa/vert/white/bot, /turf/open/floor/plating/asteroidfloor, @@ -26065,12 +26158,12 @@ "xaP" = ( /obj/structure/curtain/red, /turf/open/floor/carpet7_3/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "xbd" = ( /obj/structure/pipes/vents/scrubber, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/taipei/atrium/club) +/area/taipei/club) "xck" = ( /obj/structure/machinery/door/window/brigdoor/southleft, /obj/effect/decal/cleanable/dirt, @@ -26116,7 +26209,7 @@ }, /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "xeN" = ( /obj/structure/machinery/door/poddoor/almayer/locked, /obj/structure/blocker/forcefield/human, @@ -26169,7 +26262,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/prison/blue/east, -/area/taipei/atrium/club) +/area/taipei/club) "xgS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -26228,7 +26321,7 @@ "xiK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/southwest, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "xiT" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -26285,7 +26378,7 @@ "xjG" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/light/broken, -/area/taipei/atrium/club) +/area/taipei/club) "xjW" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, @@ -26317,9 +26410,7 @@ /turf/open/floor/kutjevo/colors/red/edge, /area/taipei/cmb) "xlJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Visitor Entrance" - }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, /obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/whitered{ dir = 1 @@ -26383,7 +26474,7 @@ /turf/open/floor/prison/chapel_carpet, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "xou" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -26455,7 +26546,7 @@ /obj/item/trash/cigbutt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bluecorner/east, -/area/taipei/atrium/club) +/area/taipei/club) "xrQ" = ( /obj/structure/surface/table, /obj/structure/prop/invuln/overhead_pipe{ @@ -26472,7 +26563,7 @@ "xsp" = ( /obj/structure/surface/table/almayer, /turf/open/floor/prison/darkbrowncorners2/southwest, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "xsr" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -26498,7 +26589,7 @@ /turf/open/floor/prison/chapel_carpet/doubleside/north, /turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "xtP" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -26525,7 +26616,7 @@ "xuJ" = ( /obj/structure/sign/poster/blacklight, /turf/closed/wall/almayer, -/area/taipei/atrium/club) +/area/taipei/club) "xvJ" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -26564,7 +26655,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/closed/wall/almayer, -/area/taipei/atrium/club) +/area/taipei/club) "xwt" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 30 @@ -26792,7 +26883,7 @@ /obj/structure/machinery/door/poddoor/shutters/almayer/open, /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "xDs" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -26909,7 +27000,7 @@ /obj/effect/decal/strata_decals/grime/grime2, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "xJr" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -26925,6 +27016,7 @@ /area/taipei/maints/north) "xJD" = ( /obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/open/floor/kutjevo/tan, /area/taipei/atrium/offices) "xJK" = ( @@ -27009,7 +27101,7 @@ dir = 8 }, /turf/open/floor/prison/darkredcorners2/north, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "xOK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair{ @@ -27161,7 +27253,7 @@ light_power = .50 }, /turf/open/floor/plating/asteroidfloor/north, -/area/taipei/reactor) +/area/taipei/reactor/chamber) "xUP" = ( /obj/structure/machinery/computer/shuttle/ert/broken, /obj/structure/blocker/invisible_wall, @@ -27395,7 +27487,7 @@ dir = 8 }, /turf/open/floor/prison/bluecorner, -/area/taipei/atrium/club) +/area/taipei/club) "yfC" = ( /obj/structure/pipes/vents, /obj/effect/decal/cleanable/dirt, @@ -27457,11 +27549,12 @@ dir = 8 }, /turf/open/floor/carpet5_1/west, -/area/taipei/atrium/theatre) +/area/taipei/theatre) "yiF" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/cargo) "yja" = ( @@ -27485,10 +27578,9 @@ "yjz" = ( /obj/item/spacecash/c20, /turf/open/floor/light{ - light_color = #00008B; - light_power = .5 + light_color = "#38a9fd" }, -/area/taipei/atrium/club) +/area/taipei/club) "yjJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -27498,6 +27590,11 @@ pixel_y = 1 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -1 + }, /turf/open/floor/prison, /area/taipei/cargo) "yjZ" = ( @@ -35532,7 +35629,7 @@ fdU fnB fnB xJD -bej +kEu kzi kzi cEr @@ -35957,7 +36054,7 @@ kRV vSl mTi bXl -gCt +wYE sdS wrB nCN @@ -36138,7 +36235,7 @@ cuq cKu uaq uaq -bej +kEu bej bej cEr @@ -37899,12 +37996,12 @@ iQr iQr iQr iQr -ltx -ltx -ltx +yhR +yhR +yhR nxk -ltx -ltx +yhR +yhR iQr iQr iQr @@ -38101,14 +38198,14 @@ tkR tkR tkR tkR -tkR +yhR ffX -wJp -wJp -wJp +tCd +tCd +tCd bcJ -tkR -tkR +yhR +yhR iQr iQr iQr @@ -38296,22 +38393,22 @@ tkR tkR tkR tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua bkG acu hVi acu -bfm +lqR xUk -wJp -tkR -tkR +tCd +yhR +yhR iQr iQr iQr @@ -38495,26 +38592,26 @@ iQr tkR tkR tkR -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua sPB lxH lxH jem hVi hVi -wJp -bfm -tkR -tkR +tCd +lqR +yhR +yhR iQr iQr iQr @@ -38695,29 +38792,29 @@ iQr iQr tkR tkR -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua lfN wXY acu -vzG -wJp -tkR -tkR +sYq +tCd +yhR +yhR iQr iQr iQr @@ -38896,30 +38993,30 @@ iQr iQr tkR tkR -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua pMK jem hVi -wJp -wJp -tkR +tCd +tCd +yhR iQr iQr iQr @@ -39097,32 +39194,32 @@ iQr iQr iQr tkR -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua egf mMG sPB jem -wJp +tCd kHO -tkR -tkR +yhR +yhR iQr iQr iQr @@ -39156,7 +39253,7 @@ iQr lGZ lRT aqL -hrp +xBP vQx uvp wuF @@ -39299,32 +39396,32 @@ iQr iQr tkR tkR -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua qZd -pOK +gua bkG acu -vzG +sYq bcJ -tkR +yhR iQr iQr iQr @@ -39402,7 +39499,7 @@ fnG mBI vim dtY -jvg +lEC bzQ dvy bzQ @@ -39500,33 +39597,33 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua bGR dEt feF -pOK -pOK +gua +gua rgI rHV lLn luj jem -wJp -wJp -tkR +tCd +tCd +yhR yhR yhR yhR @@ -39702,32 +39799,32 @@ iQr iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua pMJ -pOK +gua pMJ -pOK -pOK +gua +gua mfT dem -pOK -pOK +gua +gua bkG nUg -vzG +sYq yhR yhR sLp @@ -39904,29 +40001,29 @@ iQr iQr tkR tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua hfD -pOK -pOK +gua +gua bkG vIr vcm @@ -40105,30 +40202,30 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua egf mMG -pOK -pOK +gua +gua sPB jem itw @@ -40307,34 +40404,34 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua clj dCp -nLW -nLW -hRn +gua +gua +dwY mrU -pOK -pOK -pOK -pOK +gua +gua +gua +gua mMG -pOK -pOK -pOK +gua +gua +gua bkG cGF -cHI +pxr bwN ceo ehP @@ -40348,7 +40445,7 @@ wJp tau hKJ gje -vUH +utQ vQx vQx aNh @@ -40509,22 +40606,22 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua clj clj -cjq -qXz -nLW +gua +ans +gua dwY qan eZv @@ -40536,7 +40633,7 @@ lLn lLn bkG itw -cHI +pxr mlF frf ehP @@ -40711,17 +40808,17 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua clj dCp gua @@ -40731,14 +40828,14 @@ ans pbt tTn tVc -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua bkG itw -cHI +pxr kgq njf ehP @@ -40751,7 +40848,7 @@ wJp wJp xeN blu -wBC +jTh vQx jOE bNd @@ -40913,17 +41010,17 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua dXb dXb gua @@ -40940,7 +41037,7 @@ tDQ tDQ sen itw -cHI +pxr kgq njf ehP @@ -41115,36 +41212,36 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua dXb lXo -cjq -qXz -nLW +gua +ans +gua rms fbc nkR -pOK +gua egf hfD kqo -pOK -pOK +gua +gua bkG cGF -cHI +pxr equ -njf +seS ehP sCY kYI @@ -41317,34 +41414,34 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua dXb dXb -nLW -nLW -hRn +gua +gua +dwY nbW -pOK -pOK -pOK -pOK +gua +gua +gua +gua mMG -pOK -pOK -pOK +gua +gua +gua bkG cGF -cHI +pxr rTe ygF ehP @@ -41519,34 +41616,34 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua egf mMG -pOK -pOK +gua +gua awf rIm itw -cHI +pxr vDb nrm eys @@ -41722,29 +41819,29 @@ iQr iQr tkR tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua qZd -pOK -pOK +gua +gua bkG xJn lWe @@ -41827,14 +41924,14 @@ sjQ sjQ kmf sjQ -tuY -tuY -tuY -tuY -tuY -tuY -tuY -tuY +bwE +bwE +bwE +bwE +bwE +bwE +bwE +bwE uwC kQD bEU @@ -41924,32 +42021,32 @@ iQr iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua bGR dEt feF -pOK -pOK +gua +gua rgI rHV lLn lLn bkG dJx -vzG +sYq yhR yhR lZU @@ -41957,8 +42054,8 @@ qjY kYI yhR yhR -tuY -tuY +oEr +oEr aqL aqL aqL @@ -42059,18 +42156,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -42126,33 +42223,33 @@ apD iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua pMJ -pOK +gua pMJ -pOK -pOK +gua +gua mfT dem -pOK +gua awf rIm -wJp -vzG -tkR +tCd +sYq +yhR yhR sXD sGs @@ -42225,7 +42322,7 @@ ejY cEB jIA hDM -utK +nkF aKV gbt lgm @@ -42261,18 +42358,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -42329,30 +42426,30 @@ iQr iQr tkR tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua hfD -pOK +gua bkG rOz -wJp +tCd opt yhR cqH @@ -42428,7 +42525,7 @@ cEB ryw kRY gHA -cEB +mfA pic aej uoV @@ -42463,18 +42560,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -42531,31 +42628,31 @@ iQr iQr iQr tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua egf mMG awf rIm -wJp +tCd pQW -tkR +yhR yhR tkR kYI @@ -42629,7 +42726,7 @@ vcZ cEB cEB hDM -vcZ +vhw vcZ gbt kJO @@ -42665,18 +42762,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -42734,30 +42831,30 @@ iQr iQr tkR tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua kzK rIm -wJp -wJp -wJp -tkR +tCd +tCd +tCd +yhR iQr yhR yhR @@ -42867,18 +42964,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -42937,29 +43034,29 @@ iQr iQr tkR tkR -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua awf jvB uJs -bfm -bfm -wJp -tkR -tkR +lqR +lqR +tCd +yhR +yhR iQr iQr iQr @@ -43053,7 +43150,7 @@ dbC uot doI uot -fzp +jxb qgs rrU lQJ @@ -43069,18 +43166,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -43141,26 +43238,26 @@ iQr tkR tkR tkR -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua +gua +gua +gua awf fRl fRl -rIm -bfm -wJp -vzG -wJp -tkR -tkR +eWE +lqR +tCd +sYq +tCd +yhR +yhR iQr iQr iQr @@ -43271,18 +43368,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -43346,22 +43443,22 @@ tkR tkR tkR tkR -gEA -pOK -pOK -pOK -pOK -pOK -pOK +gua +gua +gua +gua +gua +gua +gua bkG -bfm -bfm -bfm -wJp +lqR +lqR +lqR +tCd dJX -wJp -tkR -tkR +tCd +yhR +yhR iQr iQr iQr @@ -43473,18 +43570,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -43555,14 +43652,14 @@ tkR tkR tkR tkR -tkR +yhR unn -vzG -vzG -wJp -tkR -tkR -tkR +sYq +sYq +tCd +yhR +yhR +yhR iQr iQr iQr @@ -43675,18 +43772,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -43757,12 +43854,12 @@ iQr iQr iQr iQr -tkR -tkR -tkR -eWE -tkR -tkR +yhR +yhR +yhR +nxk +yhR +yhR iQr iQr iQr @@ -43877,10 +43974,6 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY tuY tuY @@ -43888,7 +43981,11 @@ tuY tuY tuY tuY -pjr +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -44079,18 +44176,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -44281,18 +44378,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -44448,7 +44545,7 @@ qqj cEB jeM xiV -gbt +ttc gbt wuw try @@ -44483,18 +44580,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -44650,7 +44747,7 @@ ttc ttc ttc ttc -gbt +ttc gbt wuw ixH @@ -44685,18 +44782,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -44887,10 +44984,6 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY tuY tuY @@ -44898,7 +44991,11 @@ tuY tuY tuY tuY -pjr +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -45089,18 +45186,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr tuY -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -45291,18 +45388,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr tuY -pjr -pjr tuY -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -45493,18 +45590,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr tuY tuY tuY -pjr -pjr tuY -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -45695,18 +45792,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr tuY tuY tuY -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -45897,18 +45994,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -46099,18 +46196,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr tuY tuY tuY tuY tuY -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -46301,18 +46398,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr tuY -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -46412,7 +46509,7 @@ vQx jOE nOk xDs -aqL +bVs bVs bVs bVs @@ -46503,18 +46600,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr -pjr -pjr tuY -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -46614,7 +46711,7 @@ vQx jOE amB xDs -aqL +bVs qJh iif bJY @@ -46685,7 +46782,7 @@ mgb cUe rrE xYs -cUh +mpN uot doI uot @@ -46705,18 +46802,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr tuY -pjr -pjr -pjr tuY -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -46816,7 +46913,7 @@ alr jEe qSj pnr -lGZ +pbd liI qNy rqN @@ -46907,18 +47004,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -47018,7 +47115,7 @@ vQx jrf amB foW -aqL +bVs deH eNX iPe @@ -47074,20 +47171,20 @@ tuY tuY tuY tuY -gbt +vEr sjQ sjQ joa sjQ -tuY -tuY -tuY -tuY -tuY -tuY -tuY -tuY -tuY +bwE +bwE +bwE +bwE +bwE +bwE +bwE +bwE +bwE uot iaN uot @@ -47109,18 +47206,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -47220,7 +47317,7 @@ vQx lng amB xDs -aqL +bVs bVs bVs bVs @@ -47311,18 +47408,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -47513,18 +47610,18 @@ iQr iQr iQr iQr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr -pjr +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +tuY pjr pjr pjr @@ -48230,7 +48327,7 @@ vQx jOE amB lmv -aqL +bVs bVs bVs bVs @@ -48436,7 +48533,7 @@ eYD qDd oMS uUW -aIC +byz aIC foW tYd @@ -48638,7 +48735,7 @@ kCg klI wAI moK -jEX +klC ltG ouF iDf @@ -48853,7 +48950,7 @@ vBs wls eDc aTL -wwN +uiE bVs iQr iQr @@ -49302,10 +49399,10 @@ aOi gKn gKn hDR -ogc +jvg ces eZE -jZK +uQf hYm iJD iJD @@ -49646,7 +49743,7 @@ tcp sjh sjh bFJ -sjh +kZf xKO rdf bFJ @@ -49916,7 +50013,7 @@ gKn gKn lfa iJD -ltx +qky iQr iQr iQr @@ -50049,7 +50146,7 @@ fDw vbr mDD mDD -mDD +hAl mDD mDD ook @@ -50078,7 +50175,7 @@ pWD fuE iQr iQr -ltx +brZ brZ oAr eOl @@ -50094,7 +50191,7 @@ eOl eOl jEW bQM -ltx +brZ iQr iQr iQr @@ -50118,7 +50215,7 @@ gKn gKn xpT iJD -ltx +qky iQr iQr iQr @@ -50280,7 +50377,7 @@ fuE iQr iQr iQr -ltx +brZ brZ pPz oAr @@ -50296,7 +50393,7 @@ nZZ uTb pPz brZ -ltx +brZ iQr iQr iQr @@ -50320,7 +50417,7 @@ eoO jZK iJD iJD -ltx +qky iQr iQr iQr @@ -50482,7 +50579,7 @@ iQr iQr iQr iQr -ltx +brZ brZ oAr jEW @@ -50498,7 +50595,7 @@ eOl jEW jEW brZ -ltx +brZ iQr iQr iQr @@ -50521,8 +50618,8 @@ eoO gKn ogc iJD -ltx -ltx +qky +qky iQr iQr iQr @@ -50684,7 +50781,7 @@ iQr iQr iQr iQr -ltx +brZ pPz oAr eOl @@ -50700,7 +50797,7 @@ eOl eOl jEW pPz -ltx +brZ iQr iQr iQr @@ -50719,11 +50816,11 @@ hDR hsj hYm eZE -ogc +cUh ces iJD iJD -ltx +qky iQr iQr iQr @@ -50886,7 +50983,7 @@ iQr iQr iQr iQr -ltx +brZ pPz jEW nZZ @@ -50902,7 +50999,7 @@ jEW eOl eOl pPz -ltx +brZ iQr iQr iQr @@ -50924,8 +51021,8 @@ iJD bwz bwz iJD -ltx -ltx +qky +qky iQr iQr iQr @@ -51088,7 +51185,7 @@ iQr iQr iQr iQr -ltx +brZ eCz oAr jEW @@ -51104,7 +51201,7 @@ jEW eOl jEW eCz -ltx +brZ iQr iQr iQr @@ -51125,8 +51222,8 @@ dov kin koZ iJD -ltx -ltx +qky +qky iQr iQr iQr @@ -51290,7 +51387,7 @@ iQr iQr iQr iQr -ltx +brZ brZ bQM amQ @@ -51306,7 +51403,7 @@ jEW iXB bQM urd -ltx +brZ iQr iQr iQr @@ -51327,7 +51424,7 @@ aQg bwz fWG iJD -ltx +qky iQr iQr iQr @@ -51492,7 +51589,7 @@ iQr iQr iQr iQr -ltx +brZ pPz jEW jEW @@ -51508,7 +51605,7 @@ jEW jEW jEW pPz -ltx +brZ iQr iQr iQr @@ -51529,7 +51626,7 @@ iJD iJD iJD iJD -ltx +qky iQr iQr iQr @@ -51694,7 +51791,7 @@ iQr iQr iQr iQr -ltx +brZ pPz ifL ihA @@ -51710,7 +51807,7 @@ ihA rhs dij pPz -ltx +brZ iQr iQr iQr @@ -51731,7 +51828,7 @@ dov fql koZ iJD -ltx +qky iQr iQr iQr @@ -51875,12 +51972,12 @@ joE eAs pfy hnP -kDQ +mtx kDG mtx kDG jhe -kDG +qXz wmR kDG wmR @@ -51896,7 +51993,7 @@ iQr iQr iQr iQr -ltx +brZ gjh yfb oNt @@ -51912,7 +52009,7 @@ dtZ oNt bVt pPz -ltx +brZ iQr iQr iQr @@ -51933,7 +52030,7 @@ mnA bwz xBS iJD -ltx +qky iQr iQr iQr @@ -52076,17 +52173,17 @@ iQr joE olB wsx -ovS -eAu -eAu -eAu +pOK +pOK +pOK +pOK jal aEq -caH -caH -caH -caH -pzh +pOK +pOK +pOK +pOK +jal iOi nCX joE @@ -52098,7 +52195,7 @@ iQr iQr iQr iQr -ltx +brZ gjh oNt dtZ @@ -52114,7 +52211,7 @@ oNt oNt jEW eCz -ltx +brZ iQr iQr iQr @@ -52135,7 +52232,7 @@ bwz iJD bwz iJD -ltx +qky iQr iQr iQr @@ -52278,17 +52375,17 @@ iQr joE ruS mMx -ovS -eAu -eAu -eAu -eAu +pOK +pOK +pOK +pOK +pOK aEq -caH -caH -caH -caH -gAi +pOK +pOK +pOK +pOK +pOK iOi ruS joE @@ -52300,7 +52397,7 @@ iQr iQr iQr iQr -ltx +brZ gjh dtZ qvZ @@ -52316,7 +52413,7 @@ oNt qvZ oAr pPz -ltx +brZ iQr iQr iQr @@ -52337,7 +52434,7 @@ dov kin koZ iJD -ltx +qky iQr iQr iQr @@ -52480,17 +52577,17 @@ iQr joE ruS mMx -ovS -eAu -eAu -eAu -eAu +pOK +pOK +pOK +pOK +pOK aEq -caH -caH -caH -caH -gAi +pOK +pOK +pOK +pOK +pOK aYq oyv joE @@ -52502,7 +52599,7 @@ iQr iQr iQr iQr -tyZ +bQM eCz lQQ lQQ @@ -52518,7 +52615,7 @@ eXw eXw jEU pPz -ltx +brZ iQr iQr iQr @@ -52539,7 +52636,7 @@ mnA bwz bGo iJD -ltx +qky iQr iQr iQr @@ -52682,17 +52779,17 @@ iQr joE ruS mMx -ovS -eAu -eAu -eAu -eAu +pOK +pOK +pOK +pOK +pOK aEq -caH -caH -caH -caH -gAi +pOK +pOK +pOK +pOK +pOK tUg qrl joE @@ -52704,7 +52801,7 @@ iQr iQr iQr iQr -tyZ +bQM eCz xEO xEO @@ -52720,7 +52817,7 @@ xEO awh nsc pPz -ltx +brZ iQr iQr iQr @@ -52741,7 +52838,7 @@ vgg bwz iJD iJD -ltx +qky iQr iQr iQr @@ -52884,17 +52981,17 @@ iQr joE ruS mMx -ovS -eAu -eAu -eAu -eAu +pOK +pOK +pOK +pOK +pOK aEq -caH -caH -caH -caH -gAi +pOK +pOK +pOK +pOK +pOK tUg oyv joE @@ -52906,7 +53003,7 @@ iQr iQr iQr iQr -ltx +brZ eCz dtZ dtZ @@ -52922,7 +53019,7 @@ dtZ oNt jEW pPz -ltx +brZ iQr iQr iQr @@ -52943,7 +53040,7 @@ dov fql aON iJD -ltx +qky iQr iQr iQr @@ -53086,7 +53183,7 @@ joE ajs wxB hZU -rAv +nkd nkd nkd nkd @@ -53108,7 +53205,7 @@ iQr iQr iQr iQr -ltx +brZ pPz oNt oNt @@ -53124,7 +53221,7 @@ qvZ oNt eOl pPz -ltx +brZ iQr iQr iQr @@ -53145,7 +53242,7 @@ tgu iJD bGo bwz -ltx +qky iQr iQr iQr @@ -53288,13 +53385,13 @@ joE wIz uqp jOB -avR isO isO isO -jOB isO jOB +kDQ +jOB isO isO isO @@ -53310,7 +53407,7 @@ iQr iQr iQr iQr -ltx +brZ eCz pEQ ihA @@ -53326,7 +53423,7 @@ rhs ihA adM pPz -ltx +brZ iQr iQr iQr @@ -53347,7 +53444,7 @@ vgg iJD bwz bwz -tyZ +wcn iQr iQr iQr @@ -53491,12 +53588,12 @@ isO dVp mow dXn -obk +yiF yiF yiF vEU fVD -vEU +rAv vEU vEU yiF @@ -53512,7 +53609,7 @@ iQr iQr iQr iQr -tyZ +bQM pPz jEW oAr @@ -53528,7 +53625,7 @@ jEW nZZ jEW eCz -ltx +brZ iQr iQr iQr @@ -53549,7 +53646,7 @@ iLJ kin knT iJD -ltx +qky iQr iQr iQr @@ -53714,7 +53811,7 @@ iQr iQr iQr iQr -tyZ +bQM bQM urd tGI @@ -53730,7 +53827,7 @@ wYs wwD urd brZ -ltx +brZ iQr iQr iQr @@ -53751,7 +53848,7 @@ tgu bwz bGo iJD -ltx +qky iQr iQr iQr @@ -53916,7 +54013,7 @@ iQr iQr iQr iQr -tyZ +bQM eCz qMW ulA @@ -53932,7 +54029,7 @@ oTa oYd alc pPz -ltx +brZ iQr iQr iQr @@ -53953,7 +54050,7 @@ iJD bwz bwz iJD -ltx +qky iQr iQr iQr @@ -54118,7 +54215,7 @@ iQr iQr iQr iQr -ltx +brZ pPz jEW eOl @@ -54134,7 +54231,7 @@ aLB jEW jEW eCz -ltx +brZ iQr iQr iQr @@ -54155,7 +54252,7 @@ dov kin koZ iJD -ltx +qky iQr iQr iQr @@ -54302,9 +54399,9 @@ wfu pdA fmQ pdA -fmQ +ovS fer -fmQ +ovS pCX fmQ fmQ @@ -54320,7 +54417,7 @@ iQr iQr iQr iQr -ltx +brZ pPz eOl jEW @@ -54336,7 +54433,7 @@ eOl jEW jEW eCz -ltx +brZ iQr iQr iQr @@ -54357,7 +54454,7 @@ aQg bwz fWG iJD -ltx +qky iQr iQr iQr @@ -54522,7 +54619,7 @@ iQr iQr iQr iQr -ltx +brZ pPz jEW oAr @@ -54538,7 +54635,7 @@ jEW eOl oAr pPz -ltx +brZ iQr iQr iQr @@ -54559,7 +54656,7 @@ bwz iJD iJD iJD -ltx +qky iQr iQr iQr @@ -55731,7 +55828,7 @@ iQr iQr iQr aqL -kEu +hsW gvH oty nZf @@ -55753,7 +55850,7 @@ igm nWK huQ bbQ -seS +iXI uot iQr iQr @@ -57362,7 +57459,7 @@ tPV cOS tPV emO -qtT +dxT nGI mpX qtT @@ -60134,7 +60231,7 @@ apD apD apD pew -aof +cPE xKG rqJ dNF @@ -61588,7 +61685,7 @@ rqJ rqJ sgE fLE -nvl +hrp pCy nvl mpR @@ -61782,7 +61879,7 @@ pOq flb krw itE -qoj +vkA xKG rqJ rqJ @@ -62592,7 +62689,7 @@ mPE dqM shQ xKG -rqJ +wfD rqJ aof rqJ From d48b84e44b01fc3eac7a54da0277667bf60b65c1 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Sat, 4 Jan 2025 00:38:55 +0300 Subject: [PATCH 08/15] Delete Taipei_Station.json --- maps/Taipei_Station.json | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 maps/Taipei_Station.json diff --git a/maps/Taipei_Station.json b/maps/Taipei_Station.json deleted file mode 100644 index 88a3c1c48d7..00000000000 --- a/maps/Taipei_Station.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "map_name": "Taipei Way-Station", - "short_name": "Taipei Station", - "map_path": "map_files/taipei_station", - "map_file": "taipei_station.dmm", - "map_item_type": "/obj/item/map/taipei_map", - "traits": [{ "ground": true}], - "camouflage": "jungle", - "environment_traits": {}, - "announce_text": "Taipei Station, An unassuming waystation from the not-so-distant past of the colony-rush, now defunct.", - "gamemodes": [ - "Distress Signal", - "Hunter Games", - "Hive Wars", - "Faction Clash", - "Infection" - ] -} From d6951667b8c024295c19518f757eefcae916dc79 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Sat, 4 Jan 2025 00:40:23 +0300 Subject: [PATCH 09/15] Create taipei_station.json --- maps/taipei_station.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 maps/taipei_station.json diff --git a/maps/taipei_station.json b/maps/taipei_station.json new file mode 100644 index 00000000000..e79cc805302 --- /dev/null +++ b/maps/taipei_station.json @@ -0,0 +1,18 @@ +{ + "map_name": "Taipei Way-Station", + "short_name": "Taipei Station", + "map_path": "map_files/Taipei_Station", + "map_file": "Taipei_Station.dmm", + "map_item_type": "/obj/item/map/taipei_map", + "traits": [{ "ground": true}], + "camouflage": "jungle", + "environment_traits": {}, + "announce_text": "Taipei Station, An unassuming waystation from the not-so-distant past of the colony-rush, now defunct.", + "gamemodes": [ + "Distress Signal", + "Hunter Games", + "Hive Wars", + "Faction Clash", + "Infection" + ] +} From 6bcd4278a33d3410d841a486f21e79bac024c2eb Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Sat, 4 Jan 2025 00:46:07 +0300 Subject: [PATCH 10/15] Update Taipei_Station.dmm --- .../Taipei_Station/Taipei_Station.dmm | 74 +++++++++---------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/maps/map_files/Taipei_Station/Taipei_Station.dmm b/maps/map_files/Taipei_Station/Taipei_Station.dmm index 22be0062fef..49051727ff4 100644 --- a/maps/map_files/Taipei_Station/Taipei_Station.dmm +++ b/maps/map_files/Taipei_Station/Taipei_Station.dmm @@ -327,7 +327,7 @@ "aol" = ( /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /obj/structure/machinery/camera{ dir = 8 @@ -585,7 +585,7 @@ "aAh" = ( /obj/structure/machinery/light{ dir = 8; - light_power = .50 + light_power = 0.5 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/wood_broken4, @@ -1116,7 +1116,7 @@ "aZk" = ( /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -1535,7 +1535,7 @@ }, /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/strata/fake_wood, /area/taipei/atrium/offices) @@ -1547,7 +1547,7 @@ }, /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning/west, @@ -3487,7 +3487,7 @@ /obj/structure/surface/table, /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/strata/faux_wood, /area/taipei/atrium/hotel) @@ -4416,7 +4416,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/plating/asteroidfloor/north, /area/taipei/reactor/chamber) @@ -4530,7 +4530,7 @@ dir = 4; light_color = #00008B; pixel_x = 4; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/prison/blue{ dir = 8 @@ -6484,7 +6484,7 @@ "fvi" = ( /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/tan, @@ -6687,7 +6687,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/asteroidwarning/west, /area/taipei/maints/north) @@ -6836,7 +6836,7 @@ }, /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning/west, @@ -6870,7 +6870,7 @@ "fRb" = ( /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/plating/asteroidfloor/north, /area/taipei/hangar) @@ -7355,7 +7355,7 @@ "gqB" = ( /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroidfloor/north, @@ -8344,7 +8344,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/strata/faux_wood, /area/taipei/atrium/hotel) @@ -9475,7 +9475,7 @@ dir = 4; light_color = "#dae2ff"; pixel_x = 4; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/prison, /area/taipei/club) @@ -9971,7 +9971,7 @@ }, /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -10094,7 +10094,7 @@ }, /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/faux_wood, @@ -10559,7 +10559,7 @@ /obj/structure/surface/table, /obj/structure/machinery/light{ dir = 8; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/strata/faux_wood, /area/taipei/atrium/hotel) @@ -11749,7 +11749,7 @@ }, /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -11934,7 +11934,7 @@ "kHO" = ( /obj/structure/machinery/light{ brightness = 3; - light_power = .50 + light_power = 0.5 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -12106,7 +12106,7 @@ "kRG" = ( /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/plating/asteroidwarning/west, /area/taipei/reactor) @@ -12856,7 +12856,7 @@ }, /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/tan, @@ -16494,7 +16494,7 @@ "oMS" = ( /obj/structure/machinery/light{ dir = 8; - light_power = .50 + light_power = 0.5 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -17872,7 +17872,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ brightness = 3; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/plating/asteroidfloor/north, /area/taipei/reactor/chamber) @@ -18760,7 +18760,7 @@ dir = 4; light_color = #00008B; pixel_x = 4; - light_power = .50 + light_power = 0.5 }, /obj/structure/machinery/camera, /obj/structure/pipes/vents/scrubber, @@ -20032,7 +20032,7 @@ }, /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/asteroidwarning/west, /area/taipei/maints/south) @@ -22170,7 +22170,7 @@ "tqI" = ( /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -23721,7 +23721,7 @@ }, /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/kutjevo/colors/cyan/inner_corner/north, @@ -23744,7 +23744,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 8; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/strata/faux_wood, /area/taipei/atrium/hotel) @@ -23848,7 +23848,7 @@ "uVl" = ( /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -24155,7 +24155,7 @@ /obj/item/toy/desk/newtoncradle, /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/faux_wood, @@ -24435,7 +24435,7 @@ dir = 4; light_color = "#dae2ff"; pixel_x = 4; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/prison, /area/taipei/club) @@ -25303,7 +25303,7 @@ "wiw" = ( /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /obj/structure/machinery/door/window/ultra{ dir = 2 @@ -25452,7 +25452,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 8; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/plating/asteroidwarning/east, /area/taipei/reactor) @@ -26240,7 +26240,7 @@ "xfS" = ( /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/kutjevo/grey/plate, /area/taipei/cmb) @@ -26346,7 +26346,7 @@ "xiX" = ( /obj/structure/machinery/light{ dir = 4; - light_power = .50 + light_power = 0.5 }, /obj/structure/machinery/camera{ dir = 8 @@ -27250,7 +27250,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 8; - light_power = .50 + light_power = 0.5 }, /turf/open/floor/plating/asteroidfloor/north, /area/taipei/reactor/chamber) From f563322521d4232cad256f0bb40661ffff6492d7 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Sat, 4 Jan 2025 00:49:35 +0300 Subject: [PATCH 11/15] Update Taipei_Station.dmm --- maps/map_files/Taipei_Station/Taipei_Station.dmm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/maps/map_files/Taipei_Station/Taipei_Station.dmm b/maps/map_files/Taipei_Station/Taipei_Station.dmm index 49051727ff4..b8e8945bd08 100644 --- a/maps/map_files/Taipei_Station/Taipei_Station.dmm +++ b/maps/map_files/Taipei_Station/Taipei_Station.dmm @@ -2055,7 +2055,7 @@ /obj/item/trash/cigbutt/ucigbutt, /obj/structure/machinery/light/double/blue{ dir = 8; - light_color = #00008B; + light_color = "#00008B"; pixel_x = -5; light_power = .75 }, @@ -4528,7 +4528,7 @@ "dPk" = ( /obj/structure/machinery/light/double/blue{ dir = 4; - light_color = #00008B; + light_color = "#00008B"; pixel_x = 4; light_power = 0.5 }, @@ -8472,7 +8472,7 @@ /obj/item/ashtray/glass, /obj/structure/machinery/light/double/blue{ dir = 8; - light_color = #00008B; + light_color = "#00008B"; pixel_x = -5; light_power = .75 }, @@ -18758,7 +18758,7 @@ "qHf" = ( /obj/structure/machinery/light/double/blue{ dir = 4; - light_color = #00008B; + light_color = "#00008B"; pixel_x = 4; light_power = 0.5 }, @@ -25036,7 +25036,7 @@ /obj/item/reagent_container/food/drinks/cans/beer, /obj/structure/machinery/light/double/blue{ dir = 8; - light_color = #00008B; + light_color = "#00008B"; pixel_x = -5; light_power = .75 }, From ac7cf90c95cfa03f6a1c2dec4f5d5fe67ef6d0b3 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Sat, 4 Jan 2025 00:53:39 +0300 Subject: [PATCH 12/15] Update Taipei_Station.dmm --- maps/map_files/Taipei_Station/Taipei_Station.dmm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/maps/map_files/Taipei_Station/Taipei_Station.dmm b/maps/map_files/Taipei_Station/Taipei_Station.dmm index b8e8945bd08..f3590fc8923 100644 --- a/maps/map_files/Taipei_Station/Taipei_Station.dmm +++ b/maps/map_files/Taipei_Station/Taipei_Station.dmm @@ -2057,7 +2057,7 @@ dir = 8; light_color = "#00008B"; pixel_x = -5; - light_power = .75 + light_power = 0.75 }, /turf/open/floor/prison/blue/east, /area/taipei/club) @@ -8474,7 +8474,7 @@ dir = 8; light_color = "#00008B"; pixel_x = -5; - light_power = .75 + light_power = 0.75 }, /turf/open/floor/prison/blue/east, /area/taipei/club) @@ -25038,7 +25038,7 @@ dir = 8; light_color = "#00008B"; pixel_x = -5; - light_power = .75 + light_power = 0.75 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, From 3f1145b02edcb52610ba72a9a24588526738115a Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Sat, 4 Jan 2025 00:58:57 +0300 Subject: [PATCH 13/15] Update Taipei_Station.dmm --- maps/map_files/Taipei_Station/Taipei_Station.dmm | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/maps/map_files/Taipei_Station/Taipei_Station.dmm b/maps/map_files/Taipei_Station/Taipei_Station.dmm index f3590fc8923..bc0338fd786 100644 --- a/maps/map_files/Taipei_Station/Taipei_Station.dmm +++ b/maps/map_files/Taipei_Station/Taipei_Station.dmm @@ -11943,12 +11943,6 @@ "kJO" = ( /turf/open/floor/carpet14_10/west, /area/taipei/theatre) -"kKt" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/auto_turf/strata_grass/layer1{ - light_range = . - }, -/area/taipei/atrium) "kKS" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -43114,7 +43108,7 @@ aWF nIY sIl iQS -kKt +mSG eAp dxP jEW From e4059379608d828d62a6ea50753332053a91ab5d Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Sat, 4 Jan 2025 01:03:15 +0300 Subject: [PATCH 14/15] Update Taipei_Station.dmm --- maps/map_files/Taipei_Station/Taipei_Station.dmm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maps/map_files/Taipei_Station/Taipei_Station.dmm b/maps/map_files/Taipei_Station/Taipei_Station.dmm index bc0338fd786..de877d7c7f8 100644 --- a/maps/map_files/Taipei_Station/Taipei_Station.dmm +++ b/maps/map_files/Taipei_Station/Taipei_Station.dmm @@ -14343,7 +14343,7 @@ pixel_y = 16 }, /obj/structure/surface/table/almayer{ - color = #96918c + color = "#96918c" }, /obj/structure/machinery/light/spot{ dir = 1 From f33cf2aa51b7c9176e5d43c30427ec9efb041813 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Sat, 4 Jan 2025 01:16:09 +0300 Subject: [PATCH 15/15] lagonoob --- .../Taipei_Station/Taipei_Station.dmm | 276 ++++-------------- 1 file changed, 50 insertions(+), 226 deletions(-) diff --git a/maps/map_files/Taipei_Station/Taipei_Station.dmm b/maps/map_files/Taipei_Station/Taipei_Station.dmm index de877d7c7f8..3cf6b2f0230 100644 --- a/maps/map_files/Taipei_Station/Taipei_Station.dmm +++ b/maps/map_files/Taipei_Station/Taipei_Station.dmm @@ -250,9 +250,6 @@ light_on = 1 }, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/prison/chapel_carpet, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "alc" = ( /obj/structure/platform/kutjevo/smooth{ @@ -1193,8 +1190,6 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "bbQ" = ( /obj/structure/barricade/handrail/strata{ @@ -2903,7 +2898,6 @@ pixel_x = 9 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/north) "cuo" = ( @@ -2977,8 +2971,6 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "cyC" = ( /obj/structure/bed/chair/comfy{ @@ -3376,7 +3368,6 @@ /area/taipei/hangar/cargoshuttle) "cPL" = ( /obj/structure/surface/table/almayer, -/obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 8; pixel_y = 3 @@ -3584,9 +3575,6 @@ light_range = 5; light_on = 1 }, -/turf/open/floor/prison/chapel_carpet, -/turf/open/floor/prison/chapel_carpet, -/turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "dap" = ( @@ -5042,7 +5030,6 @@ pixel_y = 24 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/north) "ejA" = ( @@ -5647,15 +5634,6 @@ dir = 4 }, /area/taipei/atrium/restaurant) -"eMt" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk, -/turf/open/floor/plating/plating_catwalk/prison, -/area/taipei/maints/south) "eNI" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/kitchen, @@ -6347,17 +6325,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/cmo, /area/taipei/atrium/hotel) -"fqw" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/turf/open/floor/plating/plating_catwalk/prison, -/area/taipei/maints/south) "fqy" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -6730,7 +6697,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) "fMR" = ( @@ -7507,22 +7473,6 @@ "gvH" = ( /turf/open/void, /area/taipei/maints/north) -"gwB" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/turf/open/floor/plating/plating_catwalk/prison, -/area/taipei/maints/south) "gxp" = ( /obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/dirt, @@ -7676,8 +7626,6 @@ /obj/structure/barricade/handrail/kutjevo, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/chapel_carpet, -/turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "gHA" = ( @@ -7775,7 +7723,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) "gLk" = ( @@ -8070,7 +8017,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) "hec" = ( @@ -8205,9 +8151,6 @@ /area/taipei/atrium) "hlR" = ( /obj/structure/barricade/handrail/kutjevo, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "hmJ" = ( @@ -8587,7 +8530,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) "hDo" = ( @@ -10312,7 +10254,6 @@ icon_state = "1-2" }, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) "jgX" = ( @@ -10626,19 +10567,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/strata_grass/layer1, /area/taipei/atrium) -"jym" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform/kutjevo/smooth{ - light_power = 2; - light_range = 5; - light_on = 1 - }, -/turf/open/floor/prison/chapel_carpet, -/turf/open/floor/prison/chapel_carpet, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/theatre) "jyx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -10675,8 +10603,6 @@ /obj/structure/barricade/handrail/kutjevo, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "jAx" = ( /obj/structure/platform{ @@ -10728,14 +10654,6 @@ }, /turf/open/floor/corsat/marked, /area/taipei/cargo) -"jCm" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk, -/turf/open/floor/plating/plating_catwalk/prison, -/area/taipei/maints/south) "jCt" = ( /obj/structure/bed/chair/comfy{ dir = 1; @@ -10765,12 +10683,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet13_5/west, /area/taipei/theatre) -"jEJ" = ( -/obj/structure/barricade/handrail/kutjevo, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/theatre) "jEM" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -10950,7 +10862,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) "jNj" = ( @@ -11223,7 +11134,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) "kcX" = ( @@ -14178,8 +14088,6 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "mGh" = ( /obj/structure/bed/sofa/vert/white/bot, @@ -15665,7 +15573,6 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/north) "odz" = ( @@ -16370,7 +16277,6 @@ pixel_y = 24 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) "oHu" = ( @@ -16753,7 +16659,6 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/north) "oYQ" = ( @@ -17047,8 +16952,6 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "plc" = ( /obj/structure/machinery/washing_machine{ @@ -17288,8 +17191,6 @@ pixel_y = 18 }, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "pvI" = ( /obj/structure/machinery/light{ @@ -17307,8 +17208,6 @@ /turf/open/floor/kutjevo/grey/plate, /area/taipei/cmb) "pwz" = ( -/obj/structure/window/framed/almayer/white, -/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door/poddoor/shutters/almayer/open, /turf/closed/wall/almayer/white/reinforced, /area/taipei/atrium/medbay) @@ -17363,9 +17262,6 @@ light_on = 1 }, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/prison/chapel_carpet, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "pzg" = ( /obj/structure/platform/shiva/catwalk, @@ -17808,9 +17704,6 @@ light_range = 5; light_on = 1 }, -/turf/open/floor/prison/chapel_carpet, -/turf/open/floor/prison/chapel_carpet, -/turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "pOq" = ( @@ -18574,7 +18467,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) "qyT" = ( @@ -18621,7 +18513,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) "qBh" = ( @@ -19434,8 +19325,6 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "rkA" = ( /obj/effect/decal/cleanable/dirt, @@ -19462,8 +19351,6 @@ pixel_y = -2 }, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "rlh" = ( /obj/structure/surface/table/almayer, @@ -19940,7 +19827,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) "rDO" = ( @@ -20152,12 +20038,6 @@ }, /turf/open/floor/strata/fake_wood, /area/taipei/atrium/offices) -"rKz" = ( -/obj/structure/barricade/handrail/kutjevo, -/turf/open/floor/prison/chapel_carpet, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/theatre) "rKL" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -20331,8 +20211,6 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "rRE" = ( /obj/effect/decal/cleanable/dirt, @@ -20558,8 +20436,6 @@ "sad" = ( /obj/structure/barricade/handrail/kutjevo, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/chapel_carpet, -/turf/open/floor/carpet15_15/west, /turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "sao" = ( @@ -20643,9 +20519,6 @@ /area/taipei/cmb) "seS" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/terminal{ - dir = 1 - }, /obj/structure/machinery/power/terminal{ dir = 1 }, @@ -21211,9 +21084,6 @@ light_on = 1 }, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/prison/chapel_carpet, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "sFS" = ( /turf/open/floor/asteroidwarning/north, @@ -21845,18 +21715,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) -"tem" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - light_power = 2; - light_range = 5; - light_on = 1 - }, -/turf/open/floor/prison/chapel_carpet, -/turf/open/floor/prison/chapel_carpet, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/theatre) "ten" = ( /obj/structure/bed{ pixel_x = 0; @@ -22188,7 +22046,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) "try" = ( @@ -22212,9 +22069,6 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/obj/structure/machinery/power/terminal{ - dir = 1 - }, /obj/structure/cable/heavyduty{ icon_state = "node" }, @@ -22594,21 +22448,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/taipei/club) -"tMF" = ( -/obj/structure/platform/kutjevo/smooth{ - luminosity = 15 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform/kutjevo/smooth{ - light_power = 2; - light_range = 5; - light_on = 1 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/prison/chapel_carpet, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/taipei/theatre) "tMI" = ( /obj/structure/toilet{ pixel_y = 12 @@ -23281,7 +23120,6 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/north) "uql" = ( @@ -23700,7 +23538,6 @@ icon_state = "1-2" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/north) "uMw" = ( @@ -24573,8 +24410,6 @@ pixel_y = 28 }, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "vFI" = ( /obj/structure/extinguisher_cabinet{ @@ -25720,8 +25555,6 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "wFN" = ( /obj/structure/stairs/perspective{ @@ -26189,7 +26022,6 @@ icon_state = "1-2" }, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) "xei" = ( @@ -26228,7 +26060,6 @@ icon_state = "1-2" }, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) "xfS" = ( @@ -26465,9 +26296,6 @@ light_on = 1 }, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/prison/chapel_carpet, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "xou" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -26581,8 +26409,6 @@ pixel_y = -2 }, /turf/open/floor/prison/chapel_carpet/doubleside/north, -/turf/open/floor/carpet15_15/west, -/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/taipei/theatre) "xtP" = ( /obj/structure/barricade/handrail/strata{ @@ -27124,7 +26950,6 @@ icon_state = "1-2" }, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) "xQG" = ( @@ -27207,7 +27032,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, /turf/open/floor/plating/plating_catwalk/prison, /area/taipei/maints/south) "xTD" = ( @@ -34418,7 +34242,7 @@ gSa udD nqr vqo -wVE +vqo pTu pJt wVE @@ -41505,22 +41329,22 @@ jEW jEW hib yhH -jCm +epS kcB mHE -eMt +iUr kcB rpF -jCm +epS xTm uyN -eMt +iUr kcB oCM -eMt +iUr xPY oCM -eMt +iUr xPY hib nUs @@ -42929,11 +42753,11 @@ jVt iYe sjQ utB -hlR +sad aTY -hlR +sad aTY -hlR +sad aTY sFd brs @@ -43133,9 +42957,9 @@ sjQ aTY mGf aTY -hlR +sad fNo -hlR +sad aTY sFd brs @@ -43335,9 +43159,9 @@ sjQ aTY pku aTY -hlR +sad fNo -jEJ +hlR aTY sFd brs @@ -43535,11 +43359,11 @@ kJO kuT sjQ aTY -jEJ +hlR aTY -jEJ +hlR fNo -jEJ +hlR aTY akC brs @@ -43739,7 +43563,7 @@ sjQ aTY pvw aTY -hlR +sad aaJ bbH aTY @@ -43939,10 +43763,10 @@ kJO kuT sjQ aTY -jEJ -aTY hlR aTY +sad +aTY rkq aTY pza @@ -44141,13 +43965,13 @@ vuz kuT sjQ kWp -rKz +hlR srp sad kWp -rKz +hlR kWp -tem +pza brs uot iaN @@ -44949,11 +44773,11 @@ nCy jEl tnX reM -rKz +hlR lgD gHz reM -rKz +hlR lgD cZQ brs @@ -45151,13 +44975,13 @@ wuw jEl tnX aTY -jEJ +hlR aTY cxO aTY -jEJ +hlR aTY -tMF +cZQ brs uot jPj @@ -45353,11 +45177,11 @@ wuw dvN sjQ aTY -hlR +sad nlB -hlR +sad aTY -jEJ +hlR fNo xor brs @@ -45555,11 +45379,11 @@ kJO jEl sjQ aTY -hlR +sad utB -hlR +sad aTY -jEJ +hlR fNo pza brs @@ -45757,11 +45581,11 @@ wuw jEl sjQ aTY -hlR +sad aTY -hlR +sad aTY -jEJ +hlR fNo pza brs @@ -45959,9 +45783,9 @@ toi jEl sjQ aTY -hlR +sad aTY -hlR +sad aTY xtJ fNo @@ -46163,7 +45987,7 @@ sjQ hrB wEM aTY -hlR +sad utB rRr fNo @@ -46363,11 +46187,11 @@ siU muQ sjQ aTY -hlR +sad aTY vFc aTY -jEJ +hlR aTY sFd brs @@ -46567,11 +46391,11 @@ sjQ mVp sad kWp -rKz +hlR kWp -rKz +hlR kWp -jym +sFd brs uot iaN @@ -58272,13 +58096,13 @@ wAL bsV rnB oFT -fqw +hrA pQN -gwB -fqw +weN +hrA pQN -gwB -fqw +weN +hrA wGc ecs bsV