forked from Baystation12/Baystation12
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patholdstation.dmm
1854 lines (1848 loc) · 333 KB
/
oldstation.dmm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"aa" = (/turf/space,/area)
"ab" = (/obj/structure/grille,/turf/space,/area)
"ac" = (/obj/structure/grille,/turf/simulated/wall/r_wall,/area/assembly/showroom)
"ad" = (/obj/structure/grille,/turf/simulated/floor/engine,/area/assembly/showroom)
"ae" = (/turf/simulated/floor/engine,/area/assembly/showroom)
"af" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/engine,/area/assembly/showroom)
"ag" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/assembly/showroom)
"ah" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/assembly/showroom)
"ai" = (/obj/structure/window/reinforced,/turf/simulated/floor/engine,/area/assembly/showroom)
"aj" = (/turf/simulated/floor,/area/assembly/showroom)
"ak" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor,/area/assembly/showroom)
"al" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/assembly/showroom)
"am" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/assembly/showroom)
"an" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor,/area/assembly/showroom)
"ao" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/eastleft{req_access_txt = "10"},/turf/simulated/floor/engine,/area/assembly/showroom)
"ap" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/turf/simulated/floor,/area/assembly/showroom)
"aq" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable,/turf/simulated/floor,/area/assembly/showroom)
"ar" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; icon_state = "on"; on = 1; pixel_y = 1},/turf/simulated/floor/engine,/area/assembly/showroom)
"as" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/engine,/area/assembly/showroom)
"at" = (/obj/machinery/atmospherics/valve{dir = 4},/turf/simulated/floor,/area/assembly/showroom)
"au" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor,/area/assembly/showroom)
"av" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/assembly/showroom)
"aw" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/assembly/showroom)
"ax" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor,/area/assembly/showroom)
"ay" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor,/area/assembly/showroom)
"az" = (/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/assembly/showroom)
"aA" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/assembly/showroom)
"aB" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/assembly/showroom)
"aC" = (/obj/machinery/door/poddoor{id = "aux1"; name = "Vent"},/turf/simulated/floor/engine,/area/assembly/showroom)
"aD" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/engine,/area/assembly/showroom)
"aE" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/engine,/area/assembly/showroom)
"aF" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/assembly/showroom)
"aG" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/assembly/showroom)
"aH" = (/obj/machinery/door_control{id = "aux1"; pixel_x = 24},/turf/simulated/floor,/area/assembly/showroom)
"aI" = (/obj/machinery/igniter,/turf/simulated/floor/engine,/area/assembly/showroom)
"aJ" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/engine,/area/assembly/showroom)
"aK" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/engine,/area/assembly/showroom)
"aL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/assembly/showroom)
"aM" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor,/area/assembly/showroom)
"aN" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/assembly/showroom)
"aO" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/assembly/showroom)
"aP" = (/obj/structure/window/reinforced{dir = 5},/turf/simulated/floor/plating,/area/assembly/showroom)
"aQ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/space,/area)
"aR" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/space,/area)
"aS" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/space,/area)
"aT" = (/turf/simulated/wall/r_wall,/area)
"aU" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/assembly/showroom)
"aV" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/window/eastleft{req_access_txt = "10"},/turf/simulated/floor,/area/assembly/showroom)
"aW" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/assembly/showroom)
"aX" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/turf/space,/area)
"aY" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/space,/area)
"aZ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/wrench,/obj/item/device/flashlight,/turf/simulated/floor,/area/assembly/showroom)
"ba" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/assembly/showroom)
"bb" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/assembly/showroom)
"bc" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/space,/area)
"bd" = (/obj/structure/grille,/turf/simulated/wall/r_wall,/area)
"be" = (/turf/simulated/wall/r_wall,/area/engine/engineering)
"bf" = (/obj/machinery/door/airlock{req_access_txt = "10"},/turf/simulated/floor,/area/assembly/showroom)
"bg" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/wall/r_wall,/area/assembly/showroom)
"bh" = (/turf/simulated/shuttle/wall{tag = "icon-pwall (NORTH)"; icon_state = "pwall"; dir = 1},/area)
"bi" = (/turf/simulated/shuttle/wall{icon_state = "wall3"},/area)
"bj" = (/turf/simulated/wall,/area/hallway/primary/central)
"bk" = (/turf/simulated/floor,/area/hallway/primary/central)
"bl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/wall,/area/hallway/primary/central)
"bm" = (/obj/machinery/door/airlock{req_access_txt = "10;13"},/turf/simulated/floor,/area/engine/engineering)
"bn" = (/turf/simulated/floor,/area/engine/engineering)
"bo" = (/obj/machinery/door/airlock{req_access_txt = "10"},/turf/simulated/floor,/area/engine/engineering)
"bp" = (/obj/machinery/light/small,/turf/simulated/floor,/area/engine/engineering)
"bq" = (/turf/simulated/shuttle/floor,/area)
"br" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/hallway/primary/central)
"bs" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/hallway/primary/central)
"bt" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area)
"bu" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/engine/engineering)
"bv" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/engine/engineering)
"bw" = (/obj/machinery/door/airlock{req_access_txt = "10"},/turf/simulated/floor,/area/hallway/primary/central)
"bx" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/hallway/primary/central)
"by" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/hallway/primary/central)
"bz" = (/turf/space,/area/engine/engineering)
"bA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/hallway/primary/central)
"bB" = (/obj/machinery/door/airlock{req_access_txt = "10;13"},/turf/simulated/floor,/area/hallway/primary/central)
"bC" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area)
"bD" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area)
"bE" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area)
"bF" = (/obj/structure/window/reinforced{dir = 5},/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/turf/simulated/floor/plating,/area/engine/engineering)
"bG" = (/turf/simulated/wall,/area/engine/engineering)
"bH" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/engine/engineering)
"bI" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area)
"bJ" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/simulated/floor,/area)
"bK" = (/turf/simulated/wall,/area)
"bL" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/hallway/primary/central)
"bM" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area)
"bN" = (/obj/structure/grille,/turf/simulated/wall/r_wall,/area/assembly/chargebay)
"bO" = (/turf/simulated/wall/r_wall,/area/assembly/chargebay)
"bP" = (/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"bQ" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/engine/engineering)
"bR" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/simulated/floor,/area/engine/engineering)
"bS" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor,/area/engine/engineering)
"bT" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/engine/engineering)
"bU" = (/obj/machinery/power/monitor,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/engine/engineering)
"bV" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/engine/engineering)
"bW" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/engine/engineering)
"bX" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = "90Curve"},/turf/simulated/floor,/area/engine/engineering)
"bY" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor,/area/engine/engineering)
"bZ" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/under/color/black,/obj/item/clothing/mask/gas,/obj/item/device/radio/headset,/obj/item/clothing/gloves/black,/obj/item/clothing/shoes/black,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/engine/engineering)
"ca" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/wall,/area/hallway/primary/central)
"cb" = (/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/wall,/area/hallway/primary/central)
"cc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable,/turf/simulated/floor/plating,/area/hallway/primary/central)
"cd" = (/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area)
"ce" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area)
"cf" = (/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area)
"cg" = (/turf/simulated/floor/airless,/area/assembly/chargebay)
"ch" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"ci" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor,/area/engine/engineering)
"cj" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor,/area/engine/engineering)
"ck" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engine/engineering)
"cl" = (/obj/effect/landmark{name = "blobstart"},/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/structure/cable/yellow,/turf/simulated/floor,/area/engine/engineering)
"cm" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/turf/simulated/floor,/area/engine/engineering)
"cn" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/engine/engineering)
"co" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/engine/engineering)
"cp" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/engine/engineering)
"cq" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/engine/engineering)
"cr" = (/obj/item/weapon/storage/backpack,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/engine/engineering)
"cs" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/engine/engineering)
"ct" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/engine/engineering)
"cu" = (/obj/machinery/power/smes,/obj/structure/cable,/turf/simulated/floor,/area/hallway/primary/central)
"cv" = (/obj/machinery/power/solar_control,/turf/simulated/floor,/area/hallway/primary/central)
"cw" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/hallway/primary/central)
"cx" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/central)
"cy" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/turf/simulated/floor/plating/airless,/area)
"cz" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/stack/rods,/turf/simulated/floor/plating/airless,/area)
"cA" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"cB" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"cC" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/engine/engineering)
"cD" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/engine/engineering)
"cE" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor,/area/engine/engineering)
"cF" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor,/area/engine/engineering)
"cG" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engine/engineering)
"cH" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engine/engineering)
"cI" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow,/turf/simulated/floor,/area/engine/engineering)
"cJ" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/engine/engineering)
"cK" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/engine/engineering)
"cL" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/engine/engineering)
"cM" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/cell{charge = 100; maxcharge = 15000; pixel_x = 0; pixel_y = 0},/obj/item/weapon/cell{charge = 100; maxcharge = 15000; pixel_x = 0; pixel_y = 0},/obj/item/weapon/cell{charge = 100; maxcharge = 15000; pixel_x = 0; pixel_y = 0},/turf/simulated/floor,/area/engine/engineering)
"cN" = (/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor,/area/engine/engineering)
"cO" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/turf/simulated/floor,/area/hallway/primary/central)
"cP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/floor,/area/hallway/primary/central)
"cQ" = (/obj/machinery/door/airlock{req_access_txt = "10;13"},/turf/simulated/floor/airless,/area/assembly/chargebay)
"cR" = (/obj/structure/window/reinforced{dir = 5},/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"cS" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"cT" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"cU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"cV" = (/obj/machinery/atmospherics/valve,/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"cW" = (/obj/machinery/door/airlock{req_access_txt = "10;13;32"},/turf/simulated/floor,/area/engine/engineering)
"cX" = (/obj/machinery/atmospherics/binary/circulator,/turf/simulated/floor,/area/engine/engineering)
"cY" = (/obj/machinery/power/generator,/obj/structure/cable/yellow,/turf/simulated/floor,/area/engine/engineering)
"cZ" = (/obj/machinery/atmospherics/binary/circulator{icon_state = "circ2-off"},/turf/simulated/floor,/area/engine/engineering)
"da" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/floor,/area/engine/engineering)
"db" = (/obj/machinery/power/monitor,/turf/simulated/floor,/area/engine/engineering)
"dc" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/engine/engineering)
"dd" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/engine/engineering)
"de" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/engine/engineering)
"df" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/engine/engineering)
"dg" = (/obj/machinery/power/monitor,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/hallway/primary/central)
"dh" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor,/area/hallway/primary/central)
"di" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/turf/simulated/floor,/area/hallway/primary/central)
"dj" = (/obj/machinery/door/window/eastleft,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/hallway/primary/central)
"dk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/hallway/primary/central)
"dl" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = "90Curve"},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/hallway/primary/central)
"dm" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/central)
"dn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/floor/plating/airless,/area)
"do" = (/obj/item/weapon/cable_coil/cut{amount = 2; icon_state = "coil_red2"},/turf/simulated/floor/plating/airless,/area)
"dp" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"dq" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"dr" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,/turf/simulated/floor/engine,/area/assembly/chargebay)
"ds" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/engine,/area/assembly/chargebay)
"dt" = (/obj/structure/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/gas,/obj/item/clothing/gloves/black,/obj/item/clothing/under/color/black,/obj/item/clothing/shoes/black,/obj/item/weapon/tank/oxygen,/turf/simulated/floor,/area/engine/engineering)
"du" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor,/area/engine/engineering)
"dv" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/engine/engineering)
"dw" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor,/area/engine/engineering)
"dx" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/floor,/area/engine/engineering)
"dy" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/engine/engineering)
"dz" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/engine/engineering)
"dA" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/engine/engineering)
"dB" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor,/area/engine/engineering)
"dC" = (/obj/structure/window/reinforced,/turf/simulated/floor,/area/hallway/primary/central)
"dD" = (/obj/structure/window/reinforced,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/hallway/primary/central)
"dE" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/hallway/primary/central)
"dF" = (/obj/machinery/door/airlock{req_access_txt = "10;13"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/hallway/primary/central)
"dG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor/plating/airless,/area)
"dH" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area)
"dI" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"dJ" = (/obj/machinery/atmospherics/binary/circulator,/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"dK" = (/obj/machinery/power/generator,/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"dL" = (/obj/machinery/atmospherics/binary/circulator{icon_state = "circ2-off"},/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"dM" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/simulated/floor/engine,/area/assembly/chargebay)
"dN" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; icon_state = "on"; on = 1},/turf/simulated/floor/engine,/area/assembly/chargebay)
"dO" = (/obj/structure/grille,/turf/simulated/floor/engine,/area/assembly/chargebay)
"dP" = (/obj/structure/table,/obj/item/clothing/gloves/yellow,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/engine/engineering)
"dQ" = (/obj/structure/table,/obj/item/device/flashlight,/obj/item/weapon/cell{charge = 100; maxcharge = 15000; pixel_x = 0; pixel_y = 0},/turf/simulated/floor,/area/engine/engineering)
"dR" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor,/area/engine/engineering)
"dS" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor,/area/engine/engineering)
"dT" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor,/area/engine/engineering)
"dU" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/window/eastleft{req_access_txt = "10"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/engine/engineering)
"dV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/engine/engineering)
"dW" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/engine/engineering)
"dX" = (/obj/machinery/door/window/eastleft,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/engine/engineering)
"dY" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor,/area/engine/engineering)
"dZ" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor,/area/engine/engineering)
"ea" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hallway/primary/central)
"eb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"ec" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/power/apc{pixel_x = 24},/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"ed" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/turf/simulated/floor/engine,/area/assembly/chargebay)
"ee" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/atmospherics/unary/vent_scrubber{icon_state = "on"; on = 1},/turf/simulated/floor/engine,/area/assembly/chargebay)
"ef" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor,/area/engine/engineering)
"eg" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor,/area/engine/engineering)
"eh" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/engine/engineering)
"ei" = (/obj/machinery/light,/turf/simulated/floor,/area/engine/engineering)
"ej" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/glasses/meson,/turf/simulated/floor,/area/engine/engineering)
"ek" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/engine/engineering)
"el" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/engine/engineering)
"em" = (/turf/simulated/wall,/area/derelict/bridge)
"en" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"eo" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/wall/r_wall,/area/assembly/chargebay)
"ep" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,/turf/simulated/floor/plating,/area/engine/engineering)
"eq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/engine/engineering)
"er" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/engine/engineering)
"es" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/engine/engineering)
"et" = (/turf/simulated/floor,/area/derelict/bridge)
"eu" = (/obj/structure/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/gas,/obj/item/clothing/gloves/black,/obj/item/clothing/under/color/black,/obj/item/clothing/shoes/black,/obj/item/weapon/tank/jetpack/oxygen,/turf/simulated/floor,/area/derelict/bridge)
"ev" = (/obj/structure/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/gas,/obj/item/clothing/gloves/black,/obj/item/clothing/under/color/black,/obj/item/clothing/shoes/black,/obj/item/weapon/tank/jetpack/oxygen,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/derelict/bridge)
"ew" = (/obj/machinery/portable_atmospherics/pump,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/hallway/primary/central)
"ex" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/hallway/primary/central)
"ey" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating/airless,/area/assembly/chargebay)
"ez" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/wall/r_wall,/area/assembly/chargebay)
"eA" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/wall/r_wall,/area/assembly/chargebay)
"eB" = (/turf/simulated/floor/airless,/area/engine/engineering)
"eC" = (/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/engine/engineering)
"eD" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/wall/r_wall,/area/engine/engineering)
"eE" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/simulated/floor/engine,/area/engine/engineering)
"eF" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/simulated/floor/engine,/area/engine/engineering)
"eG" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor/engine,/area/engine/engineering)
"eH" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/simulated/floor/engine,/area/engine/engineering)
"eI" = (/obj/machinery/door/poddoor{id = "engine"; name = "Engine Hatch"},/turf/simulated/floor/engine,/area/engine/engineering)
"eJ" = (/obj/machinery/door_control{id = "engine"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor,/area/engine/engineering)
"eK" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/engine/engineering)
"eL" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/turf/simulated/floor/plating/airless,/area)
"eM" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/wall/r_wall,/area/assembly/chargebay)
"eN" = (/turf/simulated/floor/plating/airless,/area/engine/engineering)
"eO" = (/obj/machinery/door/airlock,/turf/simulated/floor/plating,/area/engine/engineering)
"eP" = (/turf/simulated/floor/plating,/area/engine/engineering)
"eQ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/simulated/floor/engine,/area/engine/engineering)
"eR" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/engine/engineering)
"eS" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/engine/engineering)
"eT" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/window/eastleft{req_access_txt = "10"},/turf/simulated/floor,/area/engine/engineering)
"eU" = (/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/simulated/floor,/area/derelict/bridge)
"eV" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/hallway/primary/central)
"eW" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/hallway/primary/central)
"eX" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/hallway/primary/central)
"eY" = (/obj/item/device/multitool,/turf/simulated/floor/plating,/area/engine/engineering)
"eZ" = (/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/crowbar,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/engine/engineering)
"fa" = (/turf/simulated/floor/engine,/area/engine/engineering)
"fb" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; icon_state = "on"; on = 1},/turf/simulated/floor/engine,/area/engine/engineering)
"fc" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/engine,/area/engine/engineering)
"fd" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/valve{dir = 4},/turf/simulated/floor,/area/engine/engineering)
"fe" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/simulated/floor,/area/engine/engineering)
"ff" = (/obj/effect/landmark/start{name = "Chief Engineer"},/turf/simulated/floor,/area/engine/engineering)
"fg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/derelict/bridge)
"fh" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/derelict/bridge)
"fi" = (/obj/machinery/door/airlock{req_access_txt = "18"},/turf/simulated/floor,/area/derelict/bridge)
"fj" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/hallway/primary/central)
"fk" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area)
"fl" = (/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/engine/engineering)
"fm" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/turf/simulated/floor/engine,/area/engine/engineering)
"fn" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/engine/engineering)
"fo" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor,/area/engine/engineering)
"fp" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/engine/engineering)
"fq" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light,/turf/simulated/floor,/area/engine/engineering)
"fr" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/portable_atmospherics/scrubber/huge,/turf/simulated/floor,/area/engine/engineering)
"fs" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/derelict/bridge)
"ft" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor,/area/derelict/bridge)
"fu" = (/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/derelict/bridge)
"fv" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/hallway/primary/central)
"fw" = (/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/hallway/primary/central)
"fx" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor,/area/hallway/primary/central)
"fy" = (/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/hallway/primary/central)
"fz" = (/obj/structure/grille,/turf/simulated/floor/plating/airless,/area)
"fA" = (/obj/item/weapon/tank/oxygen,/turf/simulated/floor/engine,/area/engine/engineering)
"fB" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor/engine,/area/engine/engineering)
"fC" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/wall/r_wall,/area/engine/engineering)
"fD" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/wall/r_wall,/area/engine/engineering)
"fE" = (/obj/structure/grille,/turf/simulated/floor/engine,/area/engine/engineering)
"fF" = (/obj/structure/table,/obj/item/weapon/extinguisher,/obj/item/device/flashlight,/obj/item/weapon/wrench,/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/engine/engineering)
"fG" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor,/area/engine/engineering)
"fH" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/simulated/floor,/area/engine/engineering)
"fI" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/engine/engineering)
"fJ" = (/obj/structure/closet/emcloset/legacy,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/engine/engineering)
"fK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/wall/r_wall,/area/engine/engineering)
"fL" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/engine/engineering)
"fM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/wall/r_wall,/area)
"fN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/wall,/area)
"fO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/wall,/area/derelict/bridge)
"fP" = (/obj/structure/window/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/derelict/bridge)
"fQ" = (/obj/machinery/door/window/southleft,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/derelict/bridge)
"fR" = (/obj/structure/window/reinforced,/obj/effect/landmark{name = "blobstart"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/derelict/bridge)
"fS" = (/obj/structure/window/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor,/area/derelict/bridge)
"fT" = (/obj/structure/window/reinforced,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/derelict/bridge)
"fU" = (/obj/structure/window/reinforced{dir = 5},/turf/simulated/floor/engine,/area/engine/engineering)
"fV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/derelict/bridge)
"fW" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/derelict/bridge)
"fX" = (/obj/machinery/computer/secure_data,/turf/simulated/floor,/area/derelict/bridge)
"fY" = (/obj/machinery/computer/card,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/derelict/bridge)
"fZ" = (/obj/structure/table,/turf/simulated/floor,/area/derelict/bridge)
"ga" = (/obj/machinery/computer/communications,/turf/simulated/floor,/area/derelict/bridge)
"gb" = (/obj/structure/table,/obj/item/device/radio,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/derelict/bridge)
"gc" = (/obj/structure/table,/obj/item/weapon/paper_bin,/turf/simulated/floor,/area/derelict/bridge)
"gd" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/turf/simulated/floor,/area/derelict/bridge)
"ge" = (/obj/machinery/computer/card,/turf/simulated/floor,/area/engine/engineering)
"gf" = (/obj/structure/window/reinforced{dir = 5},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/engine,/area/engine/engineering)
"gg" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/engine/engineering)
"gh" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor,/area/derelict/bridge)
"gi" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/derelict/bridge)
"gj" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/pen,/turf/simulated/floor,/area/derelict/bridge)
"gk" = (/obj/machinery/igniter,/turf/simulated/floor/engine,/area/engine/engineering)
"gl" = (/obj/structure/window/reinforced,/turf/simulated/floor,/area/derelict/bridge)
"gm" = (/obj/machinery/door/window/southright,/turf/simulated/floor,/area/derelict/bridge)
"gn" = (/obj/structure/window/reinforced,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/derelict/bridge)
"go" = (/obj/structure/window/reinforced{dir = 5},/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/derelict/bridge)
"gp" = (/obj/structure/stool/bed/chair{dir = 4},/obj/effect/landmark/start{name = "Research Director"},/turf/simulated/floor,/area/derelict/bridge)
"gq" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/device/assembly/timer,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/bridge)
"gr" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/engine,/area/engine/engineering)
"gs" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/turf/simulated/floor,/area/engine/engineering)
"gt" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/turf/simulated/floor,/area/engine/engineering)
"gu" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor,/area/derelict/bridge)
"gv" = (/obj/machinery/door/window/eastleft,/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/derelict/bridge)
"gw" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor,/area/derelict/bridge)
"gx" = (/obj/structure/stool/bed/chair{dir = 4},/obj/effect/landmark/start{name = "Captain"},/turf/simulated/floor,/area/derelict/bridge)
"gy" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/bridge)
"gz" = (/turf/simulated/wall,/area/derelict/storage/equipment)
"gA" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/derelict/bridge)
"gB" = (/obj/structure/stool/bed/chair{dir = 4},/obj/effect/landmark/start{name = "Head of Personnel"},/turf/simulated/floor,/area/derelict/bridge)
"gC" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/device/assembly/signaler,/obj/item/device/radio/beacon,/turf/simulated/floor,/area/derelict/bridge)
"gD" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor,/area/engine/engineering)
"gE" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor,/area/engine/engineering)
"gF" = (/obj/structure/table,/obj/item/device/healthanalyzer,/turf/simulated/floor,/area/engine/engineering)
"gG" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/turf/simulated/floor,/area/engine/engineering)
"gH" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/derelict/storage/equipment)
"gI" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/floor,/area/derelict/storage/equipment)
"gJ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/glasses/meson,/obj/item/device/flashlight,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/derelict/storage/equipment)
"gK" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/glasses/meson,/obj/item/weapon/cell{pixel_x = 5; pixel_y = -5; charge = 100; maxcharge = 15000},/obj/item/weapon/cell{pixel_x = 5; pixel_y = -5; charge = 100; maxcharge = 15000},/obj/item/device/flashlight,/turf/simulated/floor,/area/derelict/storage/equipment)
"gL" = (/obj/structure/table,/obj/item/clothing/gloves/black,/obj/item/clothing/gloves/black,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/ears/earmuffs,/obj/item/weapon/cell{pixel_x = 5; pixel_y = -5; charge = 100; maxcharge = 15000},/obj/item/weapon/cell{pixel_x = 5; pixel_y = -5; charge = 100; maxcharge = 15000},/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/gloves/black,/turf/simulated/floor,/area/derelict/storage/equipment)
"gM" = (/obj/structure/table,/obj/item/clothing/gloves/black,/obj/item/clothing/gloves/black,/obj/item/clothing/glasses/sunglasses,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/derelict/storage/equipment)
"gN" = (/obj/structure/table,/obj/item/device/assembly/infra,/turf/simulated/floor,/area/derelict/bridge)
"gO" = (/obj/structure/table,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/bridge)
"gP" = (/obj/structure/stool/bed/chair,/turf/simulated/floor,/area/derelict/bridge)
"gQ" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/turf/simulated/floor,/area/derelict/bridge)
"gR" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/stoxin,/turf/simulated/floor,/area/derelict/bridge)
"gS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/wall/r_wall,/area/engine/engineering)
"gT" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor,/area/derelict/storage/equipment)
"gU" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor,/area/derelict/storage/equipment)
"gV" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/storage/equipment)
"gW" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/derelict/storage/equipment)
"gX" = (/obj/structure/table,/obj/item/device/assembly/timer,/obj/item/device/t_scanner,/obj/machinery/light,/turf/simulated/floor,/area/derelict/bridge)
"gY" = (/obj/structure/table,/obj/item/weapon/card/id,/turf/simulated/floor,/area/derelict/bridge)
"gZ" = (/obj/structure/computerframe,/turf/simulated/floor,/area/derelict/bridge)
"ha" = (/obj/structure/computerframe,/obj/machinery/light,/turf/simulated/floor,/area/derelict/bridge)
"hb" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor,/area/derelict/bridge)
"hc" = (/turf/simulated/floor/airless,/area)
"hd" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/engine/engineering)
"he" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/engine/engineering)
"hf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/wall/r_wall,/area)
"hg" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/derelict/storage/equipment)
"hh" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/derelict/storage/equipment)
"hi" = (/turf/simulated/wall/r_wall,/area/crew_quarters/captain)
"hj" = (/obj/machinery/door/window/southleft{req_access_txt = "20"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/crew_quarters/captain)
"hk" = (/turf/simulated/wall,/area/derelict/arrival)
"hl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/wall,/area)
"hm" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelict/storage/equipment)
"hn" = (/turf/simulated/floor,/area/derelict/storage/equipment)
"ho" = (/obj/machinery/door/window/southleft{req_access_txt = "20"},/obj/structure/table,/obj/item/weapon/card/id/captains_spare,/obj/item/weapon/disk/nuclear,/turf/simulated/floor,/area/crew_quarters/captain)
"hp" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/derelict/arrival)
"hq" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/derelict/storage/equipment)
"hr" = (/obj/machinery/computer/security,/turf/simulated/floor,/area/crew_quarters/captain)
"hs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/crew_quarters/captain)
"ht" = (/turf/simulated/floor,/area/crew_quarters/captain)
"hu" = (/obj/structure/stool/bed,/turf/simulated/floor,/area/crew_quarters/captain)
"hv" = (/obj/item/ammo_magazine,/turf/simulated/floor,/area/derelict/arrival)
"hw" = (/obj/machinery/power/monitor,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/crew_quarters/captain)
"hx" = (/obj/structure/closet/secure_closet/captains,/turf/simulated/floor,/area/crew_quarters/captain)
"hy" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/derelict/storage/equipment)
"hz" = (/obj/machinery/light,/turf/simulated/floor,/area/derelict/storage/equipment)
"hA" = (/obj/structure/closet/secure_closet/security,/turf/simulated/floor,/area/crew_quarters/captain)
"hB" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/crew_quarters/captain)
"hC" = (/turf/simulated/floor,/area/derelict/arrival)
"hD" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/backpack,/obj/item/weapon/crowbar,/obj/item/clothing/gloves/black,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area)
"hE" = (/turf/simulated/floor,/area)
"hF" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/simulated/floor,/area/derelict/storage/equipment)
"hG" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/packageWrap,/obj/item/device/flashlight,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/derelict/storage/equipment)
"hH" = (/obj/structure/table,/obj/item/weapon/storage/gl_kit,/obj/item/device/t_scanner,/turf/simulated/floor,/area/derelict/storage/equipment)
"hI" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/turf/simulated/floor,/area/derelict/storage/equipment)
"hJ" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/cable_coil,/turf/simulated/floor,/area/derelict/storage/equipment)
"hK" = (/obj/item/stack/sheet/metal{amount = 50},/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/derelict/storage/equipment)
"hL" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/device/multitool,/turf/simulated/floor,/area/derelict/storage/equipment)
"hM" = (/obj/machinery/autolathe,/turf/simulated/floor,/area/derelict/storage/equipment)
"hN" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/crew_quarters/captain)
"hO" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor,/area/crew_quarters/captain)
"hP" = (/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/crew_quarters/captain)
"hQ" = (/obj/item/weapon/storage/handcuff_kit,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/crew_quarters/captain)
"hR" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor,/area/derelict/arrival)
"hS" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/derelict/storage/equipment)
"hT" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/crowbar,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/derelict/storage/equipment)
"hU" = (/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area)
"hV" = (/obj/item/weapon/crowbar,/obj/item/device/assembly/timer,/turf/simulated/floor,/area/derelict/storage/equipment)
"hW" = (/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/storage/equipment)
"hX" = (/obj/item/weapon/crowbar,/turf/simulated/floor,/area/derelict/storage/equipment)
"hY" = (/obj/item/device/assembly/igniter,/obj/item/device/assembly/infra,/obj/item/weapon/cell{charge = 100; maxcharge = 15000; pixel_x = 0; pixel_y = 0},/turf/simulated/floor,/area/derelict/storage/equipment)
"hZ" = (/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/storage/equipment)
"ia" = (/obj/item/device/assembly/igniter,/obj/item/device/assembly/infra,/obj/item/device/radio/beacon,/turf/simulated/floor,/area/derelict/storage/equipment)
"ib" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/crew_quarters/captain)
"ic" = (/turf/simulated/wall,/area/medical/medbay)
"id" = (/obj/machinery/door/airlock{req_access_txt = "5;13"},/turf/simulated/floor,/area/medical/medbay)
"ie" = (/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/backpack,/obj/item/device/assembly/igniter,/turf/simulated/floor,/area/derelict/storage/equipment)
"if" = (/obj/item/stack/sheet/glass{amount = 50},/obj/item/device/assembly/signaler,/obj/item/device/assembly/timer,/turf/simulated/floor,/area/derelict/storage/equipment)
"ig" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/backpack,/obj/item/weapon/crowbar,/obj/item/clothing/gloves/black,/turf/simulated/floor,/area/derelict/storage/equipment)
"ih" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/storage/equipment)
"ii" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/handcuffs,/obj/item/clothing/mask/muzzle,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/storage/equipment)
"ij" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/derelict/storage/equipment)
"ik" = (/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor,/area/derelict/storage/equipment)
"il" = (/turf/simulated/wall/r_wall,/area/derelict/storage/equipment)
"im" = (/turf/simulated/wall/r_wall,/area/derelict/arrival)
"in" = (/turf/simulated/wall,/area/chapel/main)
"io" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/medbay)
"ip" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/medical/medbay)
"iq" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor,/area/derelict/storage/equipment)
"ir" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/derelict/storage/equipment)
"is" = (/obj/structure/table,/turf/simulated/floor,/area/derelict/arrival)
"it" = (/obj/structure/stool/bed/chair,/turf/simulated/floor,/area/derelict/arrival)
"iu" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor,/area/derelict/arrival)
"iv" = (/obj/structure/closet/coffin,/turf/simulated/floor,/area/chapel/main)
"iw" = (/obj/structure/closet/coffin,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/chapel/main)
"ix" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/medbay)
"iy" = (/turf/simulated/wall,/area/medical/genetics)
"iz" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/genetics)
"iA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/wall,/area/medical/genetics)
"iB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/derelict/storage/equipment)
"iC" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/derelict/storage/equipment)
"iD" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/derelict/arrival)
"iE" = (/obj/structure/table,/obj/item/device/radio,/turf/simulated/floor,/area/derelict/arrival)
"iF" = (/obj/structure/stool/bed/chair{dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/derelict/arrival)
"iG" = (/turf/simulated/floor,/area/chapel/main)
"iH" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"iI" = (/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"iJ" = (/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"iK" = (/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"iL" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/wardrobe/white,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"iM" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"iN" = (/obj/machinery/computer/med_data,/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"iO" = (/obj/machinery/door/window/eastleft{req_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"iP" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"iQ" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"iR" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"iS" = (/obj/structure/closet/wardrobe/genetics_white,/turf/simulated/floor,/area/medical/genetics)
"iT" = (/obj/structure/closet/l3closet/general,/turf/simulated/floor,/area/medical/genetics)
"iU" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/medical/genetics)
"iV" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor,/area/medical/genetics)
"iW" = (/obj/machinery/computer/med_data,/turf/simulated/floor,/area/medical/genetics)
"iX" = (/turf/simulated/floor,/area/medical/genetics)
"iY" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor,/area/medical/genetics)
"iZ" = (/obj/structure/table,/obj/item/clothing/gloves/latex,/obj/item/clothing/mask/surgical,/obj/item/weapon/pen,/obj/item/weapon/clipboard,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/medical/genetics)
"ja" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/obj/item/weapon/reagent_containers/glass/bottle/stoxin,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor,/area/medical/genetics)
"jb" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/obj/item/weapon/reagent_containers/glass/bottle/stoxin,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor,/area/medical/genetics)
"jc" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin,/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/medical/genetics)
"jd" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/storage/firstaid/regular,/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/medical/genetics)
"je" = (/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/wall,/area/medical/genetics)
"jf" = (/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/derelict/storage/equipment)
"jg" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor,/area/derelict/storage/equipment)
"jh" = (/obj/machinery/door/window/eastleft,/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/derelict/storage/equipment)
"ji" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s6"; icon_state = "swall_s6"; dir = 2},/area)
"jj" = (/turf/simulated/shuttle/wall,/area)
"jk" = (/obj/structure/shuttle/engine/propulsion/burst/right{dir = 8},/turf/space,/area)
"jl" = (/obj/machinery/door{icon = 'icons/obj/doors/doormorgue.dmi'; name = "Door"; req_access_txt = "22"},/turf/simulated/floor,/area/medical/medbay)
"jm" = (/obj/item/weapon/wrench,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"jn" = (/obj/machinery/atmospherics/unary/cold_sink/freezer,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"jo" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"jp" = (/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"jq" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"jr" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/obj/item/device/healthanalyzer,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"js" = (/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/obj/item/stack/medical/ointment,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"jt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/genetics)
"ju" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/medical/genetics)
"jv" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor,/area/medical/genetics)
"jw" = (/turf/simulated/wall/r_wall,/area/toxins/lab)
"jx" = (/turf/simulated/shuttle/floor{icon_state = "floor3"},/turf/simulated/shuttle/wall{tag = "icon-swall_f9"; icon_state = "swall_f9"; dir = 2},/area)
"jy" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"jz" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/shuttle/wall{tag = "icon-pwall (NORTH)"; icon_state = "pwall"; dir = 1},/area)
"jA" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/shuttle/wall{tag = "icon-pwall (NORTH)"; icon_state = "pwall"; dir = 1},/area)
"jB" = (/obj/structure/shuttle/engine/propulsion{dir = 8},/turf/space,/area)
"jC" = (/turf/simulated/floor,/area/medical/medbay)
"jD" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/medical/medbay)
"jE" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"jF" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"jG" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"jH" = (/obj/structure/stool/bed/chair,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"jI" = (/obj/structure/table,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"jJ" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"jK" = (/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor,/area/medical/genetics)
"jL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/medical/genetics)
"jM" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/medical/genetics)
"jN" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/toxins/lab)
"jO" = (/turf/simulated/floor,/area/toxins/lab)
"jP" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/toxins/lab)
"jQ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/toxins/lab)
"jR" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/turf/simulated/floor,/area/derelict/arrival)
"jS" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"jT" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"jU" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/shuttle/wall{tag = "icon-pwall (NORTH)"; icon_state = "pwall"; dir = 1},/area)
"jV" = (/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/chapel/main)
"jW" = (/obj/machinery/door{icon = 'icons/obj/doors/doormorgue.dmi'; name = "Door"; req_access_txt = "22"},/turf/simulated/floor,/area/chapel/main)
"jX" = (/obj/structure/morgue,/turf/simulated/floor,/area/medical/medbay)
"jY" = (/obj/machinery/sleeper,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"jZ" = (/obj/machinery/sleep_console,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"ka" = (/obj/effect/landmark/start{name = "Chief Medical Officer"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"kb" = (/obj/structure/window/reinforced,/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"kc" = (/obj/structure/window/reinforced,/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"kd" = (/obj/structure/window/reinforced,/obj/structure/table,/obj/item/weapon/pen,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"ke" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"kf" = (/obj/structure/stool/bed/chair{dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"kg" = (/obj/structure/window/reinforced,/turf/simulated/floor,/area/medical/genetics)
"kh" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/medical/genetics)
"ki" = (/obj/machinery/door/window/southright,/turf/simulated/floor,/area/medical/genetics)
"kj" = (/obj/structure/window/reinforced,/obj/structure/closet/secure_closet/medical2,/turf/simulated/floor,/area/medical/genetics)
"kk" = (/obj/structure/window/reinforced,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/medical/genetics)
"kl" = (/obj/structure/window/reinforced,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/turf/simulated/floor,/area/medical/genetics)
"km" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/derelict/storage/equipment)
"kn" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/toxins/lab)
"ko" = (/obj/structure/stool/bed/chair{dir = 1},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/derelict/arrival)
"kp" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor,/area/derelict/arrival)
"kq" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor,/area/derelict/arrival)
"kr" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/derelict/arrival)
"ks" = (/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/space,/area)
"kt" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"ku" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"kv" = (/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"kw" = (/turf/simulated/shuttle/floor{icon_state = "floor3"},/turf/simulated/shuttle/wall{tag = "icon-swall_f6"; icon_state = "swall_f6"; dir = 2},/area)
"kx" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"ky" = (/obj/structure/shuttle/engine/propulsion/burst/left{dir = 8},/turf/space,/area)
"kz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/chapel/main)
"kA" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main)
"kB" = (/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main)
"kC" = (/obj/machinery/light{dir = 1},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main)
"kD" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main)
"kE" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main)
"kF" = (/obj/structure/stool/bed/chair{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main)
"kG" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/medical/medbay)
"kH" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"kI" = (/obj/structure/stool/bed/chair{dir = 8},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/apc{dir = 4; pixel_x = 24},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"kJ" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/medical/genetics)
"kK" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/medical/genetics)
"kL" = (/obj/machinery/dna_scannernew,/turf/simulated/floor,/area/medical/genetics)
"kM" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/computer/scan_consolenew,/turf/simulated/floor,/area/medical/genetics)
"kN" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/dna_scannernew,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/medical/genetics)
"kO" = (/obj/machinery/computer/scan_consolenew,/turf/simulated/floor,/area/medical/genetics)
"kP" = (/obj/structure/table,/obj/item/weapon/storage/diskbox,/turf/simulated/floor,/area/medical/genetics)
"kQ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/derelict/storage/equipment)
"kR" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/derelict/arrival)
"kS" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"kT" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"kU" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"kV" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s9"; icon_state = "swall_s9"; dir = 2},/area)
"kW" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/stool/bed/chair{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/chapel/main)
"kX" = (/obj/structure/table,/turf/simulated/floor{icon_state = "chapel"},/area/chapel/main)
"kY" = (/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/chapel/main)
"kZ" = (/turf/simulated/floor{icon_state = "chapel"},/area/chapel/main)
"la" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/chapel/main)
"lb" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "chapel"},/area/chapel/main)
"lc" = (/obj/machinery/light,/turf/simulated/floor,/area/medical/medbay)
"ld" = (/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"le" = (/obj/effect/landmark/start{name = "Medical Doctor"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"lf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"lg" = (/obj/item/weapon/storage/toolbox/mechanical,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"lh" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/window/eastleft{req_access_txt = "9"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics)
"li" = (/obj/machinery/door/window/eastleft{req_access_txt = "9"},/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/medical/genetics)
"lj" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/medical/genetics)
"lk" = (/obj/structure/window/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/medical/genetics)
"ll" = (/obj/machinery/door/window/southleft{req_access_txt = "9"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/medical/genetics)
"lm" = (/obj/structure/window/reinforced,/obj/effect/landmark/start,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/medical/genetics)
"ln" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/medical/genetics)
"lo" = (/obj/machinery/door/window/eastleft,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/medical/genetics)
"lp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor,/area/medical/genetics)
"lq" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/derelict/storage/equipment)
"lr" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/toxins/lab)
"ls" = (/turf/simulated/wall,/area/toxins/lab)
"lt" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/derelict/arrival)
"lu" = (/obj/machinery/door/window/southright,/turf/simulated/floor,/area/derelict/arrival)
"lv" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s10"; icon_state = "swall_s10"; dir = 2},/area)
"lw" = (/obj/structure/window/reinforced,/turf/space,/area)
"lx" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/chapel/main)
"ly" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main)
"lz" = (/obj/structure/window/reinforced,/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main)
"lA" = (/obj/structure/window/reinforced,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main)
"lB" = (/obj/machinery/door/window/southleft{req_access_txt = "22"},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main)
"lC" = (/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main)
"lD" = (/obj/structure/stool/bed/chair{dir = 8},/obj/effect/landmark/start{name = "Chaplain"},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main)
"lE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"lF" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"lG" = (/mob/living/carbon/monkey,/turf/simulated/floor,/area/medical/genetics)
"lH" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor,/area/medical/genetics)
"lI" = (/obj/effect/landmark/start{name = "Geneticist"},/turf/simulated/floor,/area/medical/genetics)
"lJ" = (/obj/effect/landmark/start{name = "Geneticist"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/medical/genetics)
"lK" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor,/area/derelict/storage/equipment)
"lL" = (/obj/machinery/door/airlock{req_access_txt = "8"},/turf/simulated/floor,/area/toxins/lab)
"lM" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/derelict/arrival)
"lN" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/derelict/arrival)
"lO" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"lP" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"lQ" = (/turf/simulated/floor/plating,/area/chapel/main)
"lR" = (/obj/machinery/door/window/eastleft{req_access_txt = "22"},/turf/simulated/floor/plating,/area/chapel/main)
"lS" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor{icon_state = "chapel"},/area/chapel/main)
"lT" = (/obj/machinery/door/window/eastleft,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/crew_quarters)
"lU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/crew_quarters)
"lV" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/crew_quarters)
"lW" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor,/area/crew_quarters)
"lX" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"lY" = (/obj/structure/stool/bed,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"lZ" = (/obj/structure/stool/bed,/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"ma" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"mb" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"mc" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"md" = (/obj/machinery/light,/turf/simulated/floor,/area/medical/genetics)
"me" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/medical/genetics)
"mf" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor,/area/medical/genetics)
"mg" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/medical/genetics)
"mh" = (/obj/structure/closet/secure_closet/scientist,/turf/simulated/floor,/area/toxins/lab)
"mi" = (/obj/structure/closet/l3closet/general,/turf/simulated/floor,/area/toxins/lab)
"mj" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/glasses/sunglasses,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/toxins/lab)
"mk" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/timer,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/turf/simulated/floor,/area/toxins/lab)
"ml" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/timer,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/toxins/lab)
"mm" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/derelict/arrival)
"mn" = (/obj/structure/stool/bed/chair{dir = 8},/obj/effect/landmark{name = "JoinLate"},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"mo" = (/turf/simulated/shuttle/floor{icon_state = "floor3"},/turf/simulated/shuttle/wall{tag = "icon-swall_f5"; icon_state = "swall_f5"; dir = 2},/area)
"mp" = (/obj/structure/window/reinforced{dir = 1},/turf/space,/area)
"mq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/airless,/area/chapel/main)
"mr" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main)
"ms" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main)
"mt" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main)
"mu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main)
"mv" = (/turf/simulated/wall,/area/crew_quarters)
"mw" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/southleft,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/crew_quarters)
"mx" = (/obj/machinery/door/window/southleft,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"my" = (/obj/machinery/door/window/southright,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay)
"mz" = (/obj/machinery/computer/cloning,/turf/simulated/floor,/area/medical/genetics)
"mA" = (/obj/machinery/clonepod,/turf/simulated/floor,/area/medical/genetics)
"mB" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor,/area/derelict/storage/equipment)
"mC" = (/obj/machinery/door/window/eastleft,/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/derelict/storage/equipment)
"mD" = (/obj/machinery/door/airlock{req_access_txt = "7"},/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/toxins/lab)
"mE" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/toxins/lab)
"mF" = (/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/toxins/lab)
"mG" = (/obj/item/weapon/clipboard,/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/toxins/lab)
"mH" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/toxins/lab)
"mI" = (/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/toxins/lab)
"mJ" = (/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/derelict/arrival)
"mK" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/derelict/arrival)
"mL" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/derelict/arrival)
"mM" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/simulated/floor/plating,/area/derelict/arrival)
"mN" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4; pixel_x = 24},/turf/simulated/floor{icon_state = "chapel"},/area/chapel/main)
"mO" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/chapel/main)
"mP" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor,/area/crew_quarters)
"mQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/crew_quarters)
"mR" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/crew_quarters)
"mS" = (/obj/machinery/computer/card,/turf/simulated/floor,/area/derelict/storage/equipment)
"mT" = (/obj/structure/closet/emcloset/legacy,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/derelict/storage/equipment)
"mU" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/derelict/storage/equipment)
"mV" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/derelict/storage/equipment)
"mW" = (/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor,/area/toxins/lab)
"mX" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/toxins/lab)
"mY" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/derelict/arrival)
"mZ" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/derelict/arrival)
"na" = (/obj/effect/landmark{name = "Observer-Start"},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"nb" = (/obj/machinery/light,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main)
"nc" = (/obj/structure/stool/bed/chair{dir = 8},/obj/machinery/light,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main)
"nd" = (/obj/item/device/flashlight,/turf/simulated/floor,/area/chapel/main)
"ne" = (/turf/simulated/floor,/area/crew_quarters)
"nf" = (/obj/machinery/power/apc{pixel_x = 24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor,/area/crew_quarters)
"ng" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/derelict/storage/equipment)
"nh" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/derelict/storage/equipment)
"ni" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/toxins/lab)
"nj" = (/obj/machinery/door/airlock{req_access_txt = "7"},/turf/simulated/floor,/area/toxins/lab)
"nk" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/derelict/arrival)
"nl" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor,/area/crew_quarters)
"nm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor,/area/crew_quarters)
"nn" = (/obj/machinery/door/window/eastleft,/obj/machinery/door/firedoor/border_only{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/crew_quarters)
"no" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/derelict/storage/equipment)
"np" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor,/area/derelict/storage/equipment)
"nq" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/derelict/storage/equipment)
"nr" = (/obj/item/weapon/extinguisher,/obj/machinery/door_control{id = "bd1"; pixel_x = 24},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/toxins/lab)
"ns" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/derelict/arrival)
"nt" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/derelict/arrival)
"nu" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s5"; icon_state = "swall_s5"; dir = 2},/area)
"nv" = (/turf/simulated/shuttle/floor{icon_state = "floor3"},/turf/simulated/shuttle/wall{dir = 3; icon_state = "swall_f10"; layer = 2; tag = "icon-swall_f10"},/area)
"nw" = (/obj/structure/closet/wardrobe,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"nx" = (/obj/machinery/door/window/southleft{req_access_txt = "19"},/turf/simulated/floor,/area/crew_quarters)
"ny" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor,/area/derelict/storage/equipment)
"nz" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/derelict/storage/equipment)
"nA" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor,/area/derelict/storage/equipment)
"nB" = (/turf/simulated/wall/r_wall,/area/security/brig)
"nC" = (/obj/machinery/door/airlock{req_access_txt = "58"},/turf/simulated/floor,/area/security/brig)
"nD" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/toxins/lab)
"nE" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/toxins/lab)
"nF" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor,/area/toxins/lab)
"nG" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/derelict/arrival)
"nH" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/crew_quarters)
"nI" = (/obj/structure/stool/bed,/turf/simulated/floor,/area/crew_quarters)
"nJ" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/crew_quarters)
"nK" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating,/area/crew_quarters)
"nL" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/crew_quarters)
"nM" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/crew_quarters)
"nN" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/security/brig)
"nO" = (/obj/machinery/door/window/southleft{req_access_txt = "58"},/turf/simulated/floor,/area/security/brig)
"nP" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor,/area/security/brig)
"nQ" = (/turf/simulated/wall,/area/security/brig)
"nR" = (/turf/simulated/wall,/area/derelict/hallway/secondary)
"nS" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/derelict/hallway/secondary)
"nT" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/toxins/lab)
"nU" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/toxins/lab)
"nV" = (/obj/item/weapon/wrench,/turf/simulated/floor,/area/toxins/lab)
"nW" = (/obj/structure/table,/turf/simulated/floor,/area/crew_quarters)
"nX" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light/small,/turf/simulated/floor,/area/crew_quarters)
"nY" = (/obj/structure/rack,/obj/item/clothing/under/color/blue,/obj/item/device/radio/headset,/turf/simulated/floor,/area/crew_quarters)
"nZ" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/crew_quarters)
"oa" = (/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor,/area/derelict/storage/equipment)
"ob" = (/obj/machinery/light,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor,/area/derelict/storage/equipment)
"oc" = (/obj/machinery/portable_atmospherics/pump,/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/derelict/storage/equipment)
"od" = (/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/security/brig)
"oe" = (/obj/structure/closet/secure_closet/security,/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/security/brig)
"of" = (/obj/effect/landmark/start{name = "Security Officer"},/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/security/brig)
"og" = (/obj/structure/table,/obj/machinery/recharger,/obj/item/clothing/glasses/thermal,/obj/machinery/light{dir = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; pixel_x = 0; pixel_y = 24},/turf/simulated/floor,/area/security/brig)
"oh" = (/obj/structure/closet/secure_closet/detective,/turf/simulated/floor,/area/security/brig)
"oi" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/security/brig)
"oj" = (/turf/simulated/floor,/area/security/brig)
"ok" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/security/brig)
"ol" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/wall/r_wall,/area/security/brig)
"om" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/derelict/hallway/secondary)
"on" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor,/area/toxins/lab)
"oo" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/simulated/floor,/area/toxins/lab)
"op" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor,/area/toxins/lab)
"oq" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"or" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"os" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"ot" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/crew_quarters)
"ou" = (/obj/machinery/door/window/southright,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/crew_quarters)
"ov" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Lawyer"},/turf/simulated/floor,/area/crew_quarters)
"ow" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Librarian"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/crew_quarters)
"ox" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/crew_quarters)
"oy" = (/turf/simulated/wall,/area/atmos)
"oz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/wall,/area/atmos)
"oA" = (/obj/machinery/door/airlock{req_access_txt = "24"},/turf/simulated/floor,/area/atmos)
"oB" = (/obj/structure/closet/secure_closet/security,/turf/simulated/floor,/area/security/brig)
"oC" = (/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/security/brig)
"oD" = (/obj/effect/landmark/start{name = "Detective"},/turf/simulated/floor,/area/security/brig)
"oE" = (/obj/effect/landmark/start{name = "Head of Security"},/turf/simulated/floor,/area/security/brig)
"oF" = (/obj/structure/table,/turf/simulated/floor,/area/security/brig)
"oG" = (/obj/structure/closet/wardrobe/orange,/turf/simulated/floor,/area/security/brig)
"oH" = (/turf/simulated/floor,/area/derelict/hallway/secondary)
"oI" = (/turf/simulated/floor{icon_state = "shiny"},/area/toxins/lab)
"oJ" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; icon_state = "on"; on = 1; pixel_y = 1},/turf/simulated/floor{icon_state = "shiny"},/area/toxins/lab)
"oK" = (/obj/structure/closet/wardrobe,/turf/simulated/floor,/area/derelict/arrival)
"oL" = (/obj/structure/closet/wardrobe,/turf/simulated/floor,/area/crew_quarters)
"oM" = (/obj/structure/closet/wardrobe/mixed,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/crew_quarters)
"oN" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/floor,/area/crew_quarters)
"oO" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/simulated/floor,/area/crew_quarters)
"oP" = (/obj/structure/closet,/turf/simulated/floor,/area/crew_quarters)
"oQ" = (/obj/structure/closet,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/crew_quarters)
"oR" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor,/area/crew_quarters)
"oS" = (/obj/structure/table,/obj/item/weapon/packageWrap,/obj/item/weapon/wirecutters,/turf/simulated/floor,/area/crew_quarters)
"oT" = (/obj/structure/table,/obj/item/weapon/pen,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/crew_quarters)
"oU" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Janitor"},/turf/simulated/floor,/area/crew_quarters)
"oV" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/atmos)
"oW" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber{dir = 4; icon_state = "on"; on = 1},/obj/machinery/door/poddoor{id = "ventintake"; name = "Intake Hatch"},/turf/simulated/floor,/area/atmos)
"oX" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor,/area/atmos)
"oY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/atmos)
"oZ" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/atmos)
"pa" = (/obj/machinery/computer/communications,/turf/simulated/floor,/area/security/brig)
"pb" = (/obj/machinery/door/window/eastleft{req_access_txt = "1"},/turf/simulated/floor,/area/security/brig)
"pc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plating,/area/security/brig)
"pd" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; icon_state = "on"; on = 1; pixel_y = 1},/turf/simulated/floor,/area/security/brig)
"pe" = (/obj/structure/stool/bed,/turf/simulated/floor,/area/security/brig)
"pf" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/toxins/lab)
"pg" = (/obj/machinery/light/small,/turf/simulated/floor,/area/toxins/lab)
"ph" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "shiny"},/area/toxins/lab)
"pi" = (/obj/structure/closet/wardrobe/mixed,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/derelict/arrival)
"pj" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area)
"pk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/crew_quarters)
"pl" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/crew_quarters)
"pm" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Cargo Technician"},/turf/simulated/floor,/area/crew_quarters)
"pn" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/crew_quarters)
"po" = (/obj/structure/table,/obj/item/device/radio,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/crew_quarters)
"pp" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Bartender"},/turf/simulated/floor,/area/crew_quarters)
"pq" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 2; icon_state = "on"; on = 1; pixel_y = 1},/turf/simulated/floor,/area/atmos)
"pr" = (/turf/simulated/floor,/area/atmos)
"ps" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/atmos)
"pt" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/atmos)
"pu" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/security/brig)
"pv" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/security/brig)
"pw" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/security/brig)
"px" = (/obj/structure/stool/bed,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/security/brig)
"py" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor{icon_state = "shiny"},/area/toxins/lab)
"pz" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/arrival)
"pA" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/floor,/area/derelict/arrival)
"pB" = (/obj/structure/stool/bed,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/crew_quarters)
"pC" = (/obj/machinery/door/window/eastleft,/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/crew_quarters)
"pD" = (/obj/structure/stool/bed,/obj/effect/landmark/start{name = "Roboticist"},/turf/simulated/floor,/area/crew_quarters)
"pE" = (/obj/structure/stool/bed,/obj/effect/landmark/start{name = "Virologist"},/turf/simulated/floor,/area/crew_quarters)
"pF" = (/obj/structure/stool/bed,/obj/effect/landmark/start{name = "Mime"},/turf/simulated/floor,/area/crew_quarters)
"pG" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/crew_quarters)
"pH" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Clown"},/turf/simulated/floor,/area/crew_quarters)
"pI" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/portable_atmospherics/scrubber/huge,/turf/simulated/floor,/area/atmos)
"pJ" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/simulated/floor,/area/atmos)
"pK" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/portable_atmospherics/scrubber/huge,/turf/simulated/floor,/area/atmos)
"pL" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/atmos)
"pM" = (/obj/machinery/computer/secure_data,/turf/simulated/floor,/area/security/brig)
"pN" = (/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/turf/simulated/floor,/area/security/brig)
"pO" = (/obj/item/weapon/storage/trackimp_kit,/turf/simulated/floor,/area/security/brig)
"pP" = (/obj/item/weapon/paper_bin,/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/security/brig)
"pQ" = (/obj/item/device/flashlight,/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/security/brig)
"pR" = (/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/ears/earmuffs,/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/security/brig)
"pS" = (/obj/structure/window/reinforced{dir = 4},/obj/effect/landmark/start{name = "Warden"},/turf/simulated/floor,/area/security/brig)
"pT" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/toxins/lab)
"pU" = (/obj/structure/grille,/turf/simulated/floor,/area/toxins/lab)
"pV" = (/obj/machinery/door/window/eastright,/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/crew_quarters)
"pW" = (/obj/structure/stool/bed,/obj/effect/landmark/start{name = "Shaft Miner"},/turf/simulated/floor,/area/crew_quarters)
"pX" = (/obj/structure/stool/bed,/obj/effect/landmark/start{name = "Quartermaster"},/turf/simulated/floor,/area/crew_quarters)
"pY" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/crew_quarters)
"pZ" = (/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/mask/gas,/obj/item/weapon/tank/oxygen,/obj/item/weapon/weldingtool,/obj/item/clothing/gloves/black,/turf/simulated/floor,/area/crew_quarters)
"qa" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Chef"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/crew_quarters)
"qb" = (/obj/item/weapon/storage/backpack,/turf/simulated/floor,/area/crew_quarters)
"qc" = (/obj/structure/grille,/obj/machinery/atmospherics/unary/outlet_injector{dir = 2; icon_state = "on"; on = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/atmos)
"qd" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor,/area/atmos)
"qe" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/atmos)
"qf" = (/obj/structure/table,/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/weapon/clipboard,/obj/item/weapon/crowbar,/turf/simulated/floor,/area/security/brig)
"qg" = (/obj/structure/table,/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor,/area/security/brig)
"qh" = (/obj/structure/table,/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/light,/turf/simulated/floor,/area/security/brig)
"qi" = (/obj/machinery/computer/security,/turf/simulated/floor,/area/security/brig)
"qj" = (/obj/machinery/computer/card,/turf/simulated/floor,/area/security/brig)
"qk" = (/obj/structure/closet/wardrobe/red,/turf/simulated/floor,/area/security/brig)
"ql" = (/obj/structure/closet/wardrobe/orange,/obj/machinery/light,/turf/simulated/floor,/area/security/brig)
"qm" = (/obj/machinery/door/poddoor{id = "bd1"; name = "Vent"},/turf/simulated/floor{icon_state = "shiny"},/area/toxins/lab)
"qn" = (/obj/structure/window/reinforced{dir = 5},/turf/simulated/floor/plating,/area/derelict/arrival)
"qo" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/derelict/arrival)
"qp" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelict/arrival)
"qq" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/crew_quarters)
"qr" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/atmos)
"qs" = (/obj/structure/grille,/turf/simulated/floor,/area/atmos)
"qt" = (/obj/machinery/door/poddoor{id = "vent1"; name = "Vent Hatch"},/turf/simulated/floor,/area/atmos)
"qu" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor,/area/atmos)
"qv" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/atmos)
"qw" = (/turf/simulated/wall/r_wall,/area/derelict/hallway/secondary)
"qx" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/airless,/area/derelict/arrival)
"qy" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/derelict/arrival)
"qz" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/airless,/area/derelict/arrival)
"qA" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area)
"qB" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area)
"qC" = (/obj/machinery/door/window/southleft,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/crew_quarters)
"qD" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor,/area/atmos)
"qE" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor,/area/atmos)
"qF" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/atmos)
"qG" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/unary/outlet_injector{dir = 2; icon_state = "on"; on = 1; pixel_y = 1},/turf/simulated/floor,/area/atmos)
"qH" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/atmos)
"qI" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/atmos)
"qJ" = (/obj/machinery/power/monitor,/turf/simulated/floor,/area/atmos)
"qK" = (/turf/simulated/wall/r_wall,/area/atmos)
"qL" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/atmos)
"qM" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/atmos)
"qN" = (/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/derelict/hallway/secondary)
"qO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/derelict/hallway/secondary)
"qP" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/derelict/hallway/secondary)
"qQ" = (/obj/structure/closet/secure_closet/security,/turf/simulated/floor,/area/derelict/storage/storage_access)
"qR" = (/turf/simulated/floor,/area/derelict/storage/storage_access)
"qS" = (/obj/machinery/computer/security,/turf/simulated/floor,/area/derelict/storage/storage_access)
"qT" = (/turf/simulated/wall,/area/derelict/storage/storage_access)
"qU" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/derelict/storage/storage_access)
"qV" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/under/color/black,/obj/item/clothing/mask/gas,/obj/item/device/radio/headset,/obj/item/clothing/gloves/black,/obj/item/clothing/shoes/black,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/derelict/storage/storage_access)
"qW" = (/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/derelict/storage/storage_access)
"qX" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor,/area/derelict/storage/storage_access)
"qY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/derelict/storage/storage_access)
"qZ" = (/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/derelict/storage/storage_access)
"ra" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/computer/atmos_alert,/turf/simulated/floor,/area/atmos)
"rb" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/atmos)
"rc" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/atmos)
"rd" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/atmos)
"re" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelict/hallway/secondary)
"rf" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area)
"rg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/derelict/hallway/secondary)
"rh" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/derelict/hallway/secondary)
"ri" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor,/area/derelict/storage/storage_access)
"rj" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/clipboard,/turf/simulated/floor,/area/derelict/storage/storage_access)
"rk" = (/obj/structure/stool/bed/chair{dir = 1},/obj/machinery/door_control{id = "vent1"; pixel_x = -24},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/atmos)
"rl" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor,/area/atmos)
"rm" = (/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor,/area/atmos)
"rn" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor,/area/atmos)
"ro" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/atmos)
"rp" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor,/area/atmos)
"rq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelict/hallway/secondary)
"rr" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/turf/simulated/floor/plating/airless,/area)
"rs" = (/obj/machinery/power/monitor,/turf/simulated/floor,/area/derelict/hallway/secondary)
"rt" = (/obj/machinery/door/window/eastleft{req_access_txt = "1"},/turf/simulated/floor,/area/derelict/hallway/secondary)
"ru" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor,/area/derelict/storage/storage_access)
"rv" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/derelict/storage/storage_access)
"rw" = (/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/derelict/storage/storage_access)
"rx" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/crowbar,/turf/simulated/floor,/area/derelict/storage/storage_access)
"ry" = (/obj/machinery/door_control{id = "ventintake"; pixel_x = -24},/turf/simulated/floor,/area/atmos)
"rz" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/atmos)
"rA" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/atmos)
"rB" = (/obj/structure/window/reinforced{dir = 1},/obj/item/clothing/mask/gas,/turf/simulated/floor,/area/atmos)
"rC" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/atmos)
"rD" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor,/area/atmos)
"rE" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor,/area/derelict/hallway/secondary)
"rF" = (/obj/machinery/door/window/eastleft,/obj/machinery/door/firedoor/border_only{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/derelict/hallway/secondary)
"rG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/derelict/hallway/secondary)
"rH" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor,/area/derelict/hallway/secondary)
"rI" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/light,/turf/simulated/floor,/area/derelict/hallway/secondary)
"rJ" = (/obj/structure/table,/obj/item/weapon/handcuffs,/obj/item/device/multitool,/turf/simulated/floor,/area/derelict/storage/storage_access)
"rK" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/derelict/storage/storage_access)
"rL" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light,/turf/simulated/floor,/area/derelict/storage/storage_access)
"rM" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/derelict/storage/storage_access)
"rN" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor,/area/derelict/storage/storage_access)
"rO" = (/obj/structure/closet/emcloset/legacy,/obj/machinery/light,/turf/simulated/floor,/area/derelict/storage/storage_access)
"rP" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/atmos)
"rQ" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/atmos)
"rR" = (/obj/item/clothing/shoes/brown,/obj/item/clothing/under/rank/atmospheric_technician,/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/atmos)
"rS" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelict/hallway/secondary)
"rT" = (/obj/machinery/door/airlock{req_access_txt = "12"},/turf/simulated/floor,/area/derelict/storage/storage_access)
"rU" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/derelict/storage/storage_access)
"rV" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/atmos)
"rW" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor,/area/atmos)
"rX" = (/obj/item/weapon/paper_bin,/turf/simulated/floor,/area/atmos)
"rY" = (/obj/item/weapon/clipboard,/turf/simulated/floor,/area/atmos)
"rZ" = (/obj/structure/table,/obj/item/device/multitool,/obj/item/device/multitool,/obj/item/device/multitool,/obj/item/device/multitool,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/atmos)
"sa" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/atmos)
"sb" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/atmos)
"sc" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area)
"sd" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area)
"se" = (/obj/machinery/door/airlock{req_access_txt = "10;13"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/derelict/hallway/secondary)
"sf" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = "90Curve"},/turf/simulated/floor,/area/derelict/hallway/secondary)
"sg" = (/obj/machinery/door/window/eastleft{req_access_txt = "10"},/turf/simulated/floor,/area/derelict/hallway/secondary)
"sh" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/derelict/storage/storage_access)
"si" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor,/area/derelict/storage/storage_access)
"sj" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/derelict/storage/storage_access)
"sk" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light,/turf/simulated/floor,/area/atmos)
"sl" = (/obj/machinery/atmospherics/valve,/turf/simulated/floor,/area/atmos)
"sm" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor,/area/atmos)
"sn" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/atmos)
"so" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/obj/item/device/radio,/obj/item/weapon/screwdriver,/obj/item/weapon/crowbar,/turf/simulated/floor,/area/atmos)
"sp" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/obj/item/weapon/screwdriver,/obj/item/weapon/extinguisher,/obj/item/weapon/crowbar,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/atmos)
"sq" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light,/turf/simulated/floor,/area/atmos)
"sr" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/obj/item/weapon/screwdriver,/obj/item/device/t_scanner,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/atmos)
"ss" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/obj/item/weapon/screwdriver,/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/atmos)
"st" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/derelict/hallway/secondary)
"su" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelict/hallway/secondary)
"sv" = (/obj/machinery/power/solar_control,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/derelict/hallway/secondary)
"sw" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/apc{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/derelict/hallway/secondary)
"sx" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/storage/storage_access)
"sy" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/derelict/storage/storage_access)
"sz" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/derelict/storage/storage_access)
"sA" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/simulated/floor,/area/atmos)
"sB" = (/obj/machinery/atmospherics/valve{dir = 4},/turf/simulated/floor,/area/atmos)
"sC" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor,/area/atmos)
"sD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/space,/area/derelict/hallway/secondary)
"sE" = (/obj/machinery/power/terminal,/obj/structure/cable,/turf/simulated/floor,/area/derelict/hallway/secondary)
"sF" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/under/color/black,/obj/item/clothing/mask/gas,/obj/item/device/radio/headset,/obj/item/clothing/gloves/black,/obj/item/clothing/shoes/black,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/derelict/storage/storage_access)
"sG" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/under/color/black,/obj/item/clothing/mask/gas,/obj/item/device/radio/headset,/obj/item/clothing/gloves/black,/obj/item/clothing/shoes/black,/obj/item/clothing/glasses/sunglasses,/obj/machinery/light,/turf/simulated/floor,/area/derelict/storage/storage_access)
"sH" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/obj/machinery/light,/turf/simulated/floor,/area/derelict/storage/storage_access)
"sI" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/t_scanner,/turf/simulated/floor,/area/derelict/storage/storage_access)
"sJ" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin,/turf/simulated/floor,/area/derelict/storage/storage_access)
"sK" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/derelict/storage/storage_access)
"sL" = (/obj/machinery/light,/turf/simulated/floor,/area/derelict/storage/storage_access)
"sM" = (/obj/structure/table,/obj/item/clothing/mask/gas,/turf/simulated/floor,/area/derelict/storage/storage_access)
"sN" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor,/area/atmos)
"sO" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/light,/turf/simulated/floor,/area/atmos)
"sP" = (/obj/structure/table,/obj/item/weapon/cell,/obj/item/weapon/cell,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/device/flashlight,/turf/simulated/floor,/area/atmos)
"sQ" = (/obj/structure/table,/obj/item/weapon/cell,/obj/item/weapon/cell,/obj/item/weapon/cell,/obj/item/weapon/cell,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/atmos)
"sR" = (/obj/structure/window/reinforced{dir = 5},/turf/space,/area)
"sS" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/derelict/hallway/secondary)
"sT" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/derelict/hallway/secondary)
"sU" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{tag = ""; icon_state = "4-8"; step_x = 0; pixel_x = 0; d1 = 4; d2 = 8},/turf/simulated/floor,/area/derelict/hallway/secondary)
"sV" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable,/turf/simulated/floor,/area/derelict/hallway/secondary)
"sW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelict/hallway/secondary)
"sX" = (/obj/structure/window/reinforced{dir = 4},/turf/space,/area)
"sY" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/derelict/hallway/secondary)
"sZ" = (/obj/structure/window/reinforced{dir = 8},/turf/space,/area)
"ta" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/turf/simulated/floor/plating/airless,/area)
"tb" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor,/area/derelict/hallway/secondary)
"tc" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor,/area/derelict/hallway/secondary)
"td" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor,/area/derelict/hallway/secondary)
"te" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/derelict/hallway/secondary)
"tf" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/derelict/hallway/secondary)
"tg" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/hallway/secondary)
"th" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/derelict/hallway/secondary)
"ti" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/derelict/hallway/secondary)
"tj" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area)
"tk" = (/obj/machinery/door/airlock{req_access_txt = "17"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor,/area/derelict/teleporter)
"tl" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelict/hallway/secondary)