-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript_symbols.cpp
3747 lines (3716 loc) · 183 KB
/
script_symbols.cpp
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
#include <map>
#include <cstdint>
std::map<std::pair<uint16_t, uint16_t>, const char*> named_members {
{{0xaae9, 0x34}, "spoketoTaggart"},
{{0xaae9, 0x48}, "spoketoSarif"},
};
std::map<uint16_t, const char*> script_symbol {
{0x0010, "run"},
{0x0541, "isEqual"},
{0x0546, "value"}, // to set
{0x054f, "debugPrint"},
{0x0553, "rand"},
{0x0557, "cos"},
{0x0559, "sin"},
{0x05a5, "getController"},
{0x0635, "isAlive"},
{0x0646, "getLocomotionController"},
{0x0647, "getAimingController"},
{0x067c, "switchToFaction"},
{0x082e, "getGameGlobals"},
{0x08b2, "deref"},
{0x08d0, "serializeMaybe"},
{0x08d1, "outStream08d1"},
{0x08d2, "outStream"},
{0x08d3, "deserializeMaybe"},
{0x08d4, "inStream08d4"},
{0x08d5, "inStream"},
{0x08da, "createBaseInstanceBoneAnchor"},
{0x08dc, "createModelMarkerAnchor1"},
{0x08de, "createModelMarkerAnchor2"},
{0x094b, "disableObjective"},
{0x0990, "isLoadedMaybe"},
{0x09fe, "setByte"},
{0x09ff, "setRotation"},
{0x0a00, "setFloat"},
{0x0a01, "setDword"},
{0x0a02, "setSymbol"},
{0x0a03, "setVector"},
{0x0a0b, "getByte"},
{0x0a59, "awardTrophyProbably"},
{0x0a7e, "numLoadedObjectsMaybe"},
{0x0a87, "loadUnitMaybe"},
// hostages
{0x0e14, "objective_secure_the_hostages_updated"},
{0x0e15, "objective_rescue_josie_thorpe"},
//
{0x0e23, "objective_go_to_my_office"},
{0x0e24, "objective_meet_the_mysterious_informant"},
{0x0e25, "mission_lesser_evils"},
{0x0e26, "mission_paging_adam_jensen"},
{0x0e27, "mission_voices_from_the_dark"},
{0x0e2a, "s_scn_det_sarif_industries_part02"},
// o'malley's package
{0x11e2, "objective_knock_out_double_t"}, // var
{0x13dd, "objective_retrieve_omalleys_package"}, // var
{0x13de, "objective_identify_omalleys_weapon_shipment"}, // var
{0x15ca, "objective_omalley_find_evidence"}, // var
{0x15cb, "objective_return_to_jenny"}, // var
{0x15cc, "objective_neutralize_mcb_opposition"}, // var
// final_quest
{0x2c32, "objective_speak_with_sarif"}, // var
{0x2c33, "objective_speak_with_taggart"}, // var
{0x2c61, "concludeGame_disableTalkToXObjectives"}, // method
{0x2cc7, "spokeToTaggart"}, // var
{0x2cc8, "spokeToSarif"}, // var
{0x2cca, "objective_reach_the_broadcast_center"}, // var
{0x2cca, "objective_broadcast_choice_darrow"}, // var
{0x2ccb, "objective_broadcast_choice_darrow_sarif"}, // var
{0x2ccc, "objective_broadcast_choice_darrow_taggart"}, // var
{0x2ccd, "objective_broadcast_choice_darrow_sarif_taggart"}, // var
{0x2cce, "scenarioPanChaosOff"}, // var
{0x2ccf, "refScenarioPanChaosOff"}, // var
{0x2cd0, "scenarioPanChaosOn"}, // var
{0x2cd1, "refScenarioPanChaosOn"}, // var
{0x2cf5, "enableChaos"}, // method
{0x2cf6, "disableChaos"}, // method
{0x2cfb, "activateSwitchDarrow"}, // method
{0x2cfc, "activateSwitchSarif"}, // method
{0x2cfd, "activateSwitchTaggart"}, // method
{0x2cfe, "activateSwitchDestruction"}, // method
{0x2cff, "openBoxAll"}, // method
{0x2d00, "openBoxDarrow"}, // method
{0x2d01, "openBoxSarifAndDarrow"}, // method
{0x2d02, "openBoxTaggartAndDarrow"}, // method
{0x2d03, "playVideoDarrow"}, // method
{0x2d04, "playVideoSarif"}, // method
{0x2d05, "playVideoTaggart"}, // method
{0x2d06, "playVideoDestruction"} // method
};
// name of the drm assigned to the primary script in it
std::map<uint32_t, const char*> section_header_symbol {
{0x0000053b, "civilian_farida"},
{0x0000053c, "civilian_gregthorpe"},
{0x0000053d, "civilian_sq_lee"},
{0x0000053e, "civilian_arievanbruggen"},
{0x0000053f, "civilian_themole"},
{0x00000540, "riotcop_zekesanders"},
{0x00000541, "mediumguard_naharikhan"},
{0x00000542, "shifter_white_a"},
{0x00000543, "sneaker_black_b"},
{0x00000544, "sneaker_white_a"},
{0x00000545, "soldier_black_a"},
{0x00000546, "soldier_black_b"},
{0x00000547, "soldier_white_a"},
{0x00000548, "soldier_white_b"},
{0x0000054b, "human"},
{0x00000552, "human_player"},
{0x00000553, "sce_16_csb_2_heavyguard_narharikhan"},
{0x00000554, "sce_16_csb_2_shifter_belltower_a"},
{0x00000555, "det1_samassembly_civilian_gregthorpe"},
{0x00000556, "det1_samrestrictedarea_corpse_themole"},
{0x00000557, "det1_samrestrictedarea_civilian_themole"},
{0x00000558, "det2_cityaptindus1_riotcop_zekesanders"},
{0x00000559, "mtl_picfunicular_soldier_belltower_a"},
{0x0000055a, "mtl_picfunicular_soldier_belltower_b"},
{0x0000055b, "mtl_picfunicular_soldier_belltower_d"},
{0x0000055c, "mtl_picfunicular_soldier_belltower_i"},
{0x0000055d, "mtl_picinternet_soldier_belltower_a"},
{0x0000055e, "mtl_picinternet_soldier_belltower_c"},
{0x0000055f, "mtl_picinternet_soldier_belltower_d"},
{0x00000560, "mtl_picinternet_soldier_belltower_e"},
{0x00000561, "mtl_picinternet_soldier_belltower_f"},
{0x00000562, "mtl_picinternet_soldier_belltower_g"},
{0x00000563, "mtl_picinternet_soldier_belltower_h"},
{0x00000564, "mtl_picinternet_soldier_belltower_j"},
{0x00000565, "mtl_picrestrictedarea_sneaker_belltower_a"},
{0x00000566, "mtl_picrestrictedarea_sneaker_belltower_b"},
{0x00000567, "mtl_picrestrictedarea_sneaker_belltower_d"},
{0x00000568, "sha1_capsulehotelcalm_civilian_arievanbruggen"},
{0x00000569, "sha1_capsulehotelcalm_civilian_faridah"},
{0x0000056a, "sha1_lowernightlife_civilian_faridah"},
{0x0000056b, "sha1_thehive_civilian_sq_leehong"},
{0x0000056c, "sha2_conscrashsite_corpse_faridah"},
{0x0000056d, "sha2_seaport_boxguard_boxed_a"},
{0x0000056e, "npc_barrett"},
{0x0000056f, "cinematicobject"},
{0x00000570, "objectivelocator"},
{0x00000571, "damagevolume"},
{0x00000572, "fire_damagevolume"},
{0x00000573, "destroyphysicsobjectsvolume"},
{0x00000574, "mapdisplayvolume"},
{0x00000575, "triggervolume"},
{0x00000577, "thrownproj_emp_mine"},
{0x00000580, "base_elevator_exterior_dbl_door"},
{0x00000589, "computer_hacking_a"},
{0x0000058a, "mole_pistol"},
{0x0000058b, "dedicated_terminal_b"},
{0x0000058c, "det_adam_elevator_door_a"},
{0x0000058d, "det_adam_frontdoor_a"},
{0x0000058e, "det_fema_door_double_scifi_a"},
{0x0000058f, "det_fema_scifi_door_single_sl_a"},
{0x00000590, "det_sam_door_sl_single_restricted_a"},
{0x00000591, "door_picus_sl_single_404_a"},
{0x00000592, "sha_caps_capsule_door"},
{0x00000593, "elevator_button_a"},
{0x00000594, "so_lower_constsite_tempchoppercolision"},
{0x00000595, "debugbutton"},
{0x00000596, "sha_lowerhengsha_answeringmachine_a"},
{0x00000597, "sha_lowerhengsha_antiqueclock_a"},
{0x00000598, "sha_lowerhengsha_baseballbat_a"},
{0x00000599, "bee_chopper_volume"},
{0x0000059a, "faridah_chopper_a"},
{0x0000059b, "soundsource"},
{0x0000059c, "dispatcher"},
{0x0000059d, "master_dispatcher_detroit_fema"},
{0x0000059e, "master_dispatcher_shanghai_tym"},
{0x0000099c, "lw_cigarette_a"},
{0x000009c5, "deferred_fast_omni_diffuse"},
{0x000009cb, "deferred_arbi_frustum"},
{0x000009d0, "deferred_arbori_bidirect_ambient"},
{0x000009d5, "deferred_box_projector"},
{0x000009da, "deferred_fast_omni_90d"},
{0x000009e4, "deferredvolcoronas"},
{0x00000a03, "fx_squib_door_a"},
{0x00000a18, "flare_halogene_a"},
{0x00000a1c, "fx_det_city_planar_smoke"},
{0x00000a1d, "fx_planar_smoke_base"},
{0x00000a28, "hl_det_police_adam"},
{0x00000b2a, "car_2010_a"},
{0x00000b37, "car_carcasse_generic_a"},
{0x00000b41, "car_door_a"},
{0x00000b4e, "car_wheel_a"},
{0x00000b5b, "fx_squib_car_a"},
{0x00000b6d, "car_2027_b"},
{0x00000b7e, "car_police_a"},
{0x00000b92, "female_white_a"},
{0x00000b94, "det1_citypolice_civilian_female_civilian_c"},
{0x00000d59, "male_black_a"},
{0x00000d6b, "det1_citypolice_civilian_male_civilian_d"},
{0x00000ed1, "streetcop_black_b"},
{0x00000ee4, "det1_citypolice_streetcop_detpolice_b"},
{0x0000122e, "lw_combatrifle_a"},
{0x00001235, "garbage_can_a"},
{0x0000123b, "garbage_can_b"},
{0x00001240, "hl_sha_nl_resi_a"},
{0x0000158a, "female_black_a"},
{0x00001590, "sha1_lowernightlife_civilian_female_generic_a"},
{0x000016cb, "female_asian_b"},
{0x000016db, "sha1_lowernightlife_civilian_female_prostitute_a"},
{0x0000179f, "male_asian_b"},
{0x000017aa, "sha1_lowernightlife_civilian_male_generic_a"},
{0x00001885, "lightsecurityguard_black_a"},
{0x00001886, "sha2_citylowernightlife_lighguard_belltower_a"},
{0x00001a1c, "mediumsecurityguard_asian_b"},
{0x00001a1e, "sha2_citylowernightlife_mediumguard_belltower_a"},
{0x00001b85, "lb_planarbeam"},
{0x00001b8b, "lb_planarnd"},
{0x00001b91, "mapboundary"},
{0x00001ba4, "occupation_chairaccesscomputer"},
{0x00001bbd, "lw_beer_bottle_a"},
{0x00001bc3, "lw_bowl_noodle_b"},
{0x00001bc9, "lw_can_softdrink_b"},
{0x00001bcf, "lw_cup_coffee_a"},
{0x00001bd5, "lw_drinking_glass_a"},
{0x00001bdb, "lw_stick_noodles_a"},
{0x00001beb, "lw_file_nail_a"},
{0x00001bef, "occupation_chairnervous"},
{0x00001bfc, "occupation_destroylongburst_up"},
{0x00001c02, "occupation_inv_doorentry"},
{0x00001c09, "occupation_riflestandgiveorders"},
{0x00001c10, "occupation_sitchairscared"},
{0x00001c15, "occupation_standkeyboard"},
{0x00001c1c, "occupation_standtalk"},
{0x00001c24, "occupation_vanbruggen_capsule_work"},
{0x00001c3b, "thrown_concussion_equip"},
{0x00001c42, "thrown_concussion_npc"},
{0x00001c64, "fx_squib_concussion_a"},
{0x00001c77, "mine_concussion_equip"},
{0x00001c8c, "thrownproj_concussion_mine"},
{0x00001c95, "fx_squib_concussion_mine_a"},
{0x00001c9f, "mine_concussion_world"},
{0x00001ca0, "thrown_frag_equip"},
{0x00001ca6, "thrown_frag_npc"},
{0x00001cb8, "fx_squib_frag_a"},
{0x00001cb9, "fx_squib_frag_a_npc"},
{0x00001ccf, "mine_frag_equip"},
{0x00001cd2, "thrownproj_frag_mine"},
{0x00001cd9, "fx_squib_frag_mine_a"},
{0x00001ce2, "mine_frag_world"},
{0x00001e03, "weapon_pistol_equip"},
{0x00001ec6, "weapon_pistol_npc"},
{0x00001ef3, "weapon_pistol_upgraded_equip"},
{0x00001f1d, "base_elevator"},
{0x00001f20, "elevator_adam"},
{0x00002118, "civilian_sq_cassandrareed"},
{0x00002119, "civilian_sq_brentradford"},
{0x0000211a, "civilian_sq_carrella"},
{0x0000211b, "civilian_sq_tindall"},
{0x0000211c, "civilian_taggart"},
{0x0000211d, "bodyguard_black_a"},
{0x0000211e, "bodyguard_black_b"},
{0x0000211f, "bodyguard_white_a"},
{0x00002120, "bodyguard_white_b"},
{0x00002121, "lieutenant_sq_junkie"},
{0x00002122, "lowlife_sq_christiancharest"},
{0x00002123, "striker_sq_omalley"},
{0x00002124, "det1_adamapt_civilian_sq_cassandrareed"},
{0x00002125, "det1_cityaptbck1_lowlife_sq_christiancharest"},
{0x00002126, "det1_cityaptbck1_sq_junkie"},
{0x00002127, "det1_citypolice_striker_sq_omalley"},
{0x00002128, "det1_citysarif_civilian_sq_tindall"},
{0x00002129, "det2_cityaptbck2_civilian_sq01_brentradford"},
{0x0000212a, "det2_citydetroit2_striker_taggartguard_d"},
{0x0000212b, "det2_citydetroit2_striker_taggartguard_e"},
{0x0000212c, "det2_citydetroit2_striker_taggartguard_f"},
{0x0000212d, "det2_citydetroit2_striker_taggartguard_h"},
{0x0000212e, "det2_citydetroit2_striker_taggartguard_i"},
{0x0000212f, "det2_citydetroit2_civilian_taggart_conferenceroom"},
{0x00002130, "sarifhq_lobbypart2_civilian_sq_carrella"},
{0x00002131, "mapmarker"},
{0x00002133, "level0_secretarea"},
{0x00002134, "triggerplane"},
{0x00002136, "base_camera"},
{0x0000213a, "det_adam_blades_a"},
{0x0000213c, "camera_security_a"},
{0x0000213d, "det_adam_app_door_a"},
{0x0000213e, "det_conv_door_sw_backstage_a"},
{0x0000213f, "det_conv_door_sw_backstageaccess_a"},
{0x00002140, "det_inte_sw_plain_a"},
{0x00002141, "det_police_door_sw_exterior_a"},
{0x00002142, "keypad_a"},
{0x00002143, "remote_control_a"},
{0x00002144, "television_extralarge"},
{0x00002145, "scenario_chooser"},
{0x00002529, "brainchip"},
{0x00002531, "brainchip_reader"},
{0x00002537, "camera_rig_a"},
{0x0000259b, "deferred_cylindrical"},
{0x000025a0, "deferred_fast_omni_sky"},
{0x000025a8, "deferred_softbox"},
{0x000025c4, "det_adam_birds_a"},
{0x000025d1, "det_city_sky_a"},
{0x000025dd, "det_conv_door_sw_exitcorridor_a"},
{0x000025e7, "det_police_locker_a"},
{0x000025f5, "door_airvent_a"},
{0x00002600, "ebook_a"},
{0x00002609, "fan_a_turning_head"},
{0x00002613, "fx_airshaft_steam_b"},
{0x00002627, "fx_falling_leaves_a"},
{0x0000262d, "fx_layer_clouds_det_a"},
{0x00002642, "fx_spinning_papers"},
{0x00002648, "fx_wind_dust_a"},
{0x0000265b, "occbox"},
{0x00002660, "occprism"},
{0x00002677, "ph_box_cardboard_a"},
{0x00002688, "ph_box_cardboard_c"},
{0x00002692, "ph_crate_metal_medium_a"},
{0x000026a0, "ph_fire_extinguisher"},
{0x000026b0, "ptw_concrete_adamsrooftop_a"},
{0x000026be, "fx_squib_punchthroughwall_a"},
{0x000028d3, "ptw_concrete_cracksplane_a"},
{0x000028da, "ptw_concrete_debris_a"},
{0x000028e0, "squib_punchthroughwall_stun"},
{0x000028ef, "sch_drawer_desk_a"},
{0x00002901, "tap_water_a"},
{0x00002927, "toilet_invisible_a"},
{0x0000292c, "tong_harvester_chair"},
{0x0000296f, "weapon_combatrifle_equip"},
{0x000029ad, "weapon_combatrifle_npc"},
{0x000029bf, "weapon_combatrifle_upgraded_equip"},
{0x00002a3c, "det_sarif_industries_office_door_sw_a"},
{0x00002a3d, "det_sarif_main_door_a"},
{0x00002af3, "det_interactiveboxcrossbow_a"},
{0x00002c7b, "deferred_omni_rimlight"},
{0x00002c80, "det01_sq04_drugpackage_world"},
{0x00002c8a, "det_conv_door_sw_bathroom_a"},
{0x00002cac, "door_woodfence_g"},
{0x00002cb2, "fan_cont_paddle_a"},
{0x00002cbe, "hazard_dispatcher"},
{0x00002cc8, "level1_secretarea"},
{0x00002cd2, "moving_frame_a"},
{0x00002cd8, "fx_squib_breakable_woodcrate_med_a"},
{0x00002cea, "opn_cabinet_gun_a"},
{0x00002cf3, "opn_safe_locker_a"},
{0x00002cfb, "ph_crate_metal_large_a"},
{0x00002d06, "ph_fridge_a"},
{0x00002d11, "praxiskit"},
{0x00002d16, "quicksavevolume"},
{0x00002d1b, "sh_office_desk_a_drawer"},
{0x00002d5f, "weapon_shotgun_equip"},
{0x00002d8b, "weapon_shotgun_npc"},
{0x00002d9e, "lw_shotgun_a"},
{0x00002dab, "weapon_shotgun_upgraded_equip"},
{0x00002e58, "ptw_det_apartment_a"},
{0x00002e5d, "ptw_det_apartment_b"},
{0x00002e96, "button"},
{0x00002f8c, "fx_water_droplets_line_100cm"},
{0x00002f91, "fx_water_droplets_line_10cm"},
{0x00002fa0, "ph_vending_machine_soft_drinks_a"},
{0x00002fa7, "ph_vending_machine_soft_drinks_b"},
{0x00002fa9, "ptw_det_apartment_c"},
{0x00002fae, "ptw_det_apartment_d"},
{0x000030c6, "st_det_indus_police"},
{0x000030d0, "bk_window_parkingmeter_a"},
{0x000030d9, "fx_squib_breakableglass_a"},
{0x000030e6, "breakable_concreteblock_a"},
{0x000030ed, "breakable_roadblocks_pieces_a"},
{0x000030f2, "fx_squib_breakable_concreteblocks_a"},
{0x000030fa, "breakable_concreteblock_b"},
{0x00003100, "breakable_roadblock_a"},
{0x00003102, "fx_squib_breakable_roadblocks_a"},
{0x00003113, "car_2027_a"},
{0x00003120, "det1_citypolice_civilian_female_generic_a"},
{0x00003124, "female_black_b"},
{0x0000312e, "det1_citypolice_civilian_female_hobo_c"},
{0x00003253, "det1_citypolice_civilian_female_prostitute_b"},
{0x00003260, "det1_citypolice_civilian_male_generic_a"},
{0x00003264, "male_white_a"},
{0x00003272, "det1_citypolice_civilian_male_hobo_d"},
{0x000033bf, "lieutenant_white_a"},
{0x000033ce, "det1_citypolice_lieutenant_drb_a"},
{0x0000351d, "lowlife_black_b"},
{0x00003524, "det1_citypolice_lowlife_drb_a"},
{0x00003630, "det_police_station_front_door_a"},
{0x00003636, "detroit_dynamicads_a"},
{0x0000363d, "detroit_dynamicads_c"},
{0x00003642, "detroit_dynamicads_f"},
{0x0000364b, "door_mini_storage_a"},
{0x0000364f, "fx_barrel_fire_a"},
{0x00003663, "fx_flies_a"},
{0x0000369c, "lw_ebook_a"},
{0x000036c3, "lw_cellphone_a"},
{0x000036ca, "lw_console_game_a"},
{0x000036d2, "occupation_riflestandsmoke"},
{0x000036e0, "lw_cigarette_pack_a"},
{0x000036e6, "lw_lighter_a"},
{0x000036e7, "occupation_standbeg"},
{0x000036fb, "lw_can_spray_a"},
{0x000036fc, "occupation_standreadingsign"},
{0x00003702, "occupation_standsearchtrash"},
{0x00003710, "lw_hotdog_a"},
{0x00003712, "occupation_standsexywait"},
{0x00003718, "occupation_standwatchtv"},
{0x0000371c, "occupation_standwindowshopping"},
{0x00003731, "ph_barrel_dirty_a"},
{0x0000373c, "ph_dumpster_a"},
{0x00003748, "rdbl_newspaper_dispenser_a"},
{0x00003757, "rdbl_newspaper_dispenser_b"},
{0x0000375f, "vent_fan_a"},
{0x00003844, "det_police_car_a"},
{0x0000385b, "lw_blanket_a"},
{0x0000386b, "ph_crate_wood_medium_b"},
{0x00003899, "laserbeam"},
{0x0000389a, "ph_basketball_a"},
{0x0000389b, "valve"},
{0x000038c9, "det_backalley"},
{0x000038e8, "base_empfield_generator"},
{0x000038ed, "level2_secretarea"},
{0x000038f7, "st_det_sarif_police"},
{0x00003901, "det1_citysarif_civilian_female_hobo_b"},
{0x0000390b, "male_white_b"},
{0x0000390d, "det1_citysarif_civilian_male_civilian_b"},
{0x00003a43, "det1_citysarif_lowlife_punk_a"},
{0x00003a4f, "riotcop_white_b"},
{0x00003a52, "det1_citysarif_riotcop_detpolice_b"},
{0x00003b8e, "toxicgas_damagevolume"},
{0x00003f7e, "base_camo_vent"},
{0x00003f85, "bathroom_cabine_deluxe_a"},
{0x00003f8a, "camera_det_convconf_a"},
{0x00003f92, "deferred_box_tapered"},
{0x00003f97, "deferred_halfomni"},
{0x00003fab, "det_conv_door_sw_dbl_conference_a"},
{0x00003fb1, "det_conv_door_sw_dbl_storycardreader_a"},
{0x00003fb7, "det_convconf_tv_a"},
{0x00003fc4, "drinking_fountain_a"},
{0x00003fce, "hand_dryer_invisible_a"},
{0x00003fd3, "hl_det_sarif_limb"},
{0x0000409f, "bk_window_135x350_a"},
{0x000040a2, "civilian_letetia"},
{0x000040a6, "female_white_b"},
{0x000040ae, "det1_cityback1_civilian_female_punk_a"},
{0x000041d6, "det1_cityback1_civilian_female_punk_b"},
{0x000041da, "lowlife_black_a"},
{0x000041e3, "det1_cityback1_lowlife_punk_a"},
{0x000042f1, "limbmerchant_andreamantegna"},
{0x000042fa, "det1_citylimbclinic_limbmerchant_andreamantegna"},
{0x0000430a, "det1_citysarif_civilian_female_civilian_a"},
{0x00004313, "det1_citysarif_civilian_female_hobo_d"},
{0x0000431d, "det1_citysarif_civilian_female_officeworker_b"},
{0x00004327, "det1_citysarif_civilian_female_officeworker_d"},
{0x00004331, "det1_citysarif_civilian_letetia"},
{0x0000433e, "det1_citysarif_civilian_male_civilian_d"},
{0x00004347, "male_black_b"},
{0x00004348, "det1_citysarif_civilian_male_civilian_e"},
{0x00004455, "det1_citysarif_civilian_male_generic_a"},
{0x0000445f, "det1_citysarif_civilian_male_hobo_d"},
{0x00004468, "det1_citysarif_civilian_male_officeworker_c"},
{0x0000446c, "lieutenant_black_b"},
{0x00004471, "det1_citysarif_lieutenant_merchantguard_a"},
{0x00004478, "lowlife_white_b"},
{0x0000447c, "det1_citysarif_lowlife_punk_e"},
{0x000045a2, "streetcop_black_a"},
{0x000045a3, "det1_citysarif_streetcop_detpolice_f"},
{0x000046d8, "streetcop_white_a"},
{0x000046dd, "det1_citysarif_streetcop_detpolice_h"},
{0x0000481d, "striker_white_b"},
{0x00004824, "det1_citysarif_striker_punk_a"},
{0x0000482c, "wepmerchant_grayson"},
{0x00004833, "det1_citysarif_wepmerchant_grayson"},
{0x00004863, "det1_citytunnel1_civilian_male_civilian_a"},
{0x00004868, "det1_citytunnel1_streetcop_detpolice_a"},
{0x0000486d, "streetcop_white_b"},
{0x0000486e, "det1_citytunnel1_streetcop_detpolice_b"},
{0x00004877, "fx_flying_papers"},
{0x0000487d, "fx_sky_light_a"},
{0x00004881, "lowlife_white_a"},
{0x0000488a, "ph_crate_wood_large_a"},
{0x0000488c, "ptw_concrete_detconv_dressingroom_a"},
{0x00004892, "so_det_convconf_tv_noise_a"},
{0x00004897, "television_verylarge"},
{0x0000489e, "toilet_a"},
{0x000048a9, "urinal_a"},
{0x0000492c, "det1_cityindustrial_lowlife_drb_b"},
{0x0000492d, "det1_cityindustrial_lowlife_drb_d"},
{0x0000492e, "det1_cityindustrial_lowlife_drb_g"},
{0x00004932, "det_insudstrial_antenna_light_a"},
{0x00004933, "det_industrial_antenna_baselight_a"},
{0x00004934, "dedicatedterminalscripteditem"},
{0x00004935, "bee_chopper_a"},
{0x00004a4d, "bk_window_95x290_a"},
{0x00004a57, "deferred_spot_projector"},
{0x00004a63, "det_citystreets_industrialdoor_sw_a"},
{0x00004a7a, "det_industrial_sw_door_a"},
{0x00004a88, "flare_street_streak_c"},
{0x00004a98, "manhole_a"},
{0x00004a9a, "ptw_det_industrial_concrete_a"},
{0x00004a9f, "ptw_det_industrial_concrete_b"},
{0x00004aca, "weapon_machinepistol_equip"},
{0x00004aec, "weapon_machinepistol_npc"},
{0x00004af5, "weapon_machinepistol_upgraded_equip"},
{0x00004b22, "weapon_rocketlauncher_equip"},
{0x00004b4e, "weapon_rocketlauncher_npc"},
{0x00004b55, "weapon_rocketlauncher_upgraded_equip"},
{0x00004c30, "cut_limb_screen_a"},
{0x00004c32, "det_limb_front_door_a"},
{0x00004cd5, "det_limb_chair_arm"},
{0x00004cde, "det_limb_door_sl_dbl_welcome_a"},
{0x00004cea, "det_limb_door_sl_operation_a"},
{0x00004cef, "det_limb_door_sl_operation_b"},
{0x00004cf4, "det_limb_door_sl_operation_c"},
{0x00004d01, "det_limb_manipulator_arm"},
{0x00004d08, "det_limb_scanner"},
{0x00004d11, "fx_fog_limb_clinic_a"},
{0x00004d23, "screen_flat_television_a"},
{0x00004e4b, "scriptedeventhelper"},
{0x00004e4d, "breaker"},
{0x00004f24, "breakable_column_a"},
{0x00004f2c, "breakable_columns_pieces_a"},
{0x00004f30, "fx_squib_breakable_columns_a"},
{0x00004f49, "det1_citypolice_corpse_hobo_a"},
{0x00004f54, "det_metrostation_door_a"},
{0x00004f59, "detroit_dynamicads_d"},
{0x00004f60, "detroit_dynamicads_e"},
{0x00004f65, "detroit_dynamicads_g"},
{0x00004f69, "electricity_damagevolume"},
{0x00004f6f, "fx_damage_volume_electrik_2x2m"},
{0x00004f78, "fx_damage_volume_electrik_ground_4x6m"},
{0x00004f80, "fx_fireline_windy_1m"},
{0x00004f85, "fx_fireline_windy_50cm"},
{0x00004f8d, "hl_det_police_police_pcp"},
{0x00004f94, "civilian_sq_jennyalexander"},
{0x00004fc3, "det1_cityback2_civilian_female_punk_a"},
{0x00004fc8, "det1_cityback2_civilian_male_hobo_b"},
{0x00004fd2, "det1_citypolice_civilian_female_civilian_b"},
{0x00004fdc, "det1_citypolice_civilian_female_civilian_f"},
{0x00004fe4, "det1_citypolice_civilian_female_hobo_a"},
{0x00004fec, "det1_citypolice_civilian_female_hobo_b"},
{0x00004ff3, "det1_citypolice_civilian_female_hobo_d"},
{0x00004ffe, "det1_citypolice_civilian_female_prostitute_g"},
{0x00005004, "det1_citypolice_civilian_female_punk_a"},
{0x00005008, "det1_citypolice_civilian_male_civilian_a"},
{0x00005014, "det1_citypolice_civilian_male_civilian_b"},
{0x0000501c, "det1_citypolice_civilian_male_generic_c"},
{0x00005023, "det1_citypolice_civilian_male_hobo_a"},
{0x00005028, "det1_citypolice_civilian_male_hobo_f"},
{0x00005032, "det1_citypolice_civilian_sq_jennyalexander"},
{0x0000503a, "lieutenant_black_a"},
{0x0000503b, "det1_citypolice_lieutenant_punk_a"},
{0x00005043, "det1_citypolice_lowlife_drb_d"},
{0x0000504a, "det1_citypolice_lowlife_punk_a"},
{0x0000504f, "det1_citypolice_lowlife_punk_b"},
{0x00005056, "det1_citypolice_lowlife_punk_c"},
{0x0000505e, "det1_citypolice_lowlife_punk_d"},
{0x0000506b, "det1_citypolice_lowlife_punk_f"},
{0x0000506f, "det1_citypolice_riotcop_detpolice_a"},
{0x00005074, "det1_citypolice_streetcop_detpolice_a"},
{0x00005078, "det1_citypolice_streetcop_detpolice_c"},
{0x0000507e, "det1_citypolice_streetcop_detpolice_d"},
{0x00005082, "det1_citypolice_streetcop_detpolice_e"},
{0x0000508c, "det1_citypolice_striker_drb_a"},
{0x00005091, "ptw_lower_hengsha_sewer_a"},
{0x0000509c, "pirate_radio"},
{0x000050a2, "so_fence_a"},
{0x000050cf, "weapon_stungun_equip"},
{0x0000528f, "det_gas_station_frontdoor_a"},
{0x0000529f, "det_streets_door_corridorconv_sl_dbl_a"},
{0x000052a4, "detroit_dynamicads_b"},
{0x000052aa, "detroit_dynamicads_bb"},
{0x000052d8, "weapon_sniperrifle_equip"},
{0x00005307, "weapon_sniperrifle_npc"},
{0x00005317, "lw_sniperrifle_a"},
{0x000054f1, "base_camo_sewers2_2m_a"},
{0x000054f6, "base_camo_sewers2_4m_a"},
{0x000054fb, "deferred_box_caustics"},
{0x00005503, "ph_crate_metal_verysmall_i"},
{0x00005505, "ptw_catacomb_sewer_a"},
{0x00005574, "ph_barrel_a"},
{0x00005615, "alarm"},
{0x00005616, "det_fema_door_single_scifi"},
{0x00005617, "turret_floor"},
{0x000057ba, "bk_grill"},
{0x000057ce, "bk_window_170x360_a"},
{0x000057d6, "bk_window_bossfight"},
{0x0000580d, "cigarette_a"},
{0x0000581d, "computer_securityhub"},
{0x00005822, "deferred_spot_truncated"},
{0x00005844, "door_mini_storage_b"},
{0x00005848, "door_mini_storage_c"},
{0x0000584e, "fan_ceiling_modern_a"},
{0x00005853, "fema_breakable_colonne_a"},
{0x00005854, "fx_squib_fema_breakable_columns_a"},
{0x0000585d, "fema_breakable_structures_a"},
{0x00005861, "fx_squib_barretexploconcussion"},
{0x000059c3, "ph_trash_bin_a"},
{0x000059c5, "ptw_det_industrial_concrete_c"},
{0x000059ca, "ptw_det_industrial_concrete_d"},
{0x000059d0, "sch_case_ammunition_a"},
{0x000059e4, "mine_emp_equip"},
{0x000059f4, "fx_squib_emp_a"},
{0x000059f6, "fx_squib_emp_mine_a"},
{0x000059ff, "mine_emp_world"},
{0x00005a00, "thrown_emp_equip"},
{0x00005a05, "thrown_emp_npc"},
{0x00005a41, "fx_squib_turret_destroyed"},
{0x00005a4b, "weapon_machinegun_turret_npc"},
{0x00005a73, "weapon_doublebarrelshotgun_equip"},
{0x00005a9a, "weapon_heavyrifle_aug_barrett_npc"},
{0x00005a9b, "weapon_heavyrifle_npc"},
{0x00005ad8, "weapon_revolver_equip"},
{0x00005b08, "weapon_revolver_npc"},
{0x00005b10, "weapon_revolver_upgraded_equip"},
{0x00005b35, "det_fema_elevator_dbl_a"},
{0x00005b36, "elevator_fema_vista"},
{0x00005c12, "lw_gun_welding_a"},
{0x00005c18, "lw_screwdriver_a"},
{0x00005ce7, "showoff"},
{0x00005ce8, "showoff_black_b"},
{0x00005ce9, "showoff_white_a"},
{0x00005cea, "det1_femaexterior_lieutenant_mcb_a"},
{0x00005ceb, "det1_femaexterior_showoff_mcb_a"},
{0x00005cec, "det1_femaexterior_showoff_mcb_b"},
{0x00005efc, "base_alarm_light"},
{0x00005efd, "alarm_light"},
{0x00005f11, "base_breakable_sliding_window"},
{0x00005f1a, "bk_box_cardboard_small_a"},
{0x00005f20, "bk_window_170x170_a"},
{0x00005f29, "bk_window_hor_fema_a"},
{0x00005f38, "crate_boxguard_a"},
{0x00005f62, "det_police_door_sw_office_a"},
{0x00005f68, "enewspaper_a"},
{0x00005f76, "fx_det_fema_exterior_planar_smoke"},
{0x00005f80, "fx_layer_clouds_det_b"},
{0x00005f87, "fx_water_droplet_b"},
{0x00005fa8, "occupation_pakpistolwait"},
{0x00005fad, "occupation_pakriflewait"},
{0x00005fc8, "lw_cellphone_b"},
{0x00005fc9, "occupation_standguard"},
{0x00005fce, "occupation_standnervous"},
{0x00005fdb, "occupation_standsmoke"},
{0x00005fef, "ph_box_cardboard_b"},
{0x00005ffb, "ph_crate_plastic_large_h"},
{0x00006003, "ph_crate_plastic_small_g"},
{0x00006005, "sha_city_port_fencedoor"},
{0x0000600b, "sha_city_port_shed_sld_single_a"},
{0x0000600f, "thrown_gas_equip"},
{0x00006015, "thrown_gas_npc"},
{0x00006023, "fx_squib_gas_a"},
{0x0000602d, "deferredvolfog"},
{0x0000603e, "mine_gas_equip"},
{0x00006041, "thrownproj_gas_mine"},
{0x00006047, "fx_squib_gas_mine_a"},
{0x00006050, "mine_gas_world"},
{0x00006052, "tier1_male_stand_stand"},
{0x00006058, "truck_boxguard_a"},
{0x00006102, "det_fema_door_single_glass"},
{0x00006284, "alarm_panel_a"},
{0x00006290, "bk_window_custom_a"},
{0x0000629d, "det_fema_sw_standard_door_a"},
{0x000062a3, "fan_a_paddles"},
{0x000062a4, "fx_det_fema_interior_planar_smoke"},
{0x000062ad, "generic_security_door_sl_single_a"},
{0x000062b8, "ph_barrel_explosive_a"},
{0x000062d8, "ph_box_cardboard_large_a"},
{0x000062de, "ph_crate_wood_verysmall"},
{0x000062ea, "elevator_fema_bossroom"},
{0x000064b0, "civilian_geraldcampbell"},
{0x000064b1, "civilian_roddydegrave"},
{0x000064b2, "deskcop_black_a"},
{0x000064b3, "deskcop_black_b"},
{0x000064b4, "deskcop_white_a"},
{0x000064b5, "deskcop_white_b"},
{0x000064b6, "deskcop_officergum"},
{0x000064b7, "deskcop_waynehaas"},
{0x000064b8, "det1_police1stfloor_deskcop_detpolice_b"},
{0x000064b9, "det1_police1stfloor_deskcop_detpolice_c"},
{0x000064ba, "det1_police1stfloor_deskcop_detpolice_d"},
{0x000064bb, "det1_police1stfloor_deskcop_detpolice_e"},
{0x000064bc, "det1_police1stfloor_deskcop_detpolice_f"},
{0x000064bd, "det1_police1stfloor_deskcop_detpolice_h"},
{0x000064be, "det1_police1stfloor_deskcop_waynehaas"},
{0x000064bf, "det1_police2ndfloor_deskcop_detpolice_a"},
{0x000064c0, "det1_police2ndfloor_deskcop_detpolice_b"},
{0x000064c1, "det1_police2ndfloor_deskcop_detpolice_c"},
{0x000064c2, "det1_police3rdfloor_deskcop_detpolice_a"},
{0x000064c3, "det1_police3rdfloor_deskcop_detpolice_b"},
{0x000064c4, "det1_police3rdfloor_deskcop_detpolice_d"},
{0x000064c5, "det1_police3rdfloor_deskcop_detpolice_e"},
{0x000064c6, "det1_police3rdfloor_civilian_roddydegrave"},
{0x000064c7, "det1_police3rdfloor_deskcop_officergum"},
{0x000064c8, "det1_policebasement_deskcop_detpolice_a"},
{0x000064c9, "det1_policebasement_deskcop_detpolice_d"},
{0x000064ca, "det1_policebasement_corpse_unknownhacker"},
{0x000064cb, "det1_policebasement_civilian_geraldcampbell"},
{0x000064cc, "det_police_door_sl_front_a"},
{0x000064cd, "det_police_door_sl_morgue_a"},
{0x000064ce, "det_police_door_sw_office_b"},
{0x000064cf, "laserbeam_flickering"},
{0x000066d7, "anchor_bench"},
{0x000066dd, "anchor_chair"},
{0x000066e3, "anchor_chair_left"},
{0x000066e8, "anchor_handrail"},
{0x000066ed, "anchor_lean"},
{0x000066f2, "anchor_stand"},
{0x00006717, "bk_window_130x290_a"},
{0x0000671e, "bk_window_130x480_a"},
{0x000067c6, "con_002_haas"},
{0x00006853, "lw_pen_a"},
{0x00006859, "det1_police1stfloor_civilian_female_officeworker_a"},
{0x0000685d, "det1_police1stfloor_civilian_female_prostitute_a"},
{0x00006864, "det1_police1stfloor_civilian_male_civilian_a"},
{0x00006869, "det1_police1stfloor_civilian_male_civilian_b"},
{0x0000686f, "det1_police1stfloor_civilian_male_officeworker_a"},
{0x0000687a, "det1_police1stfloor_civilian_male_punk_a"},
{0x000068aa, "det1_police1stfloor_deskcop_detpolice_g"},
{0x000068d1, "riotcop_black_b"},
{0x000068d2, "det1_police1stfloor_riotcop_detpolice_a"},
{0x000068d9, "det1_police1stfloor_streetcop_detpolice_a"},
{0x000068dd, "det1_police1stfloor_streetcop_detpolice_b"},
{0x00006900, "det1_police3rdfloor_deskcop_detpolice_c"},
{0x0000690c, "det1_police3rdfloor_deskcop_detpolice_f"},
{0x0000691c, "det1_police3rdfloor_streetcop_detpolice_a"},
{0x00006921, "det1_police3rdfloor_streetcop_detpolice_b"},
{0x00006929, "det1_policebasement_civilian_female_prostitute_a"},
{0x00006933, "det1_policebasement_civilian_female_prostitute_b"},
{0x0000693e, "det1_policebasement_civilian_female_prostitute_c"},
{0x00006970, "det1_policebasement_civilian_male_hobo_a"},
{0x00006976, "det1_policebasement_civilian_male_hobo_b"},
{0x0000698f, "det1_policebasement_deskcop_detpolice_b"},
{0x00006993, "det1_policebasement_deskcop_detpolice_c"},
{0x000069a2, "det_police_door_sl_elevator_a"},
{0x000069b6, "det_police_door_sw_armory_a"},
{0x000069c7, "det_police_door_sw_office_c"},
{0x000069cc, "det_police_door_sw_restroom_men_a"},
{0x000069d2, "det_police_door_sw_restroom_women_a"},
{0x000069d8, "det_police_pillscontainer"},
{0x000069e5, "elevator_det_policestation_a"},
{0x000069ec, "mine_template_world"},
{0x000069f5, "occupation_benchsleep"},
{0x00006a04, "occupation_chaircleangun"},
{0x00006a12, "occupation_chairworkatdesk"},
{0x00006a23, "lw_notepad_a"},
{0x00006a24, "occupation_chairwriteatdesk"},
{0x00006a2c, "occupation_leanfronttohandrail"},
{0x00006a3e, "occupation_leanlookaround"},
{0x00006a4f, "occupation_riflebenchsleep"},
{0x00006a54, "occupation_rifleleanhandheld"},
{0x00006a5d, "occupation_rifleleanwait"},
{0x00006a65, "occupation_standnotepad"},
{0x00006a70, "occupation_standpissurinal"},
{0x00006a75, "occupation_standpoundtable"},
{0x00006a7d, "occupation_standreadingibook"},
{0x00006a8d, "ph_barrel_plastic_a"},
{0x00006a99, "ph_photocopier_a"},
{0x00006a9b, "television_large"},
{0x00006aa1, "television_medium"},
{0x00006aa7, "tier1_forced_warnings"},
{0x00006aad, "tier1_male_stand_stand_far"},
{0x00006ae6, "weapon_peps_equip"},
{0x00006b4c, "det_sam_sky_a"},
{0x00006b82, "civilian_josiethorpe"},
{0x00006b83, "lieutenant_zekesanders"},
{0x00006b84, "det1_samadministration_streetcop_swat_a"},
{0x00006b85, "det1_samadministration_streetcop_swat_b"},
{0x00006b86, "det1_samadministration_civilian_josiethorpe"},
{0x00006b87, "det1_samadministration_lieutenant_zekesanders"},
{0x00006b88, "det_sam_door_sw_exterior_a"},
{0x00006c31, "fx_det_sam_bridge_explosion"},
{0x00006c32, "fx_det_sam_bullet_impact"},
{0x00006c33, "fx_det_sam_planar_smoke_a"},
{0x00006c34, "det_sam_door_sw_office_a"},
{0x00006e35, "anchor_cleardoorleft_a"},
{0x00006e3a, "anchor_cleardoorright_a"},
{0x00006e53, "det_sam_door_sw_dbl_office_a"},
{0x00006e60, "fx_blood_impact_headshot"},
{0x00006e74, "fx_det_sam_fireline_windy_4m_a"},
{0x00006e88, "fx_fireline_1m"},
{0x00006e8e, "fx_fireline_50cm"},
{0x00006e96, "fx_flying_embers_long"},
{0x00006ea2, "fx_muzzle_singleshot_mpistol"},
{0x00006ec8, "ph_trashcan_kcafeteria_c"},
{0x00006f58, "lieutenant_white_b"},
{0x00006f59, "striker_black_b"},
{0x00006f5a, "det1_samassembly_civilian_female_hostage_a"},
{0x00006f5b, "det1_samassembly_civilian_female_hostage_b"},
{0x00006f5c, "det1_samassembly_civilian_female_hostage_c"},
{0x00006f5d, "det1_samassembly_civiliant_male_generic_a"},
{0x00006f5e, "det1_samassembly_civiliant_male_generic_b"},
{0x00006f5f, "det1_samassembly_civiliant_male_generic_d"},
{0x00006f60, "det1_samassembly_civiliant_male_generic_e"},
{0x00006f61, "det1_samassembly_lieutenant_purityfirst_a"},
{0x00006f62, "det1_samassembly_lowlife_purityfirst_e"},
{0x00006f63, "det1_samassembly_lowlife_purityfirst_f"},
{0x00006f64, "det1_samassembly_lowlife_purityfirst_g"},
{0x00006f65, "det1_samassembly_striker_purityfirst_b"},
{0x00006f67, "tutorialvolume"},
{0x00006f68, "gas_bomb_a"},
{0x00006f69, "det_sam_door_sl_dbl_restricted_a"},
{0x00007105, "ao_det_sam_sas_a"},
{0x0000712b, "bk_screen_sam_assembly_b"},
{0x0000713f, "bk_window_sam_assembly_a"},
{0x00007148, "det_sam_door_sl_dbl_sas_a"},
{0x0000728c, "civilian_davidsarif"},
{0x0000728d, "det1_samextwarehouse_lowlife_purityfirst_k"},
{0x0000728e, "det1_samextwarehouse_lowlife_purityfirst_l"},
{0x0000728f, "det1_samextwarehouse_lowlife_purityfirst_m"},
{0x00007290, "det1_samextwarehouse_streetcop_swat_a"},
{0x00007291, "det1_samextwarehouse_streetcop_swat_b"},
{0x00007292, "det1_samextwarehouse_streetcop_swat_c"},
{0x00007293, "det1_samextwarehouse_streetcop_swat_d"},
{0x00007294, "det1_samextwarehouse_streetcop_swat_e"},
{0x00007295, "sarifhq_lobbypart1_civilian_davidsarif"},
{0x00007297, "choppertakeoffhelper"},
{0x00007298, "ao_sam_light_passing_a"},
{0x0000748d, "bk_window_sam_warehouse_a"},
{0x00007496, "det1_samassembly_corpse__lowlife_purityfirst_a"},
{0x000074b0, "det_sam_door_sw_exterior_b"},
{0x000074ba, "fx_fire_vtwo"},
{0x000074c0, "fx_fireline_windy_4m"},
{0x00007503, "sch_desk_sam_office_drawer_a"},
{0x00007509, "sha_tym_lower_door_sw_electric_a"},
{0x0000750f, "thrown_remote_detonated_equip"},
{0x00007517, "thrownproj_remote_detonated"},
{0x0000751f, "tier1_sam_cp01a"},
{0x0000753c, "weapon_silencedsniperrifle_equip"},
{0x0000759a, "det_sam_assembly_ele"},
{0x0000759b, "det_sam_restricted_ele"},
{0x00007628, "det_sam_door_sl_dbl_elevator_a"},
{0x00007639, "occupation_standaccesscomputer"},
{0x00007641, "so_det_blood_splatter_mole_a"},
{0x00007752, "det_pillars_piedestal_a"},
{0x00007b02, "breakable_roadblock_b"},
{0x00007b10, "chair_sarif_a"},
{0x00007b27, "det_sarif_helipad_a"},
{0x00007b2f, "det_sarif_industries_atrium_door_sw_dbl_a"},
{0x00007b30, "fx_squib_door_glass"},
{0x00007b3b, "det_sarif_industries_bathroomdoor_sw_a"},
{0x00007b45, "det_sarif_industries_lab_door_sw_dbl_a"},
{0x00007b4e, "flare_street_streak_a"},
{0x00007b51, "fx_blinking_light_blue"},
{0x00007b57, "fx_blinking_light_red"},
{0x00007b5d, "fx_blinking_light_white"},
{0x00007b64, "fx_fireplace_fire"},
{0x00007b7b, "fx_sarif_hq_planar_smoke_a"},
{0x00007b85, "monitor_flat_contemporary_a"},
{0x00007b9e, "det_shq_sky_a"},
{0x00007d00, "civilian_athenemargoulis"},
{0x00007d01, "civilian_meganreed"},
{0x00007d02, "civilian_niacolvin"},
{0x00007d03, "male_asian_a"},
{0x00007d04, "tutorialsoldier_black_a"},
{0x00007d05, "tutorialsoldier_black_b"},
{0x00007d06, "tutorialsoldier_white_a"},
{0x00007d07, "tutorialsoldier_white_b"},
{0x00007d08, "sce_00_shq_0_civilian_athenemargoulis"},
{0x00007d09, "sce_00_shq_0_civilian_meganreed"},
{0x00007d0a, "sce_00_shq_0_civilian_niacolvin"},
{0x00007d0b, "sce_01_shq0_6_se12_civilian_male_scientist_c"},
{0x00007d0c, "sce_01_shq0_6_se12_corpse_male_scientist_a"},
{0x00007d0d, "sce_01_shq0_6_se12_corpse_male_scientist_c"},
{0x00007d0e, "sce_01_shq0_9_se05_namir"},
{0x00007d0f, "cinematic_adamjensen_notaugmented"},
{0x00007d12, "sarifhq_labtutorial_soldier_belltower_a"},
{0x00007d13, "sarifhq_labtutorial_soldier_belltower_b"},
{0x00007d14, "sarifhq_labtutorial_soldier_belltower_c"},
{0x00007d15, "sarifhq_labtutorial_soldier_belltower_d"},
{0x00007d16, "sarifhq_labtutorial_soldier_belltower_e"},
{0x00007d17, "sarifhq_labtutorial_soldier_belltower_g"},
{0x00007d18, "sarifhq_labtutorial_soldier_belltower_h"},
{0x00007d19, "sarifhq_labtutorial_soldier_belltower_i"},
{0x00007d1a, "sarifhq_labtutorial_soldier_belltower_j"},
{0x00007d1b, "sarifhq_labtutorial_corpse_female_scientist_a"},
{0x00007d1c, "sarifhq_labtutorial_corpse_female_scientist_e"},
{0x00007d1d, "sarifhq_labtutorial_corpse_male_scientist_b"},
{0x00007d1e, "baseconversation_overheard"},
{0x00007d1f, "det_shq_tutorial_gate_a"},
{0x00007d20, "det_sarif_industries_lab_door_sl_dbl_a"},
{0x00007d21, "det_sarif_industries_lab_door_sl_dbl_b"},
{0x00007d22, "det_sarif_industries_lab_door_sw_dbl_exploding_a"},
{0x00007d23, "det_sarifoffice_elevator_extdoor_a"},
{0x00007d24, "elevator_det_sarifoffice"},
{0x00007d25, "so_sarifhq_npclabwall_custom_a"},
{0x00007d26, "det_sarif_graysanatomy"},
{0x00007d27, "det_sarif_matchboxcar"},
{0x00007d28, "det_sarif_youngermeganphoto"},
{0x00007d2a, "restore_shq_explodingdoor"},
{0x00008158, "deferred_fog_coronas"},
{0x0000816f, "det_sarif_industries_lab_door_single_sl_a"},
{0x000081b8, "elevator_det_sarifoffice_a"},
{0x000081be, "fx_barrettintro_explo"},
{0x000081c3, "fx_bloodpool"},
{0x000081c7, "fx_claymore_test_hq"},
{0x000081cc, "fx_electric_explo"},
{0x000081d1, "fx_fixed_bloodsplat"},
{0x000081d6, "fx_fixed_bloodsplat_3min"},
{0x000081dc, "fx_flying_ambers"},
{0x000081e1, "fx_impact_metal_singleshot"},
{0x000081e5, "fx_lite_fume"},
{0x000081ff, "fx_sparks_multiplebursts"},
{0x00008204, "fx_sparks_single"},
{0x00008211, "occupation_chairmicroscope"},
{0x0000821e, "lw_ram_battering_swat_a"},
{0x00008221, "occupation_chairreceptionistsarif"},
{0x00008228, "occupation_docsearch_1h"},
{0x0000822f, "occupation_docsearch_2h"},
{0x00008235, "occupation_groundunconscious"},
{0x0000823a, "occupation_sarifidle"},
{0x00008240, "occupation_scientisthitglass"},
{0x0000825d, "lw_brush_janitor_a"},
{0x00008261, "occupation_standexamineprototype"},
{0x0000826d, "lw_augmentation_part_small_c"},
{0x0000826e, "occupation_standrunthreadmill"},
{0x00008278, "ph_container_tube_a"},
{0x0000827f, "ph_gas_canister_a"},
{0x00008286, "fx_squib_gas_canister_a"},
{0x00008293, "restore_sce_01_shq_barrett_intro"},
{0x00008298, "sarifhq_labtutorial_civilian_davidsarif"},
{0x000082aa, "sarifhq_labtutorial_corpse_female_scientist_b"},
{0x000082b4, "sarifhq_labtutorial_corpse_female_scientist_c"},
{0x000082bb, "sarifhq_labtutorial_corpse_female_scientist_d"},
{0x000082c6, "sarifhq_labtutorial_corpse_female_scientist_f"},
{0x000082cc, "sarifhq_labtutorial_corpse_female_scientist_g"},
{0x000082d6, "sarifhq_labtutorial_corpse_female_scientist_h"},
{0x000082dc, "sarifhq_labtutorial_corpse_female_scientist_i"},
{0x000082e2, "sarifhq_labtutorial_corpse_female_scientist_j"},
{0x000082e6, "sarifhq_labtutorial_corpse_female_scientist_k"},
{0x000082f0, "sarifhq_labtutorial_corpse_male_scientist_a"},
{0x000082fa, "sarifhq_labtutorial_corpse_male_scientist_c"},
{0x00008303, "sarifhq_labtutorial_corpse_male_scientist_d"},
{0x00008309, "sarifhq_labtutorial_corpse_male_scientist_e"},
{0x0000830e, "sarifhq_labtutorial_corpse_male_scientist_f"},
{0x00008739, "sarifhq_vent_trap_a"},
{0x0000874e, "sce_00_shq_0_civilian_01_male_officeworker"},
{0x00008752, "sce_00_shq_0_civilian_02_male_scientist"},
{0x00008758, "sce_00_shq_0_civilian_03_male_officeworker"},
{0x0000875d, "sce_00_shq_0_civilian_04_female_scientist"},
{0x00008761, "sce_00_shq_0_civilian_05_female_scientist"},
{0x00008765, "female_asian_a"},
{0x00008766, "sce_00_shq_0_civilian_06_female_scientist"},
{0x00008825, "sce_00_shq_0_civilian_07_male_scientist"},
{0x00008829, "sce_00_shq_0_civilian_08_female_officeworker"},
{0x0000882d, "sce_00_shq_0_civilian_09_male_scientist"},
{0x00008831, "sce_00_shq_0_civilian_10_male_scientist"},
{0x00008837, "sce_00_shq_0_civilian_11_male_scientist"},
{0x0000883d, "sce_00_shq_0_civilian_12_male_scientist"},
{0x0000890d, "sce_00_shq_0_civilian_13_male_officeworker"},
{0x00008916, "sce_00_shq_0_civilian_14_female_officeworker"},
{0x0000891c, "sce_00_shq_0_civilian_15_female_officeworker"},
{0x00008926, "sce_00_shq_0_civilian_16_male_bluecolar"},
{0x0000892b, "sce_00_shq_0_civilian_17_male_scientist"},
{0x0000892f, "sce_00_shq_0_civilian_18_female_scientist"},
{0x00008934, "sce_00_shq_0_civilian_20_male_scientist"},
{0x00008938, "sce_00_shq_0_civilian_21_male_scientist"},
{0x00008942, "sce_00_shq_0_civilian_22_male_patient"},
{0x00008946, "sce_00_shq_0_civilian_23_male_scientist"},
{0x00008950, "sce_00_shq_0_civilian_24_male_scientist"},
{0x00008954, "sce_00_shq_0_civilian_25_male_scientist"},
{0x0000895a, "sce_00_shq_0_civilian_26_male_officeworker"},
{0x0000895e, "sce_00_shq_0_civilian_27_male_scientist"},
{0x00008965, "sce_00_shq_0_civilian_28_male_bluecolar"},
{0x0000896b, "sce_00_shq_0_civilian_29_male_officeworker"},
{0x00008971, "sce_00_shq_0_civilian_30_male_officeworker"},
{0x00008976, "sce_00_shq_0_civilian_32_male_officeworker"},
{0x0000897b, "sce_00_shq_0_civilian_33_male_officeworker"},
{0x00008980, "sce_00_shq_0_civilian_35_female_scientist"},
{0x00008985, "sce_00_shq_0_civilian_a01_male_scientist"},
{0x0000898a, "sce_00_shq_0_civilian_a02_male_scientist"},
{0x0000898f, "sce_00_shq_0_civilian_a04_male_officeworker"},
{0x00008993, "sce_00_shq_0_civilian_a05_male_scientist"},
{0x00008997, "sce_00_shq_0_civilian_a06_male_officeworker"},
{0x0000899b, "sce_00_shq_0_civilian_a07_male_officeworker"},
{0x0000899f, "sce_00_shq_0_civilian_a08_female_officeworker"},
{0x000089dc, "civilian_declanfaherty"},
{0x000089e6, "sce_00_shq_0_civilian_declanfaherty"},
{0x00008a07, "civilian_erickoss"},
{0x00008a11, "sce_00_shq_0_civilian_erickoss"},
{0x00008a2e, "civilian_generalshep"},
{0x00008a35, "sce_00_shq_0_civilian_generalshep"},
{0x00008a3e, "civilian_lylerogers"},
{0x00008a42, "sce_00_shq_0_civilian_lylerogers"},