forked from TinManTex/SnakeBite
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfpk_dictionary.txt
2063 lines (2063 loc) · 154 KB
/
fpk_dictionary.txt
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
/Assets/tpp/chara/nin/Scenes/nin0_main0_def.fmdl
/Assets/tpp/chara/nin/Scenes/nin0_main0_def.fcnp
/Assets/tpp/chara/sna/Scenes/sna2_main0_def.fmdl
/Assets/tpp/chara/sna/Scenes/sna2_main0_def.fcnp
/Assets/tpp/chara/sna/Scenes/sna6_main0_def.fmdl
/Assets/tpp/chara/sna/Scenes/sna6_main0_def.fcnp
/Assets/tpp/chara/rai/Scenes/rai0_main0_def.fmdl
/Assets/tpp/chara/rai/Scenes/rai0_main0_def.fcnp
/Assets/tpp/parts/weapon/amo/am10_main0_def.parts
/Assets/tpp/parts/weapon/hag/hg00_ammo0_def.parts
/Assets/tpp/parts/weapon/amo/am07_main0_def.parts
/Assets/tpp/parts/weapon/amo/am00_main0_def.parts
/Assets/tpp/parts/weapon/amo/am02_main0_def.parts
/Assets/tpp/parts/weapon/amo/am04_main0_def.parts
/Assets/tpp/parts/weapon/amo/am01_main0_def.parts
/Assets/tpp/parts/weapon/amo/am10_main0_def.parts
/Assets/tpp/parts/weapon/hag/hg00_ammo0_def.parts
/Assets/tpp/parts/weapon/amo/am07_main0_def.parts
/Assets/tpp/parts/weapon/amo/am00_main0_def.parts
/Assets/tpp/parts/weapon/amo/am02_main0_def.parts
/Assets/tpp/parts/weapon/amo/am04_main0_def.parts
/Assets/tpp/parts/weapon/amo/am01_main0_def.parts
/Assets/tpp/parts/weapon/amo/am00_main0_def.parts
/Assets/tpp/parts/weapon/amo/am08_main0_def.parts
/Assets/tpp/parts/weapon/amo/am09_main0_def.parts
/Assets/tpp/parts/weapon/hag/hg01_ammo0_def.parts
/Assets/tpp/parts/weapon/amo/am06_main0_def.parts
/Assets/tpp/parts/weapon/hag/hg04_ammo0_def.parts
/Assets/tpp/parts/weapon/amo/am09_main0_def.parts
/Assets/tpp/parts/weapon/amo/am02_main0_def.parts
/Assets/tpp/parts/weapon/mis/ms01_ammo0_def.parts
/Assets/tpp/parts/weapon/smg/sm00_supp0_def.parts
/Assets/tpp/parts/weapon/amo/am09_main0_def.parts
/Assets/tpp/parts/weapon/sup/su00_main0_def.parts
/Assets/tpp/parts/weapon/sup/su02_main0_def.parts
/Assets/tpp/parts/weapon/amo/am01_main0_def.parts
/Assets/tpp/parts/weapon/amo/am02_main0_def.parts
/Assets/tpp/parts/weapon/hag/hg00_ammo0_def.parts
/Assets/tpp/parts/weapon/bul/bu01_whed0_def.parts
/Assets/tpp/parts/item/bin/bin0_main0_def.parts
/Assets/tpp/parts/item/cbx/cbx0_main0_def.parts
/Assets/tpp/parts/item/lig/lig0_main0_def.parts
/Assets/tpp/parts/item/idr/idr0_main0_def_v00.parts
/Assets/tpp/parts/item/m4a1_sup/m4a1_sup.parts
/Assets/tpp/parts/weapon/put/pt02_main0_def.parts
/Assets/tpp/parts/weapon/bld/bl00_main0_def.parts
/Assets/tpp/parts/item/psi/psi0_main0_def.parts
/Assets/tpp/parts/item/cct/cct0_main1_def_v00.parts
/Assets/tpp/parts/chara/wss/wss2_eqit1_def_v00.parts
/Assets/tpp/item/sku/Scenes/sku0_main0_def.fmdl
/Assets/tpp/parts/chara/wss/la_patch_def_v00.parts
/Assets/tpp/parts/item/mds/mds0_main0_def_v00.parts
/Assets/tpp/item/pic/Scenes/pic0_main0_def.fmdl
/Assets/tpp/item/pic/Scenes/pic0_lhan0_def.fmdl
/Assets/tpp/parts/item/thm/Scenes/thm0_main0_def.fmdl
/Assets/tpp/parts/item/tab/tab0_main0_def_v00.parts
/Assets/tpp/parts/item/tab/tab0_cese0_def_v00.parts
/Assets/tpp/parts/item/rdi/rdi0_main0_def_v00.parts
/Assets/tpp/parts/weapon/bld/bl05_main0_def_v00.parts
/Assets/tpp/parts/weapon/assemble/asr/ar01_v00_cm.parts
/Assets/tpp/parts/weapon/assemble/asr/ar01_v01_cm.parts
/Assets/tpp/parts/mecha/shl/shl0_main0_def.parts
/Assets/tpp/parts/weapon/hag/hg00_main0_aw0_v00.parts
/Assets/tpp/parts/weapon/assemble/asr/ar00_v00_cm.parts
/Assets/tpp/parts/weapon/assemble/shg/sg01_v00_cm.parts
/Assets/tpp/parts/weapon/bld/bl03_main0_def.parts
/Assets/tpp/parts/weapon/hew/hw00_ammo0_def.parts
/Assets/tpp/parts/weapon/hew/hw00_ammo0_def_v02.parts
/Assets/tpp/parts/weapon/hew/hw00_ammo1_def.parts
/Assets/tpp/parts/weapon/assemble/snr/sr02_v00_cm.parts
/Assets/tpp/parts/weapon/assemble/snr/sr00_v00_cm.parts
/Assets/tpp/parts/weapon/assemble/hag/hg01_main0_aw0_v00.parts
/Assets/tpp/parts/weapon/assemble/mag/mg01_v00_cm.parts
/Assets/tpp/parts/weapon/assemble/asr/ar00_v03_cm.parts
/Assets/tpp/parts/weapon/assemble/snr/sr00_v00_cm.parts
/Assets/tpp/parts/weapon/assemble/snr/sr01_v00_cm.parts
/Assets/tpp/parts/weapon/hew/hw01_main0_def.parts
/Assets/tpp/parts/weapon/assemble/grl/gl01_v00_cm.parts
/Assets/tpp/parts/weapon/bul/bu01_whed0_def.parts
/Assets/tpp/parts/weapon/hew/hw01_main0_def.parts
/Assets/tpp/parts/weapon/assemble/asr/ar01_v00_cm.parts
/Assets/tpp/parts/weapon/hew/hw01_main0_def_v00.parts
/Assets/tpp/parts/weapon/hew/hw01_main0_def_v01.parts
/Assets/tpp/parts/weapon/hew/hw01_main0_def_v02.parts
/Assets/tpp/parts/weapon/hew/hw03_main0_def_v00.parts
/Assets/tpp/parts/weapon/hew/hw03_main0_def_v02.parts
/Assets/tpp/parts/mecha/uth/uth0_mgun0_def.parts
/Assets/tpp/parts/weapon/assemble/snr/sr00_v00_cm.parts
/Assets/tpp/parts/weapon/assemble/asr/ar01_main1_aw0_v00.parts
/Assets/tpp/parts/weapon/amo/am10_main0_def_v00.parts
/Assets/tpp/parts/weapon/assemble/asr/ar02_v00_cm.parts
/Assets/tpp/parts/weapon/amo/am00_main0_def.parts
/Assets/tpp/parts/weapon/assemble/snr/sr00_v00_cm.parts
/Assets/tpp/parts/weapon/amo/am02_main0_def.parts
/Assets/tpp/parts/weapon/assemble/snr/sr02_v00_cm.parts
/Assets/tpp/parts/weapon/amo/am09_main0_def.parts
/Assets/tpp/parts/weapon/assemble/mag/mg02_v00_cm.parts
/Assets/tpp/parts/weapon/amo/am08_main0_def.parts
/Assets/tpp/parts/weapon/assemble/hag/hg00_v00_cm.parts
/Assets/tpp/parts/weapon/hag/hg04_main0_def.parts
/Assets/tpp/parts/weapon/hag/hg04_ammo0_def.parts
/Assets/tpp/parts/weapon/hag/hg08_main0_def.parts
/Assets/tpp/parts/weapon/hag/hg08_ammo0_def.parts
/Assets/tpp/parts/weapon/assemble/smg/sm00_v01_sa.parts
/Assets/tpp/parts/weapon/mis/ms00_main0_def.parts
/Assets/tpp/parts/weapon/mis/ms00_ammo0_def.parts
/Assets/tpp/parts/weapon/mis/ms00_ammo0_def.parts
/Assets/tpp/parts/weapon/enw/ew00_main0_def_v00.parts
/Assets/tpp/parts/weapon/amo/am02_main0_def.parts
/Assets/tpp/weapon/amo/Scenes/am00_main0_def.fmdl
/Assets/tpp/parts/weapon/put/pt03_main0_def.parts
/Assets/tpp/parts/weapon/assemble/hag/hg00_main0_aw0_v00.parts
/Assets/tpp/parts/weapon/hag/hg00_ammo0_def.parts
/Assets/tpp/parts/weapon/assemble/hag/hg01_main0_aw0_v00.parts
/Assets/tpp/parts/weapon/hag/hg01_ammo0_def.parts
/Assets/tpp/parts/weapon/hag/hg02_main0_def_v00.parts
/Assets/tpp/weapon/amo/Scenes/am12_main0_def.fmdl
/Assets/tpp/parts/weapon/assemble/smg/sm00_main0_aw0_v00.parts
/Assets/tpp/weapon/amo/Scenes/am04_main0_def.fmdl
/Assets/tpp/parts/weapon/assemble/asr/ar00_main0_aw0_v00.parts
/Assets/tpp/parts/weapon/assemble/asr/ar00_main0_aw1_v00.parts
/Assets/tpp/parts/weapon/assemble/asr/ar00_main0_aw3_v00.parts
/Assets/tpp/parts/weapon/assemble/asr/ar00_main0_aw3_v01.parts
/Assets/tpp/parts/weapon/assemble/asr/ar00_main0_asw_v04.parts
/Assets/tpp/parts/weapon/assemble/asr/ar00_main0_aw5_v00.parts
/Assets/tpp/weapon/amo/Scenes/am00_main0_def.fmdl
/Assets/tpp/weapon/amo/Scenes/am05_main0_def.fmdl
/Assets/tpp/parts/weapon/assemble/snr/sr01_main0_aw1_v00.parts
/Assets/tpp/weapon/amo/Scenes/am09_main0_def.fmdl
/Assets/tpp/parts/weapon/assemble/shg/sg01_main0_aw0_v00.parts
/Assets/tpp/weapon/amo/Scenes/am12_main0_def.fmdl
/Assets/tpp/parts/weapon/mis/ms02_main0_def_v00.parts
/Assets/tpp/parts/weapon/mis/ms02_ammo0_def_v00.parts
/Assets/tpp/parts/weapon/mis/ms02_ammo0_def_v00.parts
/Assets/tpp/parts/weapon/thr/tr01_main0_def_v00.parts
/Assets/tpp/parts/weapon/thr/tr00_main0_def_v01.parts
/Assets/tpp/parts/weapon/thr/tr00_main0_def_v00.parts
/Assets/tpp/parts/weapon/put/pt01_main0_def_v00.parts
/Assets/tpp/item/ibo/Scenes/ibo0_main0_def.fmdl
/Assets/tpp/item/ibo/Scenes/ibo0_main0_def.fmdl
/Assets/tpp/item/ibo/Scenes/ibo2_main0_def.fmdl
/Assets/tpp/item/ibo/Scenes/ibo1_main0_def.fmdl
/Assets/tpp/item/ibo/Scenes/ibo1_main1_def.fmdl
/Assets/tpp/item/ibo/Scenes/ibo1_main0_def.fmdl
/Assets/tpp/item/ibo/Scenes/ibo3_main1_def.fmdl
/Assets/tpp/item/ibo/Scenes/ibo3_main0_def.fmdl
/Assets/tpp/item/ibo/Scenes/ibo4_main0_def.fmdl
/Assets/tpp/parts/weapon/asr/ar00_main0_def_v00.parts
/Assets/tpp/parts/weapon/asr/ar01_main0_def_v00.parts
/Assets/tpp/parts/weapon/asr/ar02_main0_def_v00.parts
/Assets/tpp/parts/weapon/asr/ar03_main0_def_v00.parts
/Assets/tpp/parts/weapon/snr/sr00_main0_def_v00.parts
/Assets/tpp/parts/weapon/snr/sr03_main0_def_v00.parts
/Assets/tpp/parts/weapon/mag/mg01_main0_def_v00.parts
/Assets/tpp/parts/weapon/mag/mg02_main0_def_v00.parts
/Assets/tpp/parts/weapon/amo/am00_main0_def_v00.parts
/Assets/tpp/parts/weapon/amo/am01_main0_def_v00.parts
/Assets/tpp/parts/weapon/amo/am02_main0_def_v00.parts
/Assets/tpp/parts/weapon/amo/am04_main0_def_v00.parts
/Assets/tpp/parts/weapon/amo/am05_main0_def_v00.parts
/Assets/tpp/parts/weapon/amo/am06_main0_def_v00.parts
/Assets/tpp/parts/weapon/amo/am08_main0_def_v00.parts
/Assets/tpp/parts/weapon/amo/am09_main0_def_v00.parts
/Assets/tpp/parts/weapon/amo/am10_main0_def_v00.parts
/Assets/tpp/parts/weapon/amo/am12_main0_def_v00.parts
/Assets/tpp/parts/weapon/bar/ba00_main0_def_v00.parts
/Assets/tpp/parts/weapon/bar/ba01_main0_def_v00.parts
/Assets/tpp/parts/weapon/bar/ba02_main0_def_v00.parts
/Assets/tpp/parts/weapon/bar/ba03_main0_def_v00.parts
/Assets/tpp/parts/weapon/bar/ba04_main0_def_v00.parts
/Assets/tpp/parts/weapon/bar/ba05_main0_def_v00.parts
/Assets/tpp/parts/weapon/bar/ba06_main0_def_v00.parts
/Assets/tpp/parts/weapon/bar/ba07_main0_def_v00.parts
/Assets/tpp/parts/weapon/stk/sk00_main0_def_v00.parts
/Assets/tpp/parts/weapon/stk/sk01_main0_def_v00.parts
/Assets/tpp/parts/weapon/stk/sk02_main0_def_v00.parts
/Assets/tpp/parts/weapon/stk/sk04_main0_def_v00.parts
/Assets/tpp/parts/weapon/stk/sk06_main0_def_v00.parts
/Assets/tpp/parts/weapon/mzl/mz00_main0_def_v00.parts
/Assets/tpp/parts/weapon/mzl/mz01_main0_def_v00.parts
/Assets/tpp/parts/weapon/mzl/mz02_main0_def_v00.parts
/Assets/tpp/parts/weapon/mzl/mz03_main0_def_v00.parts
/Assets/tpp/parts/weapon/mzl/mz04_main0_def_v00.parts
/Assets/tpp/parts/weapon/mzl/mz05_main0_def_v00.parts
/Assets/tpp/parts/weapon/mzl/mz06_main0_def_v00.parts
/Assets/tpp/parts/weapon/mzl/mz07_main0_def_v00.parts
/Assets/tpp/parts/weapon/mzl/mz08_main0_def_v00.parts
/Assets/tpp/parts/weapon/mzl/mz09_main0_def_v00.parts
/Assets/tpp/parts/weapon/mzl/mz10_main0_def_v00.parts
/Assets/tpp/parts/weapon/mzl/mz11_main0_def_v00.parts
/Assets/tpp/parts/weapon/mzl/mz12_main0_def_v00.parts
/Assets/tpp/parts/weapon/mzl/mz13_main0_def_v00.parts
/Assets/tpp/parts/weapon/sit/st00_main0_def_v00.parts
/Assets/tpp/parts/weapon/sit/st01_main0_def_v00.parts
/Assets/tpp/parts/weapon/flt/fl00_main0_def_v00.parts
/Assets/tpp/parts/weapon/flt/fl01_main0_def_v00.parts
/Assets/tpp/parts/weapon/flt/fl02_main0_def_v00.parts
/Assets/tpp/parts/weapon/lsr/ls00_main0_def_v00.parts
/Assets/tpp/parts/weapon/grl/gl00_main0_def_v00.parts
/Assets/tpp/parts/weapon/assemble/asr/ar00_v00_cm.parts
/Assets/tpp/parts/weapon/assemble/asr/ar01_v00_cm.parts
/Assets/tpp/parts/weapon/assemble/smg/sm00_v00_sa.parts
/Assets/tpp/parts/weapon/assemble/snr/sr00_v00_cm.parts
/Assets/tpp/chara/dds/Scenes/dds2_main0_def.fmdl
/Assets/tpp/chara/dds/Scenes/dds2_main0_def.fcnp
/Assets/tpp/chara/wss/Scenes/la_patch_def.fmdl
/Assets/tpp/chara/wss/Scenes/wss2_eqit1_def.fmdl
/Assets/tpp/effect/vfx_model/fxm_bulletmark/scenes/fxm_blmk_glas001.fmdl
/Assets/tpp/effect/vfx_model/fxm_bulletmark/scenes/fxm_blmk_iron001.fmdl
/Assets/tpp/effect/vfx_model/fxm_bulletmark/scenes/fxm_blmk_rock001.fmdl
/Assets/tpp/effect/vfx_model/fxm_bulletmark/scenes/fxm_blmk_wood001.fmdl
/Assets/tpp/effect/vfx_model/fxm_cone/Scenes/fxm_cone.fmdl
/Assets/tpp/environ/object/guantanamo/stone/gntn_ston001/scenes/gntn_ston001_vrtn001.fmdl
/Assets/tpp/item/bin/Scenes/bin0_main0_def.fmdl
/Assets/tpp/item/cct/Scenes/cct0_main1_def.fmdl
/Assets/tpp/item/ibo/Scenes/ibo0_main0_def.fmdl
/Assets/tpp/item/ibo/Scenes/ibo1_main0_def.fmdl
/Assets/tpp/item/ibo/Scenes/ibo1_main1_def.fmdl
/Assets/tpp/item/ibo/Scenes/ibo2_main0_def.fmdl
/Assets/tpp/item/ibo/Scenes/ibo3_main0_def.fmdl
/Assets/tpp/item/ibo/Scenes/ibo3_main1_def.fmdl
/Assets/tpp/item/ibo/Scenes/ibo4_main0_def.fmdl
/Assets/tpp/item/idr/Scenes/idr0_main0_def.fmdl
/Assets/tpp/item/mds/Scenes/mds0_main0_def.fmdl
/Assets/tpp/item/pic/Scenes/pic0_lhan0_def.fmdl
/Assets/tpp/item/pic/Scenes/pic0_main0_def.fmdl
/Assets/tpp/item/thm/Scenes/thm0_main0_def.fmdl
/Assets/tpp/weapon/amo/Scenes/am00_main0_def.fmdl
/Assets/tpp/weapon/amo/Scenes/am04_main0_def.fmdl
/Assets/tpp/weapon/amo/Scenes/am05_main0_def.fmdl
/Assets/tpp/weapon/amo/Scenes/am09_main0_def.fmdl
/Assets/tpp/weapon/amo/Scenes/am12_main0_def.fmdl
/Assets/tpp/weapon/asw/Scenes/ar00_main0_aw1.fmdl
/Assets/tpp/weapon/asw/Scenes/ar00_main0_aw3.fmdl
/Assets/tpp/weapon/asw/Scenes/ar00_main0_aw5.fmdl
/Assets/tpp/weapon/asw/Scenes/hg00_main0_aw0.fmdl
/Assets/tpp/weapon/asw/Scenes/hg01_main0_aw0.fmdl
/Assets/tpp/weapon/asw/Scenes/sg01_main0_aw0.fmdl
/Assets/tpp/weapon/asw/Scenes/sm00_main0_aw0.fmdl
/Assets/tpp/weapon/asw/Scenes/sr01_main0_aw1.fmdl
/Assets/tpp/weapon/bld/Scenes/bl00_main0_def.fmdl
/Assets/tpp/weapon/bul/Scenes/bu00_main0_def.fmdl
/Assets/tpp/weapon/bul/Scenes/bu01_main0_def.fmdl
/Assets/tpp/weapon/bul/Scenes/bu01_whed0_def.fmdl
/Assets/tpp/weapon/bul/Scenes/bu02_main0_def.fmdl
/Assets/tpp/weapon/bul/Scenes/bu03_main0_def.fmdl
/Assets/tpp/weapon/bul/Scenes/bu11_bltl0_def.fmdl
/Assets/tpp/weapon/hag/Scenes/hg00_ammo0_def.fmdl
/Assets/tpp/weapon/hag/Scenes/hg01_ammo0_def.fmdl
/Assets/tpp/weapon/hag/Scenes/hg02_main0_def.fmdl
/Assets/tpp/weapon/mis/Scenes/ms02_ammo0_def.fmdl
/Assets/tpp/weapon/mis/Scenes/ms02_main0_def.fmdl
/Assets/tpp/weapon/put/Scenes/pt01_main0_def.fmdl
/Assets/tpp/weapon/put/Scenes/pt02_main0_def.fmdl
/Assets/tpp/weapon/thr/Scenes/tr00_main0_def.fmdl
/Assets/tpp/weapon/thr/Scenes/tr00_main1_def.fmdl
/Assets/tpp/weapon/thr/Scenes/tr01_main0_def.fmdl
/Assets/tpp/item/idr/Scenes/idr0_main0_def.fcnp
/Assets/tpp/item/mds/Scenes/mds0_main0_def.fcnp
/Assets/tpp/weapon/asw/Scenes/ar00_main0_aw1.fcnp
/Assets/tpp/weapon/asw/Scenes/ar00_main0_aw3.fcnp
/Assets/tpp/weapon/asw/Scenes/ar00_main0_aw5.fcnp
/Assets/tpp/weapon/asw/Scenes/hg00_main0_aw0.fcnp
/Assets/tpp/weapon/asw/Scenes/hg01_main0_aw0.fcnp
/Assets/tpp/weapon/asw/Scenes/sg01_main0_aw0.fcnp
/Assets/tpp/weapon/asw/Scenes/sm00_main0_aw0.fcnp
/Assets/tpp/weapon/asw/Scenes/sr01_main0_aw1.fcnp
/Assets/tpp/weapon/hag/Scenes/hg02_main0_def.fcnp
/Assets/tpp/weapon/mis/Scenes/ms02_ammo0_def.fcnp
/Assets/tpp/weapon/mis/Scenes/ms02_main0_def.fcnp
/Assets/tpp/weapon/put/Scenes/pt01_main0_def.fcnp
/Assets/tpp/weapon/put/Scenes/pt02_main0_def.fcnp
/Assets/tpp/weapon/thr/Scenes/tr00_main0_def.fcnp
/Assets/tpp/weapon/thr/Scenes/tr01_main0_def.fcnp
/Assets/tpp/common_source/environ/guantanamo/cm_gntn_chin001/scenes/cm_gntn_chin001.fmdl
/Assets/tpp/common_source/environ/old_mother_base/cm_ombs_tank001/scenes/cm_ombs_tank001.fmdl
/Assets/tpp/environ/object/afghanistan/cable/afgh_cabl001/scenes/afgh_cabl001.fmdl
/Assets/tpp/environ/object/afghanistan/chair/afgh_char005/scenes/afgh_char005.fmdl
/Assets/tpp/environ/object/afghanistan/cloth/afgh_clth015/scenes/afgh_clth015.fmdl
/Assets/tpp/environ/object/afghanistan/desk/afgh_desk002/scenes/afgh_desk002_vrtn001.fmdl
/Assets/tpp/environ/object/afghanistan/drum/afgh_drum002/scenes/afgh_drum002.fmdl
/Assets/tpp/environ/object/afghanistan/fence/afgh_fenc007/scenes/afgh_fenc007.fmdl
/Assets/tpp/environ/object/afghanistan/fence/afgh_fenc008/scenes/afgh_fenc008.fmdl
/Assets/tpp/environ/object/afghanistan/iron_plate/afgh_irpl001/scenes/afgh_irpl001.fmdl
/Assets/tpp/environ/object/afghanistan/sandbag/afgh_sndb002/scenes/afgh_sndb002_vrtn002.fmdl
/Assets/tpp/environ/object/afghanistan/slope/afgh_slop001/scenes/afgh_slop001_vrtn001.fmdl
/Assets/tpp/environ/object/afghanistan/timber/afgh_tmbr002/scenes/afgh_tmbr002.fmdl
/Assets/tpp/environ/object/afghanistan/timber/afgh_tmbr004/scenes/afgh_tmbr004.fmdl
/Assets/tpp/environ/object/afghanistan/timber/afgh_tmbr004/scenes/afgh_tmbr004_vrtn001.fmdl
/Assets/tpp/environ/object/afghanistan/timber/afgh_tmbr005/scenes/afgh_tmbr005.fmdl
/Assets/tpp/environ/object/afghanistan/tire/afgh_tire004/scenes/afgh_tire004_tire001.fmdl
/Assets/tpp/environ/object/afghanistan/wood_box/afgh_wdbx002/scenes/afgh_wdbx002_vrtn001.fmdl
/Assets/tpp/environ/object/cyprus/cable/cypr_cabl002/scenes/cypr_cabl002_vrtn001_an.fmdl
/Assets/tpp/environ/object/cyprus/hydrant/cypr_hydr001/scenes/cypr_hydr001_vrtn001.fmdl
/Assets/tpp/environ/object/cyprus/light/cypr_lght002/scenes/cypr_lght002_vrtn003.fmdl
/Assets/tpp/environ/object/cyprus/manhole/cypr_mnhl001/scenes/cypr_mnhl001.fmdl
/Assets/tpp/environ/object/cyprus/pole/cypr_pole001/scenes/cypr_pole001_vrtn001.fmdl
/Assets/tpp/environ/object/cyprus/tank/cypr_tank001/scenes/cypr_tank001.fmdl
/Assets/tpp/environ/object/guantanamo/alarm/gntn_alrm001/scenes/gntn_alrm001.fmdl
/Assets/tpp/environ/object/guantanamo/alarm_lamp/gntn_allm001/scenes/gntn_allm001.fmdl
/Assets/tpp/environ/object/guantanamo/alarm_lamp/gntn_allm002/scenes/gntn_allm002_an.fmdl
/Assets/tpp/environ/object/guantanamo/antenna/gntn_antn001/scenes/gntn_antn001_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/antenna/gntn_antn001/scenes/gntn_antn001_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/barbwire/gntn_brbw001/scenes/gntn_brbw001.fmdl
/Assets/tpp/environ/object/guantanamo/barbwire/gntn_brbw001/scenes/gntn_brbw001_001.fmdl
/Assets/tpp/environ/object/guantanamo/barbwire/gntn_brbw001/scenes/gntn_brbw001_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/barricade/gntn_brrc001/scenes/gntn_brrc001_dbri001.fmdl
/Assets/tpp/environ/object/guantanamo/barricade/gntn_brrc001/scenes/gntn_brrc001_dbri003.fmdl
/Assets/tpp/environ/object/guantanamo/barricade/gntn_brrc001/scenes/gntn_brrc001_vrtn011.fmdl
/Assets/tpp/environ/object/guantanamo/barricade/gntn_brrc001/scenes/gntn_brrc001_vrtn013.fmdl
/Assets/tpp/environ/object/guantanamo/barricade/gntn_brrc002/scenes/gntn_brrc002_brrc001.fmdl
/Assets/tpp/environ/object/guantanamo/barricade/gntn_brrc002/scenes/gntn_brrc002_pole001.fmdl
/Assets/tpp/environ/object/guantanamo/barricade/gntn_brrc003/scenes/gntn_brrc003.fmdl
/Assets/tpp/environ/object/guantanamo/bench/gntn_bnch001/scenes/gntn_bnch001.fmdl
/Assets/tpp/environ/object/guantanamo/boiler/gntn_bilr002/scenes/gntn_bilr002.fmdl
/Assets/tpp/environ/object/guantanamo/box/gntn_boxx001/scenes/gntn_boxx001.fmdl
/Assets/tpp/environ/object/guantanamo/bridge/gntn_brdg001/scenes/gntn_brdg001.fmdl
/Assets/tpp/environ/object/guantanamo/building/gntn_buld001/scenes/gntn_buld001.fmdl
/Assets/tpp/environ/object/guantanamo/building/gntn_buld001/scenes/gntn_buld001_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/building/gntn_buld002/scenes/gntn_buld002.fmdl
/Assets/tpp/environ/object/guantanamo/building/gntn_buld002/scenes/gntn_buld002_marg001.fmdl
/Assets/tpp/environ/object/guantanamo/building/gntn_buld003/scenes/gntn_buld003.fmdl
/Assets/tpp/environ/object/guantanamo/building/gntn_buld004/scenes/gntn_buld004.fmdl
/Assets/tpp/environ/object/guantanamo/building/gntn_buld005/scenes/gntn_buld005.fmdl
/Assets/tpp/environ/object/guantanamo/building/gntn_buld006/scenes/gntn_buld006.fmdl
/Assets/tpp/environ/object/guantanamo/building/gntn_buld006/scenes/gntn_buld006_wndw001.fmdl
/Assets/tpp/environ/object/guantanamo/building/gntn_buld007/scenes/gntn_buld007.fmdl
/Assets/tpp/environ/object/guantanamo/building/gntn_buld008/scenes/gntn_buld008.fmdl
/Assets/tpp/environ/object/guantanamo/building/gntn_buld009/scenes/gntn_buld009.fmdl
/Assets/tpp/environ/object/guantanamo/building/gntn_buld010/scenes/gntn_buld010.fmdl
/Assets/tpp/environ/object/guantanamo/building/gntn_buld011/scenes/gntn_buld011.fmdl
/Assets/tpp/environ/object/guantanamo/building/gntn_buld013/scenes/gntn_buld013.fmdl
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl002/scenes/gntn_cabl002_cabl001.fmdl
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl002/scenes/gntn_cabl002_cabl002.fmdl
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl002/scenes/gntn_cabl002_cabl003.fmdl
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl002/scenes/gntn_cabl002_cabl004.fmdl
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl002/scenes/gntn_cabl002_cabl005.fmdl
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl002/scenes/gntn_cabl002_mchn001.fmdl
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl002/scenes/gntn_cabl002_mchn002.fmdl
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl003/scenes/gntn_cabl003.fmdl
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl003/scenes/gntn_cabl003_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl003/scenes/gntn_cabl003_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl003/scenes/gntn_cabl003_vrtn003.fmdl
/Assets/tpp/environ/object/guantanamo/cage/gntn_cage001/scenes/gntn_cage001_cage002.fmdl
/Assets/tpp/environ/object/guantanamo/cage/gntn_cage001/scenes/gntn_cage001_clth001_an.fmdl
/Assets/tpp/environ/object/guantanamo/cage/gntn_cage001/scenes/gntn_cage001_clth002_an.fmdl
/Assets/tpp/environ/object/guantanamo/cage/gntn_cage001/scenes/gntn_cage001_door001.fmdl
/Assets/tpp/environ/object/guantanamo/carton/gntn_crto002/scenes/gntn_crto002.fmdl
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_fndt001.fmdl
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_fndt002.fmdl
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_hndr001.fmdl
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_hndr002.fmdl
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_irpl001.fmdl
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_irpl002.fmdl
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_pssg001.fmdl
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_pssg002.fmdl
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_star001.fmdl
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_star002.fmdl
/Assets/tpp/environ/object/guantanamo/chimney/gntn_chmn001/scenes/gntn_chmn001.fmdl
/Assets/tpp/environ/object/guantanamo/chock/gntn_chck001/scenes/gntn_chck001.fmdl
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff001/scenes/gntn_clff001.fmdl
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff002/scenes/gntn_clff002.fmdl
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff002/scenes/gntn_clff002_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff003/scenes/gntn_clff003.fmdl
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff003/scenes/gntn_clff003_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff005/scenes/gntn_clff005.fmdl
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff006/scenes/gntn_clff006.fmdl
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff007/scenes/gntn_clff007.fmdl
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff008/scenes/gntn_clff008.fmdl
/Assets/tpp/environ/object/guantanamo/clod/gntn_clod001/scenes/gntn_clod001.fmdl
/Assets/tpp/environ/object/guantanamo/cloth/gntn_clth003/scenes/gntn_clth003.fmdl
/Assets/tpp/environ/object/guantanamo/cloth/gntn_clth004/scenes/gntn_clth004.fmdl
/Assets/tpp/environ/object/guantanamo/cloth/gntn_clth005/scenes/gntn_clth005.fmdl
/Assets/tpp/environ/object/guantanamo/compressor_unit/gntn_cmun001/scenes/gntn_cmun001.fmdl
/Assets/tpp/environ/object/guantanamo/compressor_unit/gntn_cmun002/scenes/gntn_cmun002.fmdl
/Assets/tpp/environ/object/guantanamo/container/gntn_cntn001/scenes/gntn_cntn001.fmdl
/Assets/tpp/environ/object/guantanamo/container/gntn_cntn002/scenes/gntn_cntn002.fmdl
/Assets/tpp/environ/object/guantanamo/container/gntn_cntn003/scenes/gntn_cntn003.fmdl
/Assets/tpp/environ/object/guantanamo/container/gntn_cntn004/scenes/gntn_cntn004.fmdl
/Assets/tpp/environ/object/guantanamo/ditch/gntn_dtch001/scenes/gntn_dtch001.fmdl
/Assets/tpp/environ/object/guantanamo/door/gntn_door003/scenes/gntn_door003.fmdl
/Assets/tpp/environ/object/guantanamo/door/gntn_door004/scenes/gntn_door004.fmdl
/Assets/tpp/environ/object/guantanamo/door/gntn_door004/scenes/gntn_door004_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/duct/gntn_duct004/scenes/gntn_duct004.fmdl
/Assets/tpp/environ/object/guantanamo/duct/gntn_duct005/scenes/gntn_duct005.fmdl
/Assets/tpp/environ/object/guantanamo/duct/gntn_duct006/scenes/gntn_duct006.fmdl
/Assets/tpp/environ/object/guantanamo/duct/gntn_duct007/scenes/gntn_duct007.fmdl
/Assets/tpp/environ/object/guantanamo/duct/gntn_duct007/scenes/gntn_duct007_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/duct/gntn_duct007/scenes/gntn_duct007_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/duct/gntn_duct007/scenes/gntn_duct007_vrtn003.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_brbw001.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_brbw002.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_brbw003.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_brbw004.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_brbw005.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_clth001.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_clth002.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_clth003.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_clth004.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_clth005.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_fenc001.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_pllr001.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_pllr002.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc002/scenes/gntn_fenc002_fenc002.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc003/scenes/gntn_fenc003.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc004/scenes/gntn_fenc004.fmdl
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc005/scenes/gntn_fenc005.fmdl
/Assets/tpp/environ/object/guantanamo/fluorescent/gntn_flrs001/scenes/gntn_flrs001.fmdl
/Assets/tpp/environ/object/guantanamo/fluorescent/gntn_flrs001/scenes/gntn_flrs001_emit001_gm.fmdl
/Assets/tpp/environ/object/guantanamo/fluorescent/gntn_flrs001/scenes/gntn_flrs001_emit002_gm.fmdl
/Assets/tpp/environ/object/guantanamo/fluorescent/gntn_flrs001/scenes/gntn_flrs001_pole001.fmdl
/Assets/tpp/environ/object/guantanamo/fluorescent/gntn_flrs001/scenes/gntn_flrs001_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/forklift/gntn_frlf001/scenes/gntn_frlf001.fmdl
/Assets/tpp/environ/object/guantanamo/foundation/gntn_fndt001/scenes/gntn_fndt001.fmdl
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_door001.fmdl
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_door002.fmdl
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_door003.fmdl
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_door004.fmdl
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_gate001.fmdl
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_gate002.fmdl
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_pllr001.fmdl
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_pllr002.fmdl
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_stfr001.fmdl
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate003/scenes/gntn_gate003_door001.fmdl
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate003/scenes/gntn_gate003_drfr001.fmdl
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate004/scenes/gntn_gate004.fmdl
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate004/scenes/gntn_gate004_door001.fmdl
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss001/scenes/gntn_grss001.fmdl
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss001/scenes/gntn_grss001_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss002/scenes/gntn_grss002_vrtn004.fmdl
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss003/scenes/gntn_grss003_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss004/scenes/gntn_grss004.fmdl
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss005/scenes/gntn_grss005.fmdl
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss008/scenes/gntn_grss008.fmdl
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss010/scenes/gntn_grss010.fmdl
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss011/scenes/gntn_grss011.fmdl
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss011/scenes/gntn_grss011_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss014/scenes/gntn_grss014_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss014/scenes/gntn_grss014_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss015/scenes/gntn_grss015.fmdl
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss016/scenes/gntn_grss016_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss016/scenes/gntn_grss016_vrtn003.fmdl
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss017/scenes/gntn_grss017.fmdl
/Assets/tpp/environ/object/guantanamo/ground/gntn_grnd001/scenes/gntn_grnd001.fmdl
/Assets/tpp/environ/object/guantanamo/ground/gntn_grnd001/scenes/gntn_grnd001_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/ground/gntn_grnd002/scenes/gntn_grnd002.fmdl
/Assets/tpp/environ/object/guantanamo/handrail/gntn_hndr001/scenes/gntn_hndr001.fmdl
/Assets/tpp/environ/object/guantanamo/heliport/gntn_hlpr001/scenes/gntn_hlpr001.fmdl
/Assets/tpp/environ/object/guantanamo/hut/gntn_hutt001/scenes/gntn_hutt001.fmdl
/Assets/tpp/environ/object/guantanamo/hut/gntn_hutt002/scenes/gntn_hutt002.fmdl
/Assets/tpp/environ/object/guantanamo/hydrant/gntn_hydr001/scenes/gntn_hydr001.fmdl
/Assets/tpp/environ/object/guantanamo/inspection_door/gntn_indr001/scenes/gntn_indr001.fmdl
/Assets/tpp/environ/object/guantanamo/iron_box/gntn_irbx001/scenes/gntn_irbx001_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/iron_box/gntn_irbx002/scenes/gntn_irbx002.fmdl
/Assets/tpp/environ/object/guantanamo/iron_plate/gntn_irpl001/scenes/gntn_irpl001.fmdl
/Assets/tpp/environ/object/guantanamo/ladder/gntn_lddr001/scenes/gntn_lddr001.fmdl
/Assets/tpp/environ/object/guantanamo/lamp/gntn_lamp001/scenes/gntn_lamp001.fmdl
/Assets/tpp/environ/object/guantanamo/lashing_belt/gntn_lblt001/scenes/gntn_lblt001.fmdl
/Assets/tpp/environ/object/guantanamo/lashing_belt/gntn_lblt002/scenes/gntn_lblt002.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght001/scenes/gntn_lght001_emit001_gm.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght001/scenes/gntn_lght001_emit002_gm.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght001/scenes/gntn_lght001_glas001.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght001/scenes/gntn_lght001_glas002.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght001/scenes/gntn_lght001_lght001.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght001/scenes/gntn_lght001_lght002.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght001/scenes/gntn_lght001_lght003.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght002/scenes/gntn_lght002_emit001_gm.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght002/scenes/gntn_lght002_emit002_gm.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght002/scenes/gntn_lght002_lght001.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght002/scenes/gntn_lght002_lght002.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght003/scenes/gntn_lght003_lght001.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght003/scenes/gntn_lght003_lght002.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght005/scenes/gntn_lght005.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght006/scenes/gntn_lght006.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght006/scenes/gntn_lght006_emit001_gim.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght007/scenes/gntn_lght007_gm.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght007/scenes/gntn_lght007_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght007/scenes/gntn_lght007_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght007/scenes/gntn_lght007_vrtn003.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght007/scenes/gntn_lght007_vrtn004.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght008/scenes/gntn_lght008.fmdl
/Assets/tpp/environ/object/guantanamo/light/gntn_lght008/scenes/gntn_lght008_emit001.fmdl
/Assets/tpp/environ/object/guantanamo/locker/gntn_lckr001/scenes/gntn_lckr001.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn001/scenes/gntn_mchn001.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn001/scenes/gntn_mchn001_swtc001_gm.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn001/scenes/gntn_mchn001_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn002/scenes/gntn_mchn002.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn003/scenes/gntn_mchn003.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn008/scenes/gntn_mchn008.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn008/scenes/gntn_mchn008_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn009/scenes/gntn_mchn009.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn010/scenes/gntn_mchn010.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn011/scenes/gntn_mchn011.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn012/scenes/gntn_mchn012.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn013/scenes/gntn_mchn013.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn013/scenes/gntn_mchn013_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn014/scenes/gntn_mchn014.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn015/scenes/gntn_mchn015.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn016/scenes/gntn_mchn016.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn017/scenes/gntn_mchn017.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn018/scenes/gntn_mchn018.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn019/scenes/gntn_mchn019.fmdl
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn020/scenes/gntn_mchn020.fmdl
/Assets/tpp/environ/object/guantanamo/masonry/gntn_msnr001/scenes/gntn_msnr001.fmdl
/Assets/tpp/environ/object/guantanamo/observation_eqp/gntn_obeq001/scenes/gntn_obeq001_an.fmdl
/Assets/tpp/environ/object/guantanamo/observation_eqp/gntn_obeq001/scenes/gntn_obeq001_emit001_gm.fmdl
/Assets/tpp/environ/object/guantanamo/pallet/gntn_pllt001/scenes/gntn_pllt001.fmdl
/Assets/tpp/environ/object/guantanamo/pallet/gntn_pllt002/scenes/gntn_pllt002.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe001/scenes/gntn_pipe001.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe001/scenes/gntn_pipe001_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe003/scenes/gntn_pipe003.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe003/scenes/gntn_pipe003_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe003/scenes/gntn_pipe003_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe005/scenes/gntn_pipe005_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe005/scenes/gntn_pipe005_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe005/scenes/gntn_pipe005_vrtn003.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe005/scenes/gntn_pipe005_vrtn004.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe005/scenes/gntn_pipe005_vrtn005.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe008/scenes/gntn_pipe008.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe008/scenes/gntn_pipe008_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe008/scenes/gntn_pipe008_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe008/scenes/gntn_pipe008_vrtn003.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe008/scenes/gntn_pipe008_vrtn004.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe009/scenes/gntn_pipe009.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe009/scenes/gntn_pipe009_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe009/scenes/gntn_pipe009_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe009/scenes/gntn_pipe009_vrtn003.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe010/scenes/gntn_pipe010.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe010/scenes/gntn_pipe010_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe010/scenes/gntn_pipe010_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe010/scenes/gntn_pipe010_vrtn003.fmdl
/Assets/tpp/environ/object/guantanamo/pole/gntn_pole001/scenes/gntn_pole001.fmdl
/Assets/tpp/environ/object/guantanamo/pole/gntn_pole002/scenes/gntn_pole002.fmdl
/Assets/tpp/environ/object/guantanamo/pump/gntn_pump001/scenes/gntn_pump001.fmdl
/Assets/tpp/environ/object/guantanamo/roadcone/gntn_rdcn001/scenes/gntn_rdcn001.fmdl
/Assets/tpp/environ/object/guantanamo/rock/gntn_rock002/scenes/gntn_rock002.fmdl
/Assets/tpp/environ/object/guantanamo/rock/gntn_rock002/scenes/gntn_rock002_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/rock/gntn_rock003/scenes/gntn_rock003.fmdl
/Assets/tpp/environ/object/guantanamo/rock/gntn_rock004/scenes/gntn_rock004.fmdl
/Assets/tpp/environ/object/guantanamo/rock/gntn_rock005/scenes/gntn_rock005.fmdl
/Assets/tpp/environ/object/guantanamo/room/gntn_room001/scenes/gntn_room001.fmdl
/Assets/tpp/environ/object/guantanamo/room/gntn_room002/scenes/gntn_room002.fmdl
/Assets/tpp/environ/object/guantanamo/room/gntn_room003/scenes/gntn_room003.fmdl
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_001.fmdl
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_002.fmdl
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_003.fmdl
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_004.fmdl
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_005.fmdl
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_006.fmdl
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_007.fmdl
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_marg001.fmdl
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_marg002.fmdl
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_marg003.fmdl
/Assets/tpp/environ/object/guantanamo/sea/gntn_seaa001/scenes/gntn_seaa001.fmdl
/Assets/tpp/environ/object/guantanamo/sea/gntn_seaa001/scenes/gntn_seaa001_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/sea/gntn_seaa001/scenes/gntn_seaa001_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/sea/gntn_seaa001/scenes/gntn_seaa001_vrtn003.fmdl
/Assets/tpp/environ/object/guantanamo/searchlight/gntn_srlg001/scenes/gntn_srlg001_gm.fmdl
/Assets/tpp/environ/object/guantanamo/shadow/gntn_shdw001/scenes/gntn_shdw001.fmdl
/Assets/tpp/environ/object/guantanamo/shelf/gntn_shlf001/scenes/gntn_shlf001.fmdl
/Assets/tpp/environ/object/guantanamo/shelf/gntn_shlf002/scenes/gntn_shlf002.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd001/scenes/gntn_sgbd001.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd001/scenes/gntn_sgbd001_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd001/scenes/gntn_sgbd001_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd001/scenes/gntn_sgbd001_vrtn003.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd001/scenes/gntn_sgbd001_vrtn004.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd001/scenes/gntn_sgbd001_vrtn005.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd001/scenes/gntn_sgbd001_vrtn006.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd001/scenes/gntn_sgbd001_vrtn007.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd002/scenes/gntn_sgbd002_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd002/scenes/gntn_sgbd002_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd002/scenes/gntn_sgbd002_vrtn003.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn001_an.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn003.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn004.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn005.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn006.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn007.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn008.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn009.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn010.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn011.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn012.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn013.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn014.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn015.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn016.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn017.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn018.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn019.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn020.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn021.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn022.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn023.fmdl
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn024.fmdl
/Assets/tpp/environ/object/guantanamo/speaker/gntn_spkr001/scenes/gntn_spkr001.fmdl
/Assets/tpp/environ/object/guantanamo/stairs/gntn_star001/scenes/gntn_star001.fmdl
/Assets/tpp/environ/object/guantanamo/stairs/gntn_star003/scenes/gntn_star003.fmdl
/Assets/tpp/environ/object/guantanamo/steel_frame/gntn_stfr001/scenes/gntn_stfr001.fmdl
/Assets/tpp/environ/object/guantanamo/steel_frame/gntn_stfr002/scenes/gntn_stfr002_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/steel_tower/gntn_sttw001/scenes/gntn_sttw001.fmdl
/Assets/tpp/environ/object/guantanamo/steel_tower/gntn_sttw002/scenes/gntn_sttw002_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/stepladder/gntn_stpl001/scenes/gntn_stpl001.fmdl
/Assets/tpp/environ/object/guantanamo/stepladder/gntn_stpl002/scenes/gntn_stpl002.fmdl
/Assets/tpp/environ/object/guantanamo/stepladder/gntn_stpl003/scenes/gntn_stpl003.fmdl
/Assets/tpp/environ/object/guantanamo/stepladder/gntn_stpl003/scenes/gntn_stpl003_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/stepladder/gntn_stpl003/scenes/gntn_stpl003_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/stepladder/gntn_stpl003/scenes/gntn_stpl003_vrtn003.fmdl
/Assets/tpp/environ/object/guantanamo/stone/gntn_ston001/scenes/gntn_ston001_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/stone/gntn_ston001/scenes/gntn_ston001_vrtn002.fmdl
/Assets/tpp/environ/object/guantanamo/stone/gntn_ston001/scenes/gntn_ston001_vrtn003.fmdl
/Assets/tpp/environ/object/guantanamo/stone/gntn_ston001/scenes/gntn_ston001_vrtn005.fmdl
/Assets/tpp/environ/object/guantanamo/stone/gntn_ston001/scenes/gntn_ston001_vrtn006.fmdl
/Assets/tpp/environ/object/guantanamo/stone/gntn_ston001/scenes/gntn_ston001_vrtn010.fmdl
/Assets/tpp/environ/object/guantanamo/stretcher/gntn_strt001/scenes/gntn_strt001.fmdl
/Assets/tpp/environ/object/guantanamo/succulent/gntn_sccl001/scenes/gntn_sccl001_dbri003.fmdl
/Assets/tpp/environ/object/guantanamo/succulent/gntn_sccl001/scenes/gntn_sccl001_dbri004.fmdl
/Assets/tpp/environ/object/guantanamo/succulent/gntn_sccl001/scenes/gntn_sccl001_vrtn011.fmdl
/Assets/tpp/environ/object/guantanamo/succulent/gntn_sccl001/scenes/gntn_sccl001_vrtn012.fmdl
/Assets/tpp/environ/object/guantanamo/succulent/gntn_sccl001/scenes/gntn_sccl001_vrtn013.fmdl
/Assets/tpp/environ/object/guantanamo/succulent/gntn_sccl001/scenes/gntn_sccl001_vrtn021.fmdl
/Assets/tpp/environ/object/guantanamo/succulent/gntn_sccl001/scenes/gntn_sccl001_vrtn022.fmdl
/Assets/tpp/environ/object/guantanamo/succulent/gntn_sccl001/scenes/gntn_sccl001_vrtn023.fmdl
/Assets/tpp/environ/object/guantanamo/succulent/gntn_sccl001/scenes/gntn_sccl001_vrtn031.fmdl
/Assets/tpp/environ/object/guantanamo/succulent/gntn_sccl001/scenes/gntn_sccl001_vrtn032.fmdl
/Assets/tpp/environ/object/guantanamo/succulent/gntn_sccl001/scenes/gntn_sccl001_vrtn033.fmdl
/Assets/tpp/environ/object/guantanamo/switch/gntn_swtc001/scenes/gntn_swtc001.fmdl
/Assets/tpp/environ/object/guantanamo/tent/gntn_tent001/scenes/gntn_tent001_vrtn001_an.fmdl
/Assets/tpp/environ/object/guantanamo/tent/gntn_tent001/scenes/gntn_tent001_vrtn002_an.fmdl
/Assets/tpp/environ/object/guantanamo/tent/gntn_tent001/scenes/gntn_tent001_vrtn003_an.fmdl
/Assets/tpp/environ/object/guantanamo/tin_roof/gntn_tnrf001/scenes/gntn_tnrf001.fmdl
/Assets/tpp/environ/object/guantanamo/toilet/gntn_tlet001/scenes/gntn_tlet001.fmdl
/Assets/tpp/environ/object/guantanamo/toolbox/gntn_tlbx001/scenes/gntn_tlbx001.fmdl
/Assets/tpp/environ/object/guantanamo/trash/gntn_trsh001/scenes/gntn_trsh001.fmdl
/Assets/tpp/environ/object/guantanamo/tree/gntn_tree001/scenes/gntn_tree001.fmdl
/Assets/tpp/environ/object/guantanamo/tree/gntn_tree002/scenes/gntn_tree002_an.fmdl
/Assets/tpp/environ/object/guantanamo/tree/gntn_tree002/scenes/gntn_tree002_dsvw001.fmdl
/Assets/tpp/environ/object/guantanamo/tree/gntn_tree002/scenes/gntn_tree002_dsvw002.fmdl
/Assets/tpp/environ/object/guantanamo/tree/gntn_tree002/scenes/gntn_tree002_vrtn001_an.fmdl
/Assets/tpp/environ/object/guantanamo/tree/gntn_tree003/scenes/gntn_tree003_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/tree/gntn_tree003/scenes/gntn_tree003_vrtn006.fmdl
/Assets/tpp/environ/object/guantanamo/tree/gntn_tree003/scenes/gntn_tree003_vrtn007.fmdl
/Assets/tpp/environ/object/guantanamo/tree/gntn_tree003/scenes/gntn_tree003_vrtn008.fmdl
/Assets/tpp/environ/object/guantanamo/tree/gntn_tree003/scenes/gntn_tree003_vrtn009.fmdl
/Assets/tpp/environ/object/guantanamo/tree/gntn_tree004/scenes/gntn_tree004.fmdl
/Assets/tpp/environ/object/guantanamo/vent/gntn_vent001/scenes/gntn_vent001.fmdl
/Assets/tpp/environ/object/guantanamo/wall/gntn_wall001/scenes/gntn_wall001.fmdl
/Assets/tpp/environ/object/guantanamo/wall/gntn_wall001/scenes/gntn_wall001_door001.fmdl
/Assets/tpp/environ/object/guantanamo/wall/gntn_wall001/scenes/gntn_wall001_drfr001.fmdl
/Assets/tpp/environ/object/guantanamo/wall/gntn_wall001/scenes/gntn_wall001_drfr002.fmdl
/Assets/tpp/environ/object/guantanamo/wall/gntn_wall001/scenes/gntn_wall001_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/watchtower/gntn_wtct001/scenes/gntn_wtct001_br.fmdl
/Assets/tpp/environ/object/guantanamo/watchtower/gntn_wtct001/scenes/gntn_wtct001_dbri001.fmdl
/Assets/tpp/environ/object/guantanamo/watchtower/gntn_wtct001/scenes/gntn_wtct001_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/watchtower/gntn_wtct002/scenes/gntn_wtct002.fmdl
/Assets/tpp/environ/object/guantanamo/watchtower/gntn_wtct002/scenes/gntn_wtct002_lddr001.fmdl
/Assets/tpp/environ/object/guantanamo/watchtower/gntn_wtct003/scenes/gntn_wtct003.fmdl
/Assets/tpp/environ/object/guantanamo/watchtower/gntn_wtct003/scenes/gntn_wtct003_dsvw001.fmdl
/Assets/tpp/environ/object/guantanamo/watchtower/gntn_wtct003/scenes/gntn_wtct003_fndt001.fmdl
/Assets/tpp/environ/object/guantanamo/water_tower/gntn_wttw001/scenes/gntn_wttw001.fmdl
/Assets/tpp/environ/object/guantanamo/water_tower/gntn_wttw003/scenes/gntn_wttw003.fmdl
/Assets/tpp/environ/object/guantanamo/wood_box/gntn_wdbx001/scenes/gntn_wdbx001.fmdl
/Assets/tpp/environ/object/guantanamo/wood_box/gntn_wdbx001/scenes/gntn_wdbx001_dbri001.fmdl
/Assets/tpp/environ/object/guantanamo/wood_box/gntn_wdbx001/scenes/gntn_wdbx001_dbri002.fmdl
/Assets/tpp/environ/object/guantanamo/wood_box/gntn_wdbx001/scenes/gntn_wdbx001_dbri003.fmdl
/Assets/tpp/environ/object/guantanamo/wood_box/gntn_wdbx001/scenes/gntn_wdbx001_rbbl001.fmdl
/Assets/tpp/environ/object/guantanamo/wood_box/gntn_wdbx001/scenes/gntn_wdbx001_rbbl002.fmdl
/Assets/tpp/environ/object/guantanamo/wood_box/gntn_wdbx001/scenes/gntn_wdbx001_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/wood_box/gntn_wdbx002/scenes/gntn_wdbx002.fmdl
/Assets/tpp/environ/object/guantanamo/wood_box/gntn_wdbx002/scenes/gntn_wdbx002_vrtn001.fmdl
/Assets/tpp/environ/object/guantanamo/wood_box/gntn_wdbx004/scenes/gntn_wdbx004.fmdl
/Assets/tpp/environ/object/middle_africa/cage/mafr_cage001/scenes/mafr_cage001_wall004.fmdl
/Assets/tpp/environ/object/middle_africa/drum/mafr_drum005/scenes/mafr_drum005.fmdl
/Assets/tpp/environ/object/middle_africa/garbage/mafr_grbg001/scenes/mafr_grbg001.fmdl
/Assets/tpp/environ/object/middle_africa/garbage/mafr_grbg004/scenes/mafr_grbg004.fmdl
/Assets/tpp/environ/object/middle_africa/garbage/mafr_grbg005/scenes/mafr_grbg005.fmdl
/Assets/tpp/environ/object/middle_africa/tin_wall/mafr_tnwl001/scenes/mafr_tnwl001_vrtn002.fmdl
/Assets/tpp/environ/object/middle_africa/tool/mafr_tool001/scenes/mafr_tool001.fmdl
/Assets/tpp/environ/object/mother_base/forklift/mtbs_frlf002/scenes/mtbs_frlf002_vrtn001.fmdl
/Assets/tpp/item/ifb/Scenes/ifb0_main0_def.fmdl
/Assets/tpp/mecha/nad/Scenes/nad0_brlh0_def.fmdl
/Assets/tpp/mecha/nad/Scenes/nad0_main0_def.fmdl
/Assets/tpp/common_source/environ/guantanamo/cm_gntn_chin001/scenes/cm_gntn_chin001.geom
/Assets/tpp/common_source/environ/old_mother_base/cm_ombs_tank001/scenes/cm_ombs_tank001.geom
/Assets/tpp/environ/object/afghanistan/cable/afgh_cabl001/scenes/afgh_cabl001.geom
/Assets/tpp/environ/object/afghanistan/chair/afgh_char005/scenes/afgh_char005.geom
/Assets/tpp/environ/object/afghanistan/cloth/afgh_clth015/scenes/afgh_clth015.geom
/Assets/tpp/environ/object/afghanistan/desk/afgh_desk002/scenes/afgh_desk002_vrtn001.geom
/Assets/tpp/environ/object/afghanistan/drum/afgh_drum002/scenes/afgh_drum002.geom
/Assets/tpp/environ/object/afghanistan/fence/afgh_fenc007/scenes/afgh_fenc007.geom
/Assets/tpp/environ/object/afghanistan/fence/afgh_fenc008/scenes/afgh_fenc008.geom
/Assets/tpp/environ/object/afghanistan/iron_plate/afgh_irpl001/scenes/afgh_irpl001.geom
/Assets/tpp/environ/object/afghanistan/sandbag/afgh_sndb002/scenes/afgh_sndb002_vrtn002.geom
/Assets/tpp/environ/object/afghanistan/slope/afgh_slop001/scenes/afgh_slop001_vrtn001.geom
/Assets/tpp/environ/object/afghanistan/timber/afgh_tmbr002/scenes/afgh_tmbr002.geom
/Assets/tpp/environ/object/afghanistan/timber/afgh_tmbr004/scenes/afgh_tmbr004.geom
/Assets/tpp/environ/object/afghanistan/timber/afgh_tmbr004/scenes/afgh_tmbr004_vrtn001.geom
/Assets/tpp/environ/object/afghanistan/timber/afgh_tmbr005/scenes/afgh_tmbr005.geom
/Assets/tpp/environ/object/afghanistan/tire/afgh_tire004/scenes/afgh_tire004_tire001.geom
/Assets/tpp/environ/object/afghanistan/wood_box/afgh_wdbx002/scenes/afgh_wdbx002_vrtn001.geom
/Assets/tpp/environ/object/cyprus/hydrant/cypr_hydr001/scenes/cypr_hydr001_vrtn001.geom
/Assets/tpp/environ/object/cyprus/light/cypr_lght002/scenes/cypr_lght002_vrtn003.geom
/Assets/tpp/environ/object/cyprus/manhole/cypr_mnhl001/scenes/cypr_mnhl001.geom
/Assets/tpp/environ/object/cyprus/pole/cypr_pole001/scenes/cypr_pole001_vrtn001.geom
/Assets/tpp/environ/object/cyprus/tank/cypr_tank001/scenes/cypr_tank001.geom
/Assets/tpp/environ/object/guantanamo/alarm/gntn_alrm001/scenes/gntn_alrm001.geom
/Assets/tpp/environ/object/guantanamo/alarm_lamp/gntn_allm001/scenes/gntn_allm001.geom
/Assets/tpp/environ/object/guantanamo/antenna/gntn_antn001/scenes/gntn_antn001_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/antenna/gntn_antn001/scenes/gntn_antn001_vrtn002.geom
/Assets/tpp/environ/object/guantanamo/barbwire/gntn_brbw001/scenes/gntn_brbw001.geom
/Assets/tpp/environ/object/guantanamo/barbwire/gntn_brbw001/scenes/gntn_brbw001_001.geom
/Assets/tpp/environ/object/guantanamo/barbwire/gntn_brbw001/scenes/gntn_brbw001_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/barricade/gntn_brrc001/scenes/gntn_brrc001_vrtn011.geom
/Assets/tpp/environ/object/guantanamo/barricade/gntn_brrc001/scenes/gntn_brrc001_vrtn013.geom
/Assets/tpp/environ/object/guantanamo/barricade/gntn_brrc002/scenes/gntn_brrc002_brrc001.geom
/Assets/tpp/environ/object/guantanamo/barricade/gntn_brrc002/scenes/gntn_brrc002_pole001.geom
/Assets/tpp/environ/object/guantanamo/barricade/gntn_brrc003/scenes/gntn_brrc003.geom
/Assets/tpp/environ/object/guantanamo/bench/gntn_bnch001/scenes/gntn_bnch001.geom
/Assets/tpp/environ/object/guantanamo/boiler/gntn_bilr002/scenes/gntn_bilr002.geom
/Assets/tpp/environ/object/guantanamo/box/gntn_boxx001/scenes/gntn_boxx001.geom
/Assets/tpp/environ/object/guantanamo/bridge/gntn_brdg001/scenes/gntn_brdg001.geom
/Assets/tpp/environ/object/guantanamo/building/gntn_buld001/scenes/gntn_buld001.geom
/Assets/tpp/environ/object/guantanamo/building/gntn_buld001/scenes/gntn_buld001_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/building/gntn_buld002/scenes/gntn_buld002.geom
/Assets/tpp/environ/object/guantanamo/building/gntn_buld002/scenes/gntn_buld002_marg001.geom
/Assets/tpp/environ/object/guantanamo/building/gntn_buld003/scenes/gntn_buld003.geom
/Assets/tpp/environ/object/guantanamo/building/gntn_buld004/scenes/gntn_buld004.geom
/Assets/tpp/environ/object/guantanamo/building/gntn_buld005/scenes/gntn_buld005.geom
/Assets/tpp/environ/object/guantanamo/building/gntn_buld006/scenes/gntn_buld006.geom
/Assets/tpp/environ/object/guantanamo/building/gntn_buld006/scenes/gntn_buld006_wndw001.geom
/Assets/tpp/environ/object/guantanamo/building/gntn_buld007/scenes/gntn_buld007.geom
/Assets/tpp/environ/object/guantanamo/building/gntn_buld008/scenes/gntn_buld008.geom
/Assets/tpp/environ/object/guantanamo/building/gntn_buld009/scenes/gntn_buld009.geom
/Assets/tpp/environ/object/guantanamo/building/gntn_buld010/scenes/gntn_buld010.geom
/Assets/tpp/environ/object/guantanamo/building/gntn_buld011/scenes/gntn_buld011.geom
/Assets/tpp/environ/object/guantanamo/building/gntn_buld013/scenes/gntn_buld013.geom
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl002/scenes/gntn_cabl002_cabl001.geom
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl002/scenes/gntn_cabl002_cabl002.geom
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl002/scenes/gntn_cabl002_cabl003.geom
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl002/scenes/gntn_cabl002_cabl004.geom
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl002/scenes/gntn_cabl002_cabl005.geom
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl002/scenes/gntn_cabl002_mchn001.geom
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl002/scenes/gntn_cabl002_mchn002.geom
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl003/scenes/gntn_cabl003.geom
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl003/scenes/gntn_cabl003_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl003/scenes/gntn_cabl003_vrtn002.geom
/Assets/tpp/environ/object/guantanamo/cable/gntn_cabl003/scenes/gntn_cabl003_vrtn003.geom
/Assets/tpp/environ/object/guantanamo/cage/gntn_cage001/scenes/gntn_cage001_cage002.geom
/Assets/tpp/environ/object/guantanamo/cage/gntn_cage001/scenes/gntn_cage001_clth001_an.geom
/Assets/tpp/environ/object/guantanamo/cage/gntn_cage001/scenes/gntn_cage001_clth002_an.geom
/Assets/tpp/environ/object/guantanamo/cage/gntn_cage001/scenes/gntn_cage001_door001.geom
/Assets/tpp/environ/object/guantanamo/carton/gntn_crto002/scenes/gntn_crto002.geom
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_fndt001.geom
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_fndt002.geom
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_hndr001.geom
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_hndr002.geom
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_irpl001.geom
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_irpl002.geom
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_pssg001.geom
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_pssg002.geom
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_star001.geom
/Assets/tpp/environ/object/guantanamo/cat_walk/gntn_ctwk001/scenes/gntn_ctwk001_star002.geom
/Assets/tpp/environ/object/guantanamo/chimney/gntn_chmn001/scenes/gntn_chmn001.geom
/Assets/tpp/environ/object/guantanamo/chock/gntn_chck001/scenes/gntn_chck001.geom
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff001/scenes/gntn_clff001.geom
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff002/scenes/gntn_clff002.geom
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff002/scenes/gntn_clff002_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff003/scenes/gntn_clff003.geom
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff003/scenes/gntn_clff003_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff005/scenes/gntn_clff005.geom
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff006/scenes/gntn_clff006.geom
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff007/scenes/gntn_clff007.geom
/Assets/tpp/environ/object/guantanamo/cliff/gntn_clff008/scenes/gntn_clff008.geom
/Assets/tpp/environ/object/guantanamo/clod/gntn_clod001/scenes/gntn_clod001.geom
/Assets/tpp/environ/object/guantanamo/cloth/gntn_clth003/scenes/gntn_clth003.geom
/Assets/tpp/environ/object/guantanamo/cloth/gntn_clth004/scenes/gntn_clth004.geom
/Assets/tpp/environ/object/guantanamo/cloth/gntn_clth005/scenes/gntn_clth005.geom
/Assets/tpp/environ/object/guantanamo/compressor_unit/gntn_cmun001/scenes/gntn_cmun001.geom
/Assets/tpp/environ/object/guantanamo/compressor_unit/gntn_cmun002/scenes/gntn_cmun002.geom
/Assets/tpp/environ/object/guantanamo/container/gntn_cntn001/scenes/gntn_cntn001.geom
/Assets/tpp/environ/object/guantanamo/container/gntn_cntn002/scenes/gntn_cntn002.geom
/Assets/tpp/environ/object/guantanamo/container/gntn_cntn003/scenes/gntn_cntn003.geom
/Assets/tpp/environ/object/guantanamo/container/gntn_cntn004/scenes/gntn_cntn004.geom
/Assets/tpp/environ/object/guantanamo/ditch/gntn_dtch001/scenes/gntn_dtch001.geom
/Assets/tpp/environ/object/guantanamo/door/gntn_door003/scenes/gntn_door003.geom
/Assets/tpp/environ/object/guantanamo/door/gntn_door004/scenes/gntn_door004.geom
/Assets/tpp/environ/object/guantanamo/door/gntn_door004/scenes/gntn_door004_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/duct/gntn_duct004/scenes/gntn_duct004.geom
/Assets/tpp/environ/object/guantanamo/duct/gntn_duct005/scenes/gntn_duct005.geom
/Assets/tpp/environ/object/guantanamo/duct/gntn_duct006/scenes/gntn_duct006.geom
/Assets/tpp/environ/object/guantanamo/duct/gntn_duct007/scenes/gntn_duct007.geom
/Assets/tpp/environ/object/guantanamo/duct/gntn_duct007/scenes/gntn_duct007_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/duct/gntn_duct007/scenes/gntn_duct007_vrtn002.geom
/Assets/tpp/environ/object/guantanamo/duct/gntn_duct007/scenes/gntn_duct007_vrtn003.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_brbw001.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_brbw002.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_brbw003.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_brbw004.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_brbw005.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_clth001.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_clth002.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_clth003.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_clth004.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_clth005.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_fenc001.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_pllr001.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc001/scenes/gntn_fenc001_pllr002.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc002/scenes/gntn_fenc002_fenc002.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc003/scenes/gntn_fenc003.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc004/scenes/gntn_fenc004.geom
/Assets/tpp/environ/object/guantanamo/fence/gntn_fenc005/scenes/gntn_fenc005.geom
/Assets/tpp/environ/object/guantanamo/fluorescent/gntn_flrs001/scenes/gntn_flrs001.geom
/Assets/tpp/environ/object/guantanamo/fluorescent/gntn_flrs001/scenes/gntn_flrs001_emit001_gm.geom
/Assets/tpp/environ/object/guantanamo/fluorescent/gntn_flrs001/scenes/gntn_flrs001_emit002_gm.geom
/Assets/tpp/environ/object/guantanamo/fluorescent/gntn_flrs001/scenes/gntn_flrs001_pole001.geom
/Assets/tpp/environ/object/guantanamo/fluorescent/gntn_flrs001/scenes/gntn_flrs001_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/forklift/gntn_frlf001/scenes/gntn_frlf001.geom
/Assets/tpp/environ/object/guantanamo/foundation/gntn_fndt001/scenes/gntn_fndt001.geom
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_door001.geom
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_door002.geom
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_door003.geom
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_door004.geom
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_gate001.geom
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_gate002.geom
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_pllr001.geom
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_pllr002.geom
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate001/scenes/gntn_gate001_stfr001.geom
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate003/scenes/gntn_gate003_door001.geom
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate003/scenes/gntn_gate003_drfr001.geom
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate004/scenes/gntn_gate004.geom
/Assets/tpp/environ/object/guantanamo/gate/gntn_gate004/scenes/gntn_gate004_door001.geom
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss008/scenes/gntn_grss008.geom
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss016/scenes/gntn_grss016_vrtn002.geom
/Assets/tpp/environ/object/guantanamo/grass/gntn_grss016/scenes/gntn_grss016_vrtn003.geom
/Assets/tpp/environ/object/guantanamo/ground/gntn_grnd001/scenes/gntn_grnd001.geom
/Assets/tpp/environ/object/guantanamo/ground/gntn_grnd001/scenes/gntn_grnd001_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/ground/gntn_grnd002/scenes/gntn_grnd002.geom
/Assets/tpp/environ/object/guantanamo/handrail/gntn_hndr001/scenes/gntn_hndr001.geom
/Assets/tpp/environ/object/guantanamo/heliport/gntn_hlpr001/scenes/gntn_hlpr001.geom
/Assets/tpp/environ/object/guantanamo/hut/gntn_hutt001/scenes/gntn_hutt001.geom
/Assets/tpp/environ/object/guantanamo/hut/gntn_hutt002/scenes/gntn_hutt002.geom
/Assets/tpp/environ/object/guantanamo/hydrant/gntn_hydr001/scenes/gntn_hydr001.geom
/Assets/tpp/environ/object/guantanamo/hydrant/gntn_hydr001/scenes/gntn_hydr001_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/inspection_door/gntn_indr001/scenes/gntn_indr001.geom
/Assets/tpp/environ/object/guantanamo/iron_box/gntn_irbx001/scenes/gntn_irbx001_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/iron_box/gntn_irbx002/scenes/gntn_irbx002.geom
/Assets/tpp/environ/object/guantanamo/iron_plate/gntn_irpl001/scenes/gntn_irpl001.geom
/Assets/tpp/environ/object/guantanamo/ladder/gntn_lddr001/scenes/gntn_lddr001.geom
/Assets/tpp/environ/object/guantanamo/lamp/gntn_lamp001/scenes/gntn_lamp001.geom
/Assets/tpp/environ/object/guantanamo/lashing_belt/gntn_lblt001/scenes/gntn_lblt001.geom
/Assets/tpp/environ/object/guantanamo/lashing_belt/gntn_lblt002/scenes/gntn_lblt002.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght001/scenes/gntn_lght001_glas001.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght001/scenes/gntn_lght001_glas002.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght001/scenes/gntn_lght001_lght001.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght001/scenes/gntn_lght001_lght002.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght001/scenes/gntn_lght001_lght003.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght002/scenes/gntn_lght002_lght001.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght002/scenes/gntn_lght002_lght002.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght003/scenes/gntn_lght003_lght001.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght003/scenes/gntn_lght003_lght002.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght005/scenes/gntn_lght005.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght006/scenes/gntn_lght006.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght007/scenes/gntn_lght007_gm.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght007/scenes/gntn_lght007_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght007/scenes/gntn_lght007_vrtn002.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght007/scenes/gntn_lght007_vrtn003.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght007/scenes/gntn_lght007_vrtn004.geom
/Assets/tpp/environ/object/guantanamo/light/gntn_lght008/scenes/gntn_lght008.geom
/Assets/tpp/environ/object/guantanamo/locker/gntn_lckr001/scenes/gntn_lckr001.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn001/scenes/gntn_mchn001.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn001/scenes/gntn_mchn001_swtc001_gm.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn001/scenes/gntn_mchn001_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn002/scenes/gntn_mchn002.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn003/scenes/gntn_mchn003.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn008/scenes/gntn_mchn008.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn008/scenes/gntn_mchn008_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn009/scenes/gntn_mchn009.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn010/scenes/gntn_mchn010.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn011/scenes/gntn_mchn011.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn012/scenes/gntn_mchn012.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn013/scenes/gntn_mchn013.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn013/scenes/gntn_mchn013_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn014/scenes/gntn_mchn014.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn015/scenes/gntn_mchn015.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn016/scenes/gntn_mchn016.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn017/scenes/gntn_mchn017.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn018/scenes/gntn_mchn018.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn019/scenes/gntn_mchn019.geom
/Assets/tpp/environ/object/guantanamo/machine/gntn_mchn020/scenes/gntn_mchn020.geom
/Assets/tpp/environ/object/guantanamo/masonry/gntn_msnr001/scenes/gntn_msnr001.geom
/Assets/tpp/environ/object/guantanamo/observation_eqp/gntn_obeq001/scenes/gntn_obeq001_an.geom
/Assets/tpp/environ/object/guantanamo/observation_eqp/gntn_obeq001/scenes/gntn_obeq001_emit001_gm.geom
/Assets/tpp/environ/object/guantanamo/pallet/gntn_pllt001/scenes/gntn_pllt001.geom
/Assets/tpp/environ/object/guantanamo/pallet/gntn_pllt002/scenes/gntn_pllt002.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe001/scenes/gntn_pipe001.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe001/scenes/gntn_pipe001_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe003/scenes/gntn_pipe003.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe003/scenes/gntn_pipe003_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe003/scenes/gntn_pipe003_vrtn002.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe005/scenes/gntn_pipe005_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe005/scenes/gntn_pipe005_vrtn002.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe005/scenes/gntn_pipe005_vrtn003.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe005/scenes/gntn_pipe005_vrtn004.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe005/scenes/gntn_pipe005_vrtn005.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe008/scenes/gntn_pipe008.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe008/scenes/gntn_pipe008_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe008/scenes/gntn_pipe008_vrtn002.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe008/scenes/gntn_pipe008_vrtn003.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe008/scenes/gntn_pipe008_vrtn004.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe009/scenes/gntn_pipe009.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe009/scenes/gntn_pipe009_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe009/scenes/gntn_pipe009_vrtn002.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe009/scenes/gntn_pipe009_vrtn003.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe010/scenes/gntn_pipe010.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe010/scenes/gntn_pipe010_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe010/scenes/gntn_pipe010_vrtn002.geom
/Assets/tpp/environ/object/guantanamo/pipe/gntn_pipe010/scenes/gntn_pipe010_vrtn003.geom
/Assets/tpp/environ/object/guantanamo/pole/gntn_pole001/scenes/gntn_pole001.geom
/Assets/tpp/environ/object/guantanamo/pole/gntn_pole002/scenes/gntn_pole002.geom
/Assets/tpp/environ/object/guantanamo/pump/gntn_pump001/scenes/gntn_pump001.geom
/Assets/tpp/environ/object/guantanamo/roadcone/gntn_rdcn001/scenes/gntn_rdcn001.geom
/Assets/tpp/environ/object/guantanamo/rock/gntn_rock002/scenes/gntn_rock002.geom
/Assets/tpp/environ/object/guantanamo/rock/gntn_rock002/scenes/gntn_rock002_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/rock/gntn_rock003/scenes/gntn_rock003.geom
/Assets/tpp/environ/object/guantanamo/rock/gntn_rock004/scenes/gntn_rock004.geom
/Assets/tpp/environ/object/guantanamo/rock/gntn_rock005/scenes/gntn_rock005.geom
/Assets/tpp/environ/object/guantanamo/room/gntn_room001/scenes/gntn_room001.geom
/Assets/tpp/environ/object/guantanamo/room/gntn_room002/scenes/gntn_room002.geom
/Assets/tpp/environ/object/guantanamo/room/gntn_room003/scenes/gntn_room003.geom
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_001.geom
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_002.geom
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_003.geom
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_004.geom
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_005.geom
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_006.geom
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_007.geom
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_marg001.geom
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_marg002.geom
/Assets/tpp/environ/object/guantanamo/sandbag/gntn_sndb001/scenes/gntn_sndb001_marg003.geom
/Assets/tpp/environ/object/guantanamo/sea/gntn_seaa001/scenes/gntn_seaa001.geom
/Assets/tpp/environ/object/guantanamo/sea/gntn_seaa001/scenes/gntn_seaa001_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/sea/gntn_seaa001/scenes/gntn_seaa001_vrtn002.geom
/Assets/tpp/environ/object/guantanamo/sea/gntn_seaa001/scenes/gntn_seaa001_vrtn003.geom
/Assets/tpp/environ/object/guantanamo/shadow/gntn_shdw001/scenes/gntn_shdw001.geom
/Assets/tpp/environ/object/guantanamo/shelf/gntn_shlf001/scenes/gntn_shlf001.geom
/Assets/tpp/environ/object/guantanamo/shelf/gntn_shlf002/scenes/gntn_shlf002.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd001/scenes/gntn_sgbd001.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd001/scenes/gntn_sgbd001_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd001/scenes/gntn_sgbd001_vrtn002.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd001/scenes/gntn_sgbd001_vrtn003.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd001/scenes/gntn_sgbd001_vrtn004.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd001/scenes/gntn_sgbd001_vrtn005.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd001/scenes/gntn_sgbd001_vrtn006.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd001/scenes/gntn_sgbd001_vrtn007.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd002/scenes/gntn_sgbd002_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd002/scenes/gntn_sgbd002_vrtn002.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd002/scenes/gntn_sgbd002_vrtn003.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn001_an.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn002.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn003.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn004.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn005.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn006.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn007.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn008.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn009.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn010.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn011.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn012.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn013.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn014.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn015.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn016.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn017.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn018.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn019.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn020.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn021.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn022.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn023.geom
/Assets/tpp/environ/object/guantanamo/signboard/gntn_sgbd003/scenes/gntn_sgbd003_vrtn024.geom
/Assets/tpp/environ/object/guantanamo/speaker/gntn_spkr001/scenes/gntn_spkr001.geom
/Assets/tpp/environ/object/guantanamo/stairs/gntn_star001/scenes/gntn_star001.geom
/Assets/tpp/environ/object/guantanamo/stairs/gntn_star003/scenes/gntn_star003.geom
/Assets/tpp/environ/object/guantanamo/steel_frame/gntn_stfr001/scenes/gntn_stfr001.geom
/Assets/tpp/environ/object/guantanamo/steel_frame/gntn_stfr002/scenes/gntn_stfr002_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/steel_tower/gntn_sttw001/scenes/gntn_sttw001.geom
/Assets/tpp/environ/object/guantanamo/steel_tower/gntn_sttw002/scenes/gntn_sttw002_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/stepladder/gntn_stpl001/scenes/gntn_stpl001.geom
/Assets/tpp/environ/object/guantanamo/stepladder/gntn_stpl002/scenes/gntn_stpl002.geom
/Assets/tpp/environ/object/guantanamo/stepladder/gntn_stpl003/scenes/gntn_stpl003.geom
/Assets/tpp/environ/object/guantanamo/stepladder/gntn_stpl003/scenes/gntn_stpl003_vrtn001.geom
/Assets/tpp/environ/object/guantanamo/stepladder/gntn_stpl003/scenes/gntn_stpl003_vrtn002.geom
/Assets/tpp/environ/object/guantanamo/stepladder/gntn_stpl003/scenes/gntn_stpl003_vrtn003.geom
/Assets/tpp/environ/object/guantanamo/stretcher/gntn_strt001/scenes/gntn_strt001.geom