-
Notifications
You must be signed in to change notification settings - Fork 199
Expand file tree
/
Copy pathpeds_list.lua
More file actions
2008 lines (1998 loc) · 86.7 KB
/
Copy pathpeds_list.lua
File metadata and controls
2008 lines (1998 loc) · 86.7 KB
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
-- {ped_hex_hash, ped_hashname, maximum of outfits}
-- Every outfit is not only clothes. Sometimes it is body and head too. It results in completely different ped. To change outfit use this native:
-- Citizen.InvokeNative(0x77FF8D35EEC6BBC4,PlayerPedId(),outfit_num,0)
-- Outfit_num begin from 0. For example, for "a_m_m_sdobesemen_01" maximum of outfits is 3 (0, 1 and 2 outfit_nums accordingly).
local peds_list = {
{0xF5C1611E,"mp_male",138,},
{0xA7AF20C0,"mp_female",120,},
{0x8F361781,"a_c_alligator_01",4,},
{0xA0B33A7B,"a_c_alligator_02",1,},
{0xB2C4DE9E,"a_c_alligator_03",3,},
{0x94DA69A0,"a_c_armadillo_01",1,},
{0xBA41697E,"a_c_badger_01",3,},
{0x28308168,"a_c_bat_01",3,},
{0x2B845466,"a_c_bearblack_01",4,},
{0xBCFD0E7F,"a_c_bear_01",11,},
{0x2D4B3F63,"a_c_beaver_01",4,},
{0xA27F49A3,"a_c_bighornram_01",19,},
{0x5E5A761C,"a_c_bluejay_01",2,},
{0xDE99DA6D,"a_c_boarlegendary_01",1,},
{0x78EBDA79,"a_c_boar_01",4,},
{0x8AF5C2A8,"a_c_buck_01",6,},
{0x5CC5E869,"a_c_buffalo_01",16,},
{0x15E9B494,"a_c_buffalo_tatanka_01",1,},
{0x0BAA25A3,"a_c_bull_01",4,},
{0x47E1D597,"a_c_californiacondor_01",3,},
{0x6A640A7B,"a_c_cardinal_01",3,},
{0x681E834B,"a_c_carolinaparakeet_01",1,},
{0x573201B8,"a_c_cat_01",3,},
{0xEE893817,"a_c_cedarwaxwing_01",3,},
{0x8506531D,"a_c_chicken_01",3,},
{0xA39125DC,"a_c_chipmunk_01",1,},
{0x846E8AF0,"a_c_cormorant_01",2,},
{0x056154F7,"a_c_cougar_01",6,},
{0xFCFA9E1E,"a_c_cow",22,},
{0x1CA6B883,"a_c_coyote_01",7,},
{0x868D0356,"a_c_crab_01",3,},
{0xDE608788,"a_c_cranewhooping_01",2,},
{0x96E9E689,"a_c_crawfish_01",3,},
{0x05DF8F2C,"a_c_crow_01",1,},
{0x423417A7,"a_c_deer_01",6,},
{0x40E01848,"a_c_dogamericanfoxhound_01",5,},
{0xAE6C236C,"a_c_dogaustraliansheperd_01",3,},
{0x2552B009,"a_c_dogbluetickcoonhound_01",8,},
{0xC25FE171,"a_c_dogcatahoulacur_01",7,},
{0xE8C446CB,"a_c_dogchesbayretriever_01",3,},
{0x40D2BCBC,"a_c_dogcollie_01",3,},
{0xC5C5D255,"a_c_doghobo_01",1,},
{0x801131EF,"a_c_doghound_01",8,},
{0x62F7C1B3,"a_c_doghusky_01",3,},
{0xAD779EB4,"a_c_doglab_01",7,},
{0xCA89FC80,"a_c_doglion_01",2,},
{0x40CAC0E7,"a_c_dogpoodle_01",3,},
{0x5EDF32B4,"a_c_dogrufus_01",1,},
{0x3B313FCE,"a_c_dogstreet_01",3,},
{0x387E129A,"re_lostdog_dogs_01",4,},
{0x69A37A7B,"a_c_donkey_01",8,},
{0xC42E08CB,"a_c_duck_01",3,},
{0x57027587,"a_c_eagle_01",4,},
{0x31952A0B,"a_c_egret_01",3,},
{0x87895317,"a_c_elk_01",8,},
{0x6F4C2A6C,"a_c_fishbluegil_01_ms",2,},
{0x81D4FAB9,"a_c_fishbluegil_01_sm",2,},
{0x29F1CB9D,"a_c_fishbullheadcat_01_ms",2,},
{0x5905A300,"a_c_fishbullheadcat_01_sm",2,},
{0xB97D1BFD,"a_c_fishchainpickerel_01_ms",2,},
{0x0FBEB3FF,"a_c_fishchainpickerel_01_sm",2,},
{0x5BAEE06E,"a_c_fishchannelcatfish_01_lg",3,},
{0x876CAA75,"a_c_fishchannelcatfish_01_xl",2,},
{0xEE111F34,"a_c_fishlakesturgeon_01_lg",4,},
{0x1BA2A2E8,"a_c_fishlargemouthbass_01_lg",2,},
{0x0750FD65,"a_c_fishlargemouthbass_01_ms",2,},
{0xD5931B3F,"a_c_fishlongnosegar_01_lg",6,},
{0xA3660A8D,"a_c_fishmuskie_01_lg",5,},
{0x298C8600,"a_c_fishnorthernpike_01_lg",7,},
{0xE50B98F0,"a_c_fishperch_01_ms",2,},
{0x2A1C1C20,"a_c_fishperch_01_sm",1,},
{0x080814B2,"a_c_fishrainbowtrout_01_lg",2,},
{0x1D373E24,"a_c_fishrainbowtrout_01_ms",1,},
{0xF1813D52,"a_c_fishredfinpickerel_01_ms",2,},
{0x1E9790B6,"a_c_fishredfinpickerel_01_sm",2,},
{0x89E3C580,"a_c_fishrockbass_01_ms",2,},
{0x00173415,"a_c_fishrockbass_01_sm",4,},
{0x206B229A,"a_c_fishsalmonsockeye_01_lg",2,},
{0x657C2DBF,"a_c_fishsalmonsockeye_01_ml",1,},
{0x027C67C1,"a_c_fishsalmonsockeye_01_ms",2,},
{0x8FACF62D,"a_c_fishsmallmouthbass_01_lg",2,},
{0x6EE63594,"a_c_fishsmallmouthbass_01_ms",2,},
{0x0F0F6D94,"a_c_fox_01",7,},
{0xC884C578,"a_c_frogbull_01",2,},
{0x1B439EDF,"a_c_gilamonster_01",3,},
{0xD3105A6D,"a_c_goat_01",3,},
{0x2B1B02CA,"a_c_goosecanada_01",3,},
{0x80184D63,"a_c_hawk_01",3,},
{0x41462AB0,"a_c_heron_01",3,},
{0x23685521,"a_c_horsemulepainted_01",2,},
{0xB6A7CE35,"a_c_horsemule_01",2,},
{0xEA523E18,"p_c_horse_01",1,},
{0x8AF8EE20,"a_c_horse_americanpaint_greyovero",1,},
{0xE52CB9B2,"a_c_horse_americanpaint_overo",4,},
{0x6ADB82FE,"a_c_horse_americanpaint_splashedwhite",1,},
{0x9BE270D3,"a_c_horse_americanpaint_tobiano",3,},
{0xB57D0193,"a_c_horse_americanstandardbred_black",1,},
{0xED07737A,"a_c_horse_americanstandardbred_buckskin",2,},
{0x703EBD85,"a_c_horse_americanstandardbred_lightbuckskin",5,},
{0x0348B323,"a_c_horse_americanstandardbred_palominodapple",2,},
{0xE4AD6760,"a_c_horse_americanstandardbred_silvertailbuckskin",1,},
{0xE57FC660,"a_c_horse_andalusian_darkbay",1,},
{0x2A100154,"a_c_horse_andalusian_perlino",1,},
{0x2C80A080,"a_c_horse_andalusian_rosegray",3,},
{0xC2B8CE6B,"a_c_horse_appaloosa_blacksnowflake",2,},
{0x7EF6A7DC,"a_c_horse_appaloosa_blanket",1,},
{0xC2A67972,"a_c_horse_appaloosa_brownleopard",1,},
{0x2405C422,"a_c_horse_appaloosa_fewspotted_pc",2,},
{0xBC030D85,"a_c_horse_appaloosa_leopard",1,},
{0xA353367A,"a_c_horse_appaloosa_leopardblanket",2,},
{0x88D6A59E,"a_c_horse_arabian_black",1,},
{0x05052866,"a_c_horse_arabian_grey",1,},
{0x5933FD24,"a_c_horse_arabian_redchestnut",1,},
{0xA52D4FC0,"a_c_horse_arabian_redchestnut_pc",1,},
{0xE7F3880C,"a_c_horse_arabian_rosegreybay",1,},
{0x5DFCD1F9,"a_c_horse_arabian_warpedbrindle_pc",1,},
{0xC8DA3400,"a_c_horse_arabian_white",4,},
{0xA3C3F4C6,"a_c_horse_ardennes_bayroan",1,},
{0x8739A629,"a_c_horse_ardennes_irongreyroan",1,},
{0xDA23037A,"a_c_horse_ardennes_strawberryroan",1,},
{0xDD04A33F,"a_c_horse_belgian_blondchestnut",1,},
{0x37DD4055,"a_c_horse_belgian_mealychestnut",1,},
{0xDB18CA2B,"a_c_horse_breton_grullodun",1,},
{0xAA19E1E1,"a_c_horse_breton_mealydapplebay",1,},
{0xD74136AD,"a_c_horse_breton_redroan",1,},
{0x5C0D2B7A,"a_c_horse_breton_sealbrown",1,},
{0x1417E305,"a_c_horse_breton_sorrel",1,},
{0x999E5DCF,"a_c_horse_breton_steelgrey",1,},
{0x20C6D093,"a_c_horse_buell_warvets",4,},
{0x99770A35,"a_c_horse_criollo_baybrindle",1,},
{0x2DACB4A3,"a_c_horse_criollo_bayframeovero",1,},
{0x6CCCC38E,"a_c_horse_criollo_blueroanovero",1,},
{0x43DB06BB,"a_c_horse_criollo_dun",1,},
{0x7FF9E2AE,"a_c_horse_criollo_marblesabino",1,},
{0x1E367ED2,"a_c_horse_criollo_sorrelovero",1,},
{0x28F9976A,"a_c_horse_dutchwarmblood_chocolateroan",1,},
{0x33598622,"a_c_horse_dutchwarmblood_sealbrown",1,},
{0x5EF3CBDA,"a_c_horse_dutchwarmblood_sootybuckskin",1,},
{0xAF2695EE,"a_c_horse_eagleflies",2,},
{0x970E1781,"a_c_horse_gang_bill",2,},
{0xDF55F5E6,"a_c_horse_gang_charles",4,},
{0x6B54E5D1,"a_c_horse_gang_charles_endlesssummer",2,},
{0xAD14C46D,"a_c_horse_gang_dutch",2,},
{0xD977CC20,"a_c_horse_gang_hosea",2,},
{0xB998E803,"a_c_horse_gang_javier",2,},
{0x9E19AA66,"a_c_horse_gang_john",2,},
{0xA762AEDD,"a_c_horse_gang_karen",2,},
{0x43F0DC62,"a_c_horse_gang_kieran",2,},
{0xC132BAD0,"a_c_horse_gang_lenny",2,},
{0xC7DE4819,"a_c_horse_gang_micah",2,},
{0xBF5D6994,"a_c_horse_gang_sadie",2,},
{0xDDAE9AEA,"a_c_horse_gang_sadie_endlesssummer",2,},
{0x9997DF40,"a_c_horse_gang_sean",2,},
{0x3A5BC787,"a_c_horse_gang_trelawney",2,},
{0x68F5058D,"a_c_horse_gang_uncle",2,},
{0x1165B6EB,"a_c_horse_gang_uncle_endlesssummer",2,},
{0xCF246898,"a_c_horse_hungarianhalfbred_darkdapplegrey",1,},
{0x65A30467,"a_c_horse_hungarianhalfbred_flaxenchestnut",1,},
{0x8EF089E3,"a_c_horse_hungarianhalfbred_liverchestnut",1,},
{0xFB55A30A,"a_c_horse_hungarianhalfbred_piebaldtobiano",2,},
{0x8504B2AA,"a_c_horse_john_endlesssummer",2,},
{0xF1430568,"a_c_horse_kentuckysaddle_black",1,},
{0xA5A0532E,"a_c_horse_kentuckysaddle_buttermilkbuckskin_pc",1,},
{0xB49928F8,"a_c_horse_kentuckysaddle_chestnutpinto",1,},
{0x78B24176,"a_c_horse_kentuckysaddle_grey",1,},
{0x651B47C7,"a_c_horse_kentuckysaddle_silverbay",1,},
{0x9FA968B5,"a_c_horse_kladruber_black",1,},
{0x8FDFD716,"a_c_horse_kladruber_cremello",1,},
{0xD96F40C6,"a_c_horse_kladruber_dapplerosegrey",1,},
{0xC7103AB0,"a_c_horse_kladruber_grey",1,},
{0x91F36592,"a_c_horse_kladruber_silver",1,},
{0xF867D7E4,"a_c_horse_kladruber_white",1,},
{0xB0004639,"a_c_horse_missourifoxtrotter_amberchampagne",1,},
{0xE6EE2A0B,"a_c_horse_missourifoxtrotter_sablechampagne",2,},
{0xBB31267C,"a_c_horse_missourifoxtrotter_silverdapplepinto",1,},
{0x790B9F4B,"a_c_horse_morgan_bay",1,},
{0x4955CBE3,"a_c_horse_morgan_bayroan",1,},
{0xC21AB789,"a_c_horse_morgan_flaxenchestnut",1,},
{0xC0A1CE3D,"a_c_horse_morgan_liverchestnut_pc",1,},
{0x05C70C99,"a_c_horse_morgan_palomino",1,},
{0x30331B80,"a_c_horse_mp_mangy_backup",7,},
{0x36AE742C,"a_c_horse_murfreebrood_mange_01",2,},
{0xC97A99C6,"a_c_horse_murfreebrood_mange_02",2,},
{0xDC4D3F6B,"a_c_horse_murfreebrood_mange_03",2,},
{0x1C8CC068,"a_c_horse_mustang_goldendun",2,},
{0xB9A41AA7,"a_c_horse_mustang_grullodun",1,},
{0x029CBA4A,"a_c_horse_mustang_tigerstripedbay",1,},
{0x7E4DF66E,"a_c_horse_mustang_wildbay",1,},
{0x7FE4BEC5,"a_c_horse_nokota_blueroan",2,},
{0x0660E640,"a_c_horse_nokota_reversedappleroan",1,},
{0xB4CA3CB2,"a_c_horse_nokota_whiteroan",2,},
{0x3F8A66B8,"a_c_horse_shire_darkbay",1,},
{0x0225752B,"a_c_horse_shire_lightgrey",1,},
{0x2FD9844A,"a_c_horse_shire_ravenblack",1,},
{0x9B099788,"a_c_horse_suffolkpunch_redchestnut",1,},
{0xA0A6C640,"a_c_horse_suffolkpunch_sorrel",1,},
{0x3FE5B95B,"a_c_horse_tennesseewalker_blackrabicano",1,},
{0x400B3937,"a_c_horse_tennesseewalker_chestnut",1,},
{0xFAE16B63,"a_c_horse_tennesseewalker_dapplebay",1,},
{0x9C978CB3,"a_c_horse_tennesseewalker_flaxenroan",1,},
{0x3E85EE41,"a_c_horse_tennesseewalker_goldpalomino_pc",1,},
{0x1A9FA880,"a_c_horse_tennesseewalker_mahoganybay",1,},
{0xD4A3E715,"a_c_horse_tennesseewalker_redroan",1,},
{0x7E67718B,"a_c_horse_thoroughbred_blackchestnut",1,},
{0x8D4BE5DE,"a_c_horse_thoroughbred_bloodbay",1,},
{0xE0A34BD3,"a_c_horse_thoroughbred_brindle",1,},
{0x6EF6C345,"a_c_horse_thoroughbred_dapplegrey",3,},
{0x35A71C98,"a_c_horse_thoroughbred_reversedappleblack",1,},
{0x4394FBA4,"a_c_horse_turkoman_darkbay",1,},
{0x6572D46D,"a_c_horse_turkoman_gold",1,},
{0xA06225BC,"a_c_horse_turkoman_silver",1,},
{0xF31B7859,"a_c_horse_winter02_01",2,},
{0xDCA6ADCB,"a_c_iguanadesert_01",3,},
{0x917D4CD7,"a_c_iguana_01",1,},
{0x6868D59D,"a_c_javelina_01",3,},
{0xC68B3C66,"a_c_lionmangy_01",2,},
{0x17099D5E,"a_c_loon_01",3,},
{0xBE871B28,"a_c_moose_01",7,},
{0xBC61ABDD,"a_c_muskrat_01",3,},
{0xB25884A5,"a_c_oriole_01",3,},
{0xCCA5E0B0,"a_c_owl_01",3,},
{0x21294FD8,"a_c_ox_01",2,},
{0x629DDF49,"a_c_panther_01",5,},
{0x94DD14B8,"a_c_parrot_01",3,},
{0x4B751E5C,"a_c_pelican_01",3,},
{0x546B65F9,"a_c_pheasant_01",3,},
{0x06A20728,"a_c_pigeon",3,},
{0x3C0BFE72,"a_c_pig_01",3,},
{0xABA8FB1F,"a_c_possum_01",3,},
{0x7BF5C03E,"a_c_prairiechicken_01",2,},
{0x68A4FCCD,"a_c_pronghorn_01",20,},
{0x7D7ED3F4,"a_c_quail_01",3,},
{0xDFB55C81,"a_c_rabbit_01",5,},
{0x56EF91BF,"a_c_raccoon_01",7,},
{0x3AFD2922,"a_c_rat_01",5,},
{0xDDB5012B,"a_c_raven_01",2,},
{0xE42EE8E8,"a_c_redfootedbooby_01",3,},
{0xB7D8866C,"a_c_robin_01",1,},
{0x789C821E,"a_c_rooster_01",3,},
{0xBFD5C7DF,"a_c_roseatespoonbill_01",3,},
{0xF62ADA90,"a_c_seagull_01",3,},
{0xCDE2619F,"a_c_sharkhammerhead_01",3,},
{0x06C3F072,"a_c_sharktiger",3,},
{0x02679F5C,"a_c_sheep_01",8,},
{0xB7C8F704,"a_c_skunk_01",4,},
{0x3276FDB9,"a_c_snakeblacktailrattle_01",2,},
{0x8587FD0F,"a_c_snakeblacktailrattle_pelt_01",2,},
{0x57456DF5,"a_c_snakeferdelance_01",3,},
{0x2C201567,"a_c_snakeferdelance_pelt_01",3,},
{0x97D56B7E,"a_c_snakeredboa10ft_01",1,},
{0x9547268E,"a_c_snakeredboa_01",3,},
{0x47B7B713,"a_c_snakeredboa_pelt_01",3,},
{0xF24F3CA3,"a_c_snakewater_01",3,},
{0xF887B8E8,"a_c_snakewater_pelt_01",3,},
{0x207D15FA,"a_c_snake_01",4,},
{0xA001C8EC,"a_c_snake_pelt_01",4,},
{0x8E1B9425,"a_c_songbird_01",2,},
{0xC2B75D41,"a_c_sparrow_01",3,},
{0x5758D069,"a_c_squirrel_01",6,},
{0x598F9219,"a_c_toad_01",5,},
{0x881F1C91,"a_c_turkeywild_01",3,},
{0xE438917C,"a_c_turkey_01",3,},
{0xF61A353F,"a_c_turkey_02",3,},
{0xA97D7D0C,"a_c_turtlesea_01",1,},
{0xE7B286BA,"a_c_turtlesnapping_01",3,},
{0x41D8593C,"a_c_vulture_01",4,},
{0xBBD91DDA,"A_C_Wolf",9,},
{0xCB391381,"a_c_wolf_medium",9,},
{0xCE924A27,"a_c_wolf_small",5,},
{0x1E6ABEAD,"a_c_woodpecker_01",1,},
{0x2B7AD8CD,"a_c_woodpecker_02",1,},
{0x1E16E0A3,"mcclellan_saddle_01",21,},
{0xD1F01E75,"charro_saddle_01",21,},
{0x17BAFCC7,"western_saddle_01",21,},
{0xE5871860,"western_saddle_02",21,},
{0x67429BD9,"western_saddle_03",21,},
{0x6D0EA771,"western_saddle_04",21,},
{0xEB7B4F4B,"motherhubbard_saddle_01",21,},
{0x0926B79B,"amsp_robsdgunsmith_males_01",5,},
{0x3D27C285,"am_valentinedoctors_females_01",1,},
{0x53367A8A,"a_f_m_armcholeracorpse_01",40,},
{0x9854FB06,"a_f_m_armtownfolk_01",34,},
{0x2ECE27FA,"a_f_m_armtownfolk_02",24,},
{0x6A01E5AF,"a_f_m_asbtownfolk_01",35,},
{0x9EF80CC3,"a_f_m_bivfancytravellers_01",40,},
{0x68D9612B,"a_f_m_blwtownfolk_01",40,},
{0x5EAF4CD7,"a_f_m_blwtownfolk_02",40,},
{0x559F1795,"a_f_m_blwupperclass_01",50,},
{0x156B2B5B,"a_f_m_btchillbilly_01",17,},
{0x18FE1EB6,"a_f_m_btcobesewomen_01",1,},
{0xE6CA7A74,"a_f_m_bynfancytravellers_01",30,},
{0x41FCD560,"a_f_m_familytravelers_cool_01",20,},
{0x02FF9BBF,"a_f_m_familytravelers_warm_01",20,},
{0xDC9B1FAF,"a_f_m_gamhighsociety_01",39,},
{0xF4D38A44,"a_f_m_grifancytravellers_01",40,},
{0x7991217C,"a_f_m_guatownfolk_01",25,},
{0xC53BAC3B,"a_f_m_htlfancytravellers_01",40,},
{0xFC3C9932,"a_f_m_lagtownfolk_01",12,},
{0x98A1C808,"a_f_m_lowersdtownfolk_01",42,},
{0x88BB283B,"a_f_m_lowersdtownfolk_02",40,},
{0x777905B7,"a_f_m_lowersdtownfolk_03",42,},
{0xBF41104A,"a_f_m_lowertrainpassengers_01",25,},
{0x26F2C9A7,"a_f_m_middlesdtownfolk_01",45,},
{0x37556A6C,"a_f_m_middlesdtownfolk_02",30,},
{0xC29280E8,"a_f_m_middlesdtownfolk_03",20,},
{0xFBA4F677,"a_f_m_middletrainpassengers_01",25,},
{0xADABE58C,"a_f_m_nbxslums_01",42,},
{0xC20A03C0,"a_f_m_nbxupperclass_01",45,},
{0x0E5BDB04,"a_f_m_nbxwhore_01",25,},
{0x768C0686,"a_f_m_rhdprostitute_01",35,},
{0x2029479B,"a_f_m_rhdtownfolk_01",23,},
{0x7108E959,"a_f_m_rhdtownfolk_02",22,},
{0x7EC886E0,"a_f_m_rhdupperclass_01",50,},
{0xADA8C252,"a_f_m_rkrfancytravellers_01",40,},
{0xC53D076D,"a_f_m_roughtravellers_01",30,},
{0x697CE9F6,"a_f_m_sclfancytravellers_01",21,},
{0xF9EABA1F,"a_f_m_sdchinatown_01",20,},
{0x6C844384,"a_f_m_sdfancywhore_01",20,},
{0x8DC3DD27,"a_f_m_sdobesewomen_01",1,},
{0x254A0D7B,"a_f_m_sdserversformal_01",10,},
{0x10B716A1,"a_f_m_sdslums_02",42,},
{0xF0CED965,"a_f_m_skpprisononline_01",8,},
{0xAD789542,"a_f_m_strtownfolk_01",20,},
{0x0C6E57DB,"a_f_m_tumtownfolk_01",22,},
{0xB545A97B,"a_f_m_tumtownfolk_02",22,},
{0xE533D2B4,"a_f_m_unicorpse_01",49,},
{0xC16B7BA8,"a_f_m_uppertrainpassengers_01",25,},
{0x8E301D96,"a_f_m_valprostitute_01",23,},
{0xF666E887,"a_f_m_valtownfolk_01",20,},
{0xB7A9EA0E,"a_f_m_vhtprostitute_01",11,},
{0x008F4AD5,"a_f_m_vhttownfolk_01",25,},
{0xF7E2135D,"a_f_m_waptownfolk_01",25,},
{0xD0A31078,"a_f_o_blwupperclass_01",45,},
{0x86B4227A,"a_f_o_btchillbilly_01",11,},
{0xA0600CFB,"a_f_o_guatownfolk_01",15,},
{0x17C91016,"a_f_o_lagtownfolk_01",12,},
{0x322B92BF,"a_f_o_sdchinatown_01",20,},
{0x4057BCEE,"a_f_o_sdupperclass_01",45,},
{0x837B740E,"a_f_o_waptownfolk_01",21,},
{0xD076C393,"a_m_m_armcholeracorpse_01",38,},
{0xB5771CFC,"a_m_m_armdeputyresident_01",56,},
{0xCF7E73BE,"a_m_m_armtownfolk_01",49,},
{0xC137D731,"a_m_m_armtownfolk_02",60,},
{0x37DAA98A,"a_m_m_asbboatcrew_01",30,},
{0x9C00E2A0,"a_m_m_asbdeputyresident_01",21,},
{0x68A1DDE7,"a_m_m_asbminer_01",61,},
{0x3E500944,"a_m_m_asbminer_02",42,},
{0x50ABADFB,"a_m_m_asbminer_03",81,},
{0x19E7406F,"a_m_m_asbminer_04",69,},
{0x0B54641C,"a_m_m_asbtownfolk_01",86,},
{0xA5E02A13,"a_m_m_asbtownfolk_01_laborer",70,},
{0x613A4B8E,"a_m_m_bivfancydrivers_01",10,},
{0x0D8C9D0B,"a_m_m_bivfancytravellers_01",21,},
{0x4ADABFBA,"a_m_m_bivroughtravellers_01",41,},
{0x9384F640,"a_m_m_bivworker_01",29,},
{0x5B91D27E,"a_m_m_blwforeman_01",35,},
{0xC509B26F,"a_m_m_blwlaborer_01",35,},
{0xDBC6DFE9,"a_m_m_blwlaborer_02",45,},
{0x41907533,"a_m_m_blwobesemen_01",3,},
{0xD10CE853,"a_m_m_blwtownfolk_01",77,},
{0x3CF00F0B,"a_m_m_blwupperclass_01",85,},
{0xE232B9EF,"a_m_m_btchillbilly_01",42,},
{0x002A0F51,"a_m_m_btcobesemen_01",1,},
{0x70B728D7,"a_m_m_bynfancydrivers_01",10,},
{0xECBDF082,"a_m_m_bynfancytravellers_01",20,},
{0x7D65D747,"a_m_m_bynroughtravellers_01",40,},
{0x3B777AC0,"a_m_m_bynsurvivalist_01",15,},
{0xC7458219,"a_m_m_cardgameplayers_01",84,},
{0x5A3ABACE,"a_m_m_chelonian_01",24,},
{0xDB5C4A62,"a_m_m_deliverytravelers_cool_01",20,},
{0xA56A4C3D,"a_m_m_deliverytravelers_warm_01",20,},
{0xD4B37D8A,"a_m_m_dominoesplayers_01",18,},
{0xE5CED83E,"a_m_m_emrfarmhand_01",20,},
{0x570B9957,"a_m_m_familytravelers_cool_01",20,},
{0xEF53FC1C,"a_m_m_familytravelers_warm_01",20,},
{0x584626EE,"a_m_m_farmtravelers_cool_01",20,},
{0x2F9417F1,"a_m_m_farmtravelers_warm_01",20,},
{0x18E143CA,"a_m_m_fivefingerfilletplayers_01",12,},
{0x0DB7B411,"a_m_m_foreman",10,},
{0x8DABAE42,"a_m_m_gamhighsociety_01",40,},
{0x542A035C,"a_m_m_grifancydrivers_01",10,},
{0x761D319E,"a_m_m_grifancytravellers_01",20,},
{0x97273585,"a_m_m_griroughtravellers_01",40,},
{0x9DDE71E1,"a_m_m_grisurvivalist_01",15,},
{0x0D4DB92F,"a_m_m_guatownfolk_01",27,},
{0xEEF71080,"a_m_m_htlfancydrivers_01",10,},
{0xB05F73A6,"a_m_m_htlfancytravellers_01",20,},
{0xA9DCFB5A,"a_m_m_htlroughtravellers_01",40,},
{0xB3410109,"a_m_m_htlsurvivalist_01",15,},
{0x5729EC23,"a_m_m_huntertravelers_cool_01",20,},
{0xD898CFD4,"a_m_m_huntertravelers_warm_01",21,},
{0x9233448C,"a_m_m_jamesonguard_01",56,},
{0xBD48CFD4,"a_m_m_lagtownfolk_01",12,},
{0xE40C9EB8,"a_m_m_lowersdtownfolk_01",91,},
{0x82AF5BFB,"a_m_m_lowersdtownfolk_02",91,},
{0x950C61AA,"a_m_m_lowertrainpassengers_01",25,},
{0x7F2FF3A2,"a_m_m_middlesdtownfolk_01",65,},
{0x6E8E525F,"a_m_m_middlesdtownfolk_02",51,},
{0x20C236C8,"a_m_m_middlesdtownfolk_03",51,},
{0xB56ED02B,"a_m_m_middletrainpassengers_01",25,},
{0xB14CEEEF,"a_m_m_moonshiners_01",10,},
{0xED78C02F,"a_m_m_nbxdockworkers_01",70,},
{0x9881BCFA,"a_m_m_nbxlaborers_01",70,},
{0x56A5800A,"a_m_m_nbxslums_01",85,},
{0x04B7D63B,"a_m_m_nbxupperclass_01",50,},
{0x6D027AB7,"a_m_m_nearoughtravellers_01",35,},
{0x2C9C69C2,"a_m_m_ranchertravelers_cool_01",20,},
{0xF7649D04,"a_m_m_ranchertravelers_warm_01",20,},
{0x54D8BE8E,"a_m_m_rancher_01",20,},
{0x0B5B9D98,"a_m_m_rhddeputyresident_01",23,},
{0x94EAA58F,"a_m_m_rhdforeman_01",30,},
{0x602993B2,"a_m_m_rhdobesemen_01",3,},
{0x3A489018,"a_m_m_rhdtownfolk_01",42,},
{0x009F6A48,"a_m_m_rhdtownfolk_01_laborer",10,},
{0x6833EBEE,"a_m_m_rhdtownfolk_02",35,},
{0xAFCAF759,"a_m_m_rhdupperclass_01",63,},
{0x921DA99E,"a_m_m_rkrfancydrivers_01",10,},
{0x76C805FE,"a_m_m_rkrfancytravellers_01",20,},
{0xAD581ACB,"a_m_m_rkrroughtravellers_01",40,},
{0x2FABD7A9,"a_m_m_rkrsurvivalist_01",15,},
{0xBCA4A7DC,"a_m_m_sclfancydrivers_01",10,},
{0x45B96600,"a_m_m_sclfancytravellers_01",20,},
{0xD93C654F,"a_m_m_sclroughtravellers_01",41,},
{0x26878D5C,"a_m_m_sdchinatown_01",21,},
{0x44BCB3C8,"a_m_m_sddockforeman_01",25,},
{0xA1875C33,"a_m_m_sddockworkers_02",70,},
{0xF20E6FFA,"a_m_m_sdfancytravellers_01",20,},
{0xD0EEF17B,"a_m_m_sdlaborers_02",70,},
{0x36E3135B,"a_m_m_sdobesemen_01",3,},
{0x885C429E,"a_m_m_sdroughtravellers_01",40,},
{0x8FC7F8DD,"a_m_m_sdserversformal_01",6,},
{0xAA5C3EA9,"a_m_m_sdslums_02",85,},
{0x16958B7D,"a_m_m_skpprisoner_01",20,},
{0x6D78A035,"a_m_m_skpprisonline_01",24,},
{0xDCA53CEE,"a_m_m_smhthug_01",24,},
{0xF0379DF1,"a_m_m_strdeputyresident_01",21,},
{0x2A19CF1B,"a_m_m_strfancytourist_01",5,},
{0x9E51CBEB,"a_m_m_strlaborer_01",18,},
{0x4335A6E5,"a_m_m_strtownfolk_01",26,},
{0x1C9C6388,"a_m_m_tumtownfolk_01",60,},
{0x39A29D9C,"a_m_m_tumtownfolk_02",60,},
{0xFE70D544,"a_m_m_uniboatcrew_01",20,},
{0x1CC906ED,"a_m_m_unicoachguards_01",20,},
{0x4C6C6086,"a_m_m_unicorpse_01",186,},
{0x39F19DB8,"a_m_m_unigunslinger_01",40,},
{0x752ADF85,"a_m_m_uppertrainpassengers_01",25,},
{0xF90FDED2,"a_m_m_valcriminals_01",10,},
{0x639CD8CD,"a_m_m_valdeputyresident_01",30,},
{0x1F52F239,"a_m_m_valfarmer_01",29,},
{0xDC64F897,"a_m_m_vallaborer_01",58,},
{0x838F50CE,"a_m_m_valtownfolk_01",36,},
{0x9550F451,"a_m_m_valtownfolk_02",44,},
{0xAA7C134D,"a_m_m_vhtboatcrew_01",30,},
{0xC703A880,"a_m_m_vhtthug_01",40,},
{0x36C66682,"a_m_m_vhttownfolk_01",86,},
{0x3183AABD,"a_m_m_wapwarriors_01",69,},
{0x57B730CA,"a_m_o_blwupperclass_01",80,},
{0xA9D376B5,"a_m_o_btchillbilly_01",29,},
{0x153790EE,"a_m_o_guatownfolk_01",15,},
{0xD02B6700,"a_m_o_lagtownfolk_01",12,},
{0x34EEA2A1,"a_m_o_sdchinatown_01",21,},
{0x8C74A816,"a_m_o_sdupperclass_01",50,},
{0x8C850F6C,"a_m_o_waptownfolk_01",26,},
{0x8E76B9B9,"a_m_y_asbminer_01",60,},
{0x5C0454CD,"a_m_y_asbminer_02",42,},
{0x14FD46C4,"a_m_y_asbminer_03",81,},
{0x30407D4A,"a_m_y_asbminer_04",69,},
{0x0FC40064,"a_m_y_nbxstreetkids_01",8,},
{0xACA57303,"a_m_y_nbxstreetkids_slums_01",20,},
{0xCA57B2C4,"a_m_y_sdstreetkids_slums_02",8,},
{0x75CC2B66,"a_m_y_unicorpse_01",2,},
{0x6B6968AA,"casp_coachrobbery_lenny_males_01",2,},
{0x63F5A730,"casp_coachrobbery_micah_males_01",1,},
{0x7A8FF723,"casp_hunting02_males_01",2,},
{0x0B4466F8,"cr_strawberry_males_01",19,},
{0xA8B1C9F7,"cs_abe",2,},
{0xAB6C83B9,"cs_aberdeenpigfarmer",1,},
{0x78F9C32F,"cs_aberdeensister",2,},
{0xEED46B48,"cs_abigailroberts",15,},
{0x582954CA,"cs_acrobat",1,},
{0x6A7308E5,"cs_adamgray",1,},
{0x0596AA7B,"cs_agnesdowd",4,},
{0x28E45219,"cs_albertcakeesquire",1,},
{0x1E9A4722,"cs_albertmason",2,},
{0x19ACF207,"cs_andershelgerson",4,},
{0x31DC5CD8,"cs_angel",1,},
{0x17F33DAA,"cs_angryhusband",1,},
{0xF5FE5824,"cs_angusgeddes",2,},
{0x563E79E7,"cs_ansel_atherton",1,},
{0xCADCA094,"cs_antonyforemen",2,},
{0x328BA546,"cs_archerfordham",2,},
{0x7920404D,"cs_archibaldjameson",2,},
{0xF8BAA439,"cs_archiedown",4,},
{0x5FA98D21,"cs_artappraiser",1,},
{0x1B703333,"cs_asbdeputy_01",1,},
{0xB6AC4FC1,"cs_ashton",1,},
{0x253EF371,"cs_balloonoperator",4,},
{0x3C3844C4,"cs_bandbassist",1,},
{0x559E17B2,"cs_banddrummer",1,},
{0x8EA36E09,"cs_bandpianist",1,},
{0xF3178A28,"cs_bandsinger",1,},
{0xF3C61748,"cs_baptiste",1,},
{0xFB614B3F,"cs_bartholomewbraithwaite",2,},
{0xD29F17B9,"cs_bathingladies_01",7,},
{0xFCAF1AFE,"cs_beatenupcaptain",1,},
{0x4B780F88,"cs_beaugray",3,},
{0x7B67B26A,"cs_billwilliamson",28,},
{0xDF333F2B,"cs_bivcoachdriver",1,},
{0x1AA22618,"cs_blwphotographer",1,},
{0x4D3B6EF2,"cs_blwwitness",2,},
{0xDFE6F4B8,"cs_braithwaitebutler",1,},
{0xEB20D71E,"cs_braithwaitemaid",1,},
{0x1C76CA2D,"cs_braithwaiteservant",1,},
{0x0DBD6C20,"cs_brendacrawley",2,},
{0x90C94DCD,"cs_bronte",4,},
{0xD18A3207,"cs_brontesbutler",1,},
{0x1CC577E5,"cs_brotherdorkins",1,},
{0x0AF97379,"cs_brynntildon",2,},
{0xD012554C,"cs_bubba",2,},
{0x5411589F,"cs_cabaretmc",1,},
{0xF344B612,"cs_cajun",1,},
{0x2D0C353F,"cs_cancanman_01",1,},
{0xD0C13881,"cs_cancan_01",1,},
{0x2F5D75D4,"cs_cancan_02",1,},
{0xBD791211,"cs_cancan_03",1,},
{0x12DABCCF,"cs_cancan_04",1,},
{0x4EB9996F,"cs_captainmonroe",1,},
{0x2E6B8F33,"cs_cassidy",3,},
{0x5262264D,"cs_catherinebraithwaite",2,},
{0x5F1AD166,"cs_cattlerustler",1,},
{0x074B53CC,"cs_cavehermit",1,},
{0x8451929D,"cs_chainprisoner_01",4,},
{0xF367F0C8,"cs_chainprisoner_02",4,},
{0x53DD98DF,"cs_charlessmith",34,},
{0x34F835DE,"cs_chelonianmaster",5,},
{0xD303ACD2,"cs_cigcardguy",1,},
{0xDBCB9834,"cs_clay",1,},
{0xE44D789F,"cs_cleet",3,},
{0xFF292AA4,"cs_clive",1,},
{0x0E174AF7,"cs_colfavours",1,},
{0xCF10E769,"cs_colmodriscoll",6,},
{0x72A3A733,"cs_cooper",1,},
{0xC43EAC49,"cs_cornwalltrainconductor",1,},
{0x4BBF80D3,"cs_crackpotinventor",5,},
{0x3BF7829E,"cs_crackpotrobot",2,},
{0xC061B459,"cs_creepyoldlady",1,},
{0xD163B76B,"cs_creolecaptain",1,},
{0x3B38C996,"cs_creoledoctor",1,},
{0x96C421E4,"cs_creoleguy",1,},
{0x16C57A26,"cs_dalemaroney",2,},
{0x65A7F0E7,"cs_daveycallender",1,},
{0x9EAF0DAE,"cs_davidgeddes",2,},
{0x66E939A1,"cs_desmond",1,},
{0x8ACCB671,"cs_didsbury",1,},
{0x4AB3D571,"cs_dinoboneslady",2,},
{0x32C998FD,"cs_disguisedduster_01",1,},
{0x5888E47B,"cs_disguisedduster_02",1,},
{0x4A3D47E4,"cs_disguisedduster_03",1,},
{0x0748A3DA,"cs_doroetheawicklow",3,},
{0xF45739BF,"cs_drhiggins",1,},
{0xC8245F3C,"cs_drmalcolmmacintosh",1,},
{0x9FC15494,"cs_duncangeddes",1,},
{0xA02C1ADB,"cs_dusterinformant_01",1,},
{0x73E82274,"cs_dutch",31,},
{0x9660A42D,"cs_eagleflies",10,},
{0xFD38D463,"cs_edgarross",2,},
{0xE52A1621,"cs_edithdown",7,},
{0xCB790850,"cs_edith_john",1,},
{0x58672CFB,"cs_edmundlowry",1,},
{0x88A17BE6,"cs_escapeartist",5,},
{0x929C4793,"cs_escapeartistassistant",1,},
{0x2C4CA0A0,"cs_evelynmiller",3,},
{0xF0EAC712,"cs_exconfedinformant",1,},
{0x11E95A0F,"cs_exconfedsleader_01",1,},
{0x59D39598,"cs_exoticcollector",2,},
{0xFA274E38,"cs_famousgunslinger_01",2,},
{0x504E7A85,"cs_famousgunslinger_02",1,},
{0xDEBB9761,"cs_famousgunslinger_03",1,},
{0x14F583D4,"cs_famousgunslinger_04",1,},
{0x236820B9,"cs_famousgunslinger_05",1,},
{0x79B7CD5F,"cs_famousgunslinger_06",3,},
{0x8D374040,"cs_featherstonchambers",1,},
{0x8D6618C3,"cs_featsofstrength",2,},
{0x53308B76,"cs_fightref",1,},
{0xEADD5782,"cs_fire_breather",4,},
{0x5A3FC29E,"cs_fishcollector",4,},
{0x61F3D8F8,"cs_forgivenhusband_01",1,},
{0xD36D9790,"cs_forgivenwife_01",1,},
{0xB4449A8A,"cs_formyartbigwoman",1,},
{0x9634D7B5,"cs_francis_sinclair",1,},
{0xD809F182,"cs_frenchartist",2,},
{0xF258BC07,"cs_frenchman_01",1,},
{0x8D883B70,"cs_fussar",2,},
{0x968AB03C,"cs_garethbraithwaite",1,},
{0x4C5C60B2,"cs_gavin",2,},
{0x3CCC99B1,"cs_genstoryfemale",2,},
{0xD9E8B86A,"cs_genstorymale",1,},
{0xBB35418E,"cs_geraldbraithwaite",2,},
{0x39FD28AE,"cs_germandaughter",1,},
{0x5205A246,"cs_germanfather",5,},
{0x771EA179,"cs_germanmother",3,},
{0x0D5EB39A,"cs_germanson",2,},
{0xE1B35B43,"cs_gilbertknightly",1,},
{0x9B5487C9,"cs_gloria",1,},
{0xBDB43F31,"cs_grizzledjon",2,},
{0x9EDFC6EB,"cs_guidomartelli",3,},
{0x6D084810,"cs_hamish",1,},
{0x6D8B4BB9,"cs_hectorfellowes",3,},
{0x30324925,"cs_henrilemiux",2,},
{0x0C60474A,"cs_herbalist",1,},
{0x4C165ECF,"cs_hercule",2,},
{0xA560451D,"cs_hestonjameson",2,},
{0xB0C337A3,"cs_hobartcrawley",2,},
{0x490733E8,"cs_hoseamatthews",13,},
{0x88094B37,"cs_iangray",1,},
{0x71F7EE1B,"cs_jackmarston",8,},
{0xDA5990BC,"cs_jackmarston_teen",10,},
{0x004C2AF4,"cs_jamie",1,},
{0xD2E125B6,"cs_janson",1,},
{0x6DE3800C,"cs_javierescuella",32,},
{0x5548F1E9,"cs_jeb",3,},
{0x6C30159E,"cs_jimcalloway",1,},
{0x9DE34628,"cs_jockgray",1,},
{0xE569265F,"cs_joe",2,},
{0x54951099,"cs_joebutler",2,},
{0x05B6D06D,"cs_johnmarston",31,},
{0x442FBDDC,"cs_johnthebaptisingmadman",2,},
{0x7D357931,"cs_johnweathers",1,},
{0x3BFD7D5D,"cs_josiahtrelawny",10,},
{0xB4F83876,"cs_jules",2,},
{0x9A3E29FB,"cs_karen",16,},
{0x013504F0,"cs_karensjohn_01",2,},
{0x739BA0D6,"cs_kieran",11,},
{0xBFD90AEA,"cs_laramie",2,},
{0x97F8823A,"cs_leighgray",1,},
{0x3AEDE260,"cs_lemiuxassistant",2,},
{0xF8AE5F8D,"cs_lenny",17,},
{0xC91ADF62,"cs_leon",3,},
{0xFA0312B3,"cs_leostrauss",11,},
{0x4D24C49A,"cs_levisimon",1,},
{0x8A1FCA47,"cs_leviticuscornwall",1,},
{0x19686DFA,"cs_lillianpowell",3,},
{0x55C7D09F,"cs_lillymillet",1,},
{0x4DBE35B8,"cs_londonderryson",1,},
{0x77435EF1,"cs_lucanapoli",1,},
{0x5F5942DD,"cs_magnifico",2,},
{0x4B6ECAEF,"cs_mamawatson",1,},
{0x3940877D,"cs_marshall_thurwell",1,},
{0x9B37429C,"cs_marybeth",8,},
{0x3EA5B5BC,"cs_marylinton",5,},
{0xF04DEE7E,"cs_meditatingmonk",1,},
{0xC0321438,"cs_meredith",1,},
{0x3112E4AC,"cs_meredithsmother",1,},
{0xDE361D65,"cs_micahbell",32,},
{0xE2D294AB,"cs_micahsnemesis",1,},
{0xA1DFB431,"cs_mickey",2,},
{0x01004B26,"cs_miltonandrews",2,},
{0x859CBAAC,"cs_missmarjorie",3,},
{0xFBBC94C6,"cs_mixedracekid",2,},
{0x9BAAB546,"cs_moira",1,},
{0xEB55C35E,"cs_mollyoshea",8,},
{0x4C4448BA,"cs_mp_alfredo_montez",4,},
{0x931F01E5,"cs_mp_allison",1,},
{0x30E034CA,"cs_mp_amos_lansing",1,},
{0x39456FEE,"cs_mp_bonnie",1,},
{0x892944C5,"cs_mp_bountyhunter",1,},
{0x9F7769F3,"cs_mp_camp_cook",3,},
{0xEADDA26C,"cs_mp_cliff",1,},
{0x1DD24709,"cs_mp_cripps",25,},
{0x2CDA4B15,"cs_mp_grace_lancing",1,},
{0x893E6E25,"cs_mp_hans",1,},
{0xDAB77DF1,"cs_mp_henchman",3,},
{0x4BFBF802,"cs_mp_horley",1,},
{0x2EDEF9ED,"cs_mp_jeremiah_shaw",1,},
{0x6B759DBB,"cs_mp_jessica",3,},
{0x8BF81D72,"cs_mp_jorge_montez",2,},
{0x9A00FB76,"cs_mp_langston",1,},
{0x75DCACF2,"cs_mp_lee",1,},
{0xB93CB429,"cs_mp_mabel",1,},
{0xE24327D2,"cs_mp_marshall_davies",2,},
{0x65C51599,"cs_mp_moonshiner",1,},
{0xA3261C0D,"cs_mp_mradler",1,},
{0xE87FE55D,"cs_mp_oldman_jones",2,},
{0x4549CCA0,"cs_mp_revenge_marshall",1,},
{0xE757DE29,"cs_mp_samson_finch",3,},
{0x9A3713AD,"cs_mp_shaky",1,},
{0x28AE1CF3,"cs_mp_sherifffreeman",1,},
{0xBB202735,"cs_mp_teddybrown",2,},
{0xB36FBE5E,"cs_mp_terrance",1,},
{0x04B479C0,"cs_mp_the_boy",2,},
{0xE20455E9,"cs_mp_travellingsaleswoman",1,},
{0xB496E3FB,"cs_mp_went",3,},
{0xAB270CC9,"cs_mradler",3,},
{0xA89E5746,"cs_mrdevon",1,},
{0xEFBFEDB1,"cs_mrlinton",1,},
{0x3AAAB060,"cs_mrpearson",9,},
{0x155E51DB,"cs_mrsadler",22,},
{0x2AB79B76,"cs_mrsfellows",1,},
{0xEFC21975,"cs_mrsgeddes",1,},
{0x5187C29B,"cs_mrslondonderry",1,},
{0xFEFB81C0,"cs_mrsweathers",1,},
{0x4481AEDF,"cs_mrs_calhoun",1,},
{0x62C1389E,"cs_mrs_sinclair",1,},
{0x41A0B3F7,"cs_mrwayne",1,},
{0x84490A12,"cs_mud2bigguy",6,},
{0xF65EE3E1,"cs_mysteriousstranger",1,},
{0x753590C4,"cs_nbxdrunk",2,},
{0x79AEBA08,"cs_nbxexecuted",2,},
{0xC19649AA,"cs_nbxpolicechiefformal",1,},
{0xC175E70A,"cs_nbxreceptionist_01",1,},
{0xB304BB4D,"cs_nial_whelan",1,},
{0x4995C0A5,"cs_nicholastimmins",2,},
{0x031076F6,"cs_nils",1,},
{0xB4B65231,"cs_norrisforsythe",2,},
{0x04156A73,"cs_obediahhinton",1,},
{0xA91215CD,"cs_oddfellowspinhead",2,},
{0x62589584,"cs_odprostitute",1,},
{0x5B00992C,"cs_operasinger",1,},
{0xBC537EB7,"cs_paytah",4,},
{0x8617AB88,"cs_penelopebraithwaite",2,},
{0xA06649D4,"cs_pinkertongoon",1,},
{0x2E258627,"cs_poisonwellshaman",2,},
{0x19E97506,"cs_poorjoe",1,},
{0xDD5F0343,"cs_priest_wedding",1,},
{0x89F94DED,"cs_princessisabeau",1,},
{0x7E1809E8,"cs_professorbell",1,},
{0x85FE1E48,"cs_rainsfall",5,},
{0x7CF95C98,"cs_ramon_cortez",1,},
{0x656E59CC,"cs_reverendfortheringham",2,},
{0x60713474,"cs_revswanson",7,},
{0xC7BB68D5,"cs_rhodeputy_01",1,},
{0x583389C7,"cs_rhodeputy_02",1,},
{0x774AB298,"cs_rhodesassistant",1,},
{0x0F23E138,"cs_rhodeskidnapvictim",1,},
{0x7FA4ED12,"cs_rhodessaloonbouncer",1,},
{0x772D9802,"cs_ringmaster",1,},
{0xF79A7EC2,"cs_rockyseven_widow",5,},
{0xF0297311,"cs_samaritan",1,},
{0xCF75E336,"cs_scottgray",1,},
{0xCF12BFF0,"cs_sddoctor_01",1,},
{0xE4E66C41,"cs_sdpriest",1,},
{0x6DC2F2F2,"cs_sdsaloondrunk_01",1,},
{0x0F274F72,"cs_sdstreetkidthief",1,},
{0xEEB2E5FD,"cs_sd_streetkid_01",1,},
{0x678E7CA0,"cs_sd_streetkid_01a",1,},
{0x32541234,"cs_sd_streetkid_01b",1,},
{0x6EF76684,"cs_sd_streetkid_02",1,},
{0xE0D7A2B2,"cs_sean",17,},
{0xC192917D,"cs_sherifffreeman",2,},
{0xCEE81C27,"cs_sheriffowens",2,},
{0x839CCCAC,"cs_sistercalderon",1,},
{0xE9B80099,"cs_slavecatcher",1,},
{0x51C80EFD,"cs_soothsayer",2,},
{0x4B7EAC47,"cs_strawberryoutlaw_01",1,},
{0x99D4C8F2,"cs_strawberryoutlaw_02",1,},
{0xA792AF18,"cs_strdeputy_01",1,},
{0xDDD99BA5,"cs_strdeputy_02",1,},
{0x83E7B7BB,"cs_strsheriff_01",1,},
{0x196D5830,"cs_sunworshipper",1,},
{0x6509A069,"cs_susangrimshaw",12,},
{0xA9A328D5,"cs_swampfreak",1,},
{0x87A4C0B9,"cs_swampweirdosonny",3,},
{0x9654DDCF,"cs_sworddancer",1,},
{0x53E86B71,"cs_tavishgray",1,},
{0x21914E41,"cs_taxidermist",1,},
{0x49644A6F,"cs_theodorelevin",2,},
{0x03DFFD04,"cs_thomasdown",2,},
{0xD690782C,"cs_tigerhandler",1,},
{0x3DE6A545,"cs_tilly",12,},
{0x8868C876,"cs_timothydonahue",2,},
{0x8853FF79,"cs_tinyhermit",2,},
{0xBABFD910,"cs_tomdickens",3,},
{0x13458A93,"cs_towncrier",2,},
{0x3AF591E8,"cs_treasurehunter",1,},
{0x361005DD,"cs_twinbrother_01",2,},
{0xA49B62BA,"cs_twinbrother_02",2,},
{0xFD3C2696,"cs_twingroupie_01",1,},
{0xEB8B8335,"cs_twingroupie_02",1,},
{0xC63726DF,"cs_uncle",12,},
{0x87EF0B8D,"cs_unidusterjail_01",1,},
{0x70BEBBCF,"cs_valauctionboss_01",2,},
{0x6C07EC33,"cs_valdeputy_01",1,},
{0x4124A908,"cs_valprayingman",1,},
{0x3A643444,"cs_valprostitute_01",1,},
{0x2B769669,"cs_valprostitute_02",1,},
{0x8FB23370,"cs_valsheriff",2,},
{0xD95BCB7D,"cs_vampire",1,},
{0x36781BAC,"cs_vht_bathgirl",1,},
{0xFB0A7382,"cs_wapitiboy",1,},
{0x9C0C8EE9,"cs_warvet",3,},
{0x69439F09,"cs_watson_01",1,},
{0x8C16E4AF,"cs_watson_02",1,},
{0x44EFD66E,"cs_watson_03",1,},
{0x02E86DB1,"cs_welshfighter",1,},
{0x03387076,"cs_wintonholmes",3,},
{0xBE52968B,"cs_wrobel",1,},
{0x0D7B4617,"female_skeleton",7,},
{0x86B3E995,"gc_lemoynecaptive_males_01",1,},
{0x8C1DC732,"gc_skinnertorture_males_01",2,},
{0x70E42FE7,"ge_delloboparty_females_01",2,},
{0x335F7F4B,"g_f_m_uniduster_01",3,},
{0x1973FE45,"g_m_m_bountyhunters_01",65,},
{0xBB343A2C,"g_m_m_uniafricanamericangang_01",42,},
{0x19486791,"g_m_m_unibanditos_01",167,},
{0x2B92A067,"g_m_m_unibraithwaites_01",50,},
{0x58277E70,"g_m_m_unibrontegoons_01",83,},
{0x93A369F1,"g_m_m_unicornwallgoons_01",86,},
{0x3F094007,"g_m_m_unicriminals_01",150,},
{0x8954549C,"g_m_m_unicriminals_02",60,},
{0x14B7F44D,"g_m_m_uniduster_01",184,},
{0x030250E2,"g_m_m_uniduster_02",56,},
{0xB4163307,"g_m_m_uniduster_03",37,},
{0xD2846FE3,"g_m_m_uniduster_04",9,},
{0x4FAEEA3A,"g_m_m_uniduster_05",26,},
{0x15EB41F6,"g_m_m_unigrays_01",51,},
{0x07A1A563,"g_m_m_unigrays_02",30,},
{0x15AF635E,"g_m_m_uniinbred_01",131,},
{0x5B44EF58,"g_m_m_unilangstonboys_01",35,},
{0x0FD91413,"g_m_m_unimicahgoons_01",31,},
{0xAB3EBD92,"g_m_m_unimountainmen_01",129,},
{0xBF03A565,"g_m_m_uniranchers_01",87,},
{0xE0165EA0,"g_m_m_uniswamp_01",43,},
{0xEAD13D7C,"g_m_o_uniexconfeds_01",93,},
{0xDA82E29B,"g_m_y_uniexconfeds_01",124,},
{0xC631B9F9,"g_m_y_uniexconfeds_02",33,},
{0xA9567850,"loansharking_asbminer_males_01",1,},
{0x9DD82D05,"loansharking_horsechase1_males_01",2,},
{0x4E711917,"loansharking_undertaker_females_01",4,},
{0x67C00DFB,"loansharking_undertaker_males_01",3,},
{0xDFEF070E,"male_skeleton",4,},
{0xC4C0600A,"mbh_rhodesrancher_females_01",1,},
{0x5F0A1475,"mbh_rhodesrancher_teens_01",1,},
{0xDF4A4EAC,"mbh_skinnersearch_males_01",2,},
{0x741E7444,"mes_abigail2_males_01",4,},
{0xB7E1A569,"mes_finale2_females_01",1,},
{0x28618747,"mes_finale2_males_01",4,},
{0x389A64ED,"mes_finale3_males_01",3,},
{0x45402C7A,"mes_marston1_males_01",2,},
{0x991856F4,"mes_marston2_males_01",4,},
{0x3E837D5B,"mes_marston5_2_males_01",1,},
{0x01C0B992,"mes_marston6_females_01",1,},
{0x7BE6B9E8,"mes_marston6_males_01",29,},
{0x1DE80335,"mes_marston6_teens_01",1,},
{0x74B85769,"mes_sadie4_males_01",1,},
{0x09FBB7EC,"mes_sadie5_males_01",7,},
{0x9775AA11,"mp_asntrk_elysianpool_males_01",6,},
{0xA8D76FEE,"mp_asntrk_grizzlieswest_males_01",6,},
{0x6F3BC4E1,"mp_asntrk_hagenorchard_males_01",6,},
{0xE9C4EF73,"mp_asntrk_isabella_males_01",6,},
{0x61227303,"mp_asntrk_talltrees_males_01",6,},
{0xE30D07F8,"mp_asn_benedictpoint_females_01",1,},
{0x8F4385F4,"mp_asn_benedictpoint_males_01",6,},
{0x9A33030D,"mp_asn_blackwater_males_01",6,},
{0xFF2ED4F7,"mp_asn_braithwaitemanor_males_01",2,},
{0xA6EFA47E,"mp_asn_braithwaitemanor_males_02",4,},
{0xA1A899F0,"mp_asn_braithwaitemanor_males_03",5,},
{0x157604BC,"mp_asn_civilwarfort_males_01",6,},
{0x3A31D8F5,"mp_asn_gaptoothbreach_males_01",6,},
{0x83DD3196,"mp_asn_pikesbasin_males_01",5,},
{0x75D3315F,"mp_asn_sdpolicestation_males_01",6,},
{0xA04152A6,"mp_asn_sdwedding_females_01",3,},
{0xEB1EA62E,"mp_asn_sdwedding_males_01",5,},
{0x4B40DFF1,"mp_asn_shadybelle_females_01",1,},
{0xBAD040F0,"mp_asn_stillwater_males_01",6,},
{0x586000CF,"MP_A_C_HORSECORPSE_01",16,},
{0xEE6C00F6,"mp_a_f_m_cardgameplayers_01",40,},
{0x37DF19AF,"MP_A_F_M_UniCorpse_01",44,},
{0xC7FDE9D0,"mp_a_m_m_laboruprisers_01",53,},
{0x82868F58,"MP_A_M_M_UniCorpse_01",142,},
{0x79E64F11,"mp_campdef_bluewater_females_01",1,},
{0xD26B0098,"mp_campdef_bluewater_males_01",1,},
{0x82228527,"mp_campdef_chollasprings_females_01",1,},
{0xB128F981,"mp_campdef_chollasprings_males_01",2,},
{0x91ACA5B0,"mp_campdef_eastnewhanover_females_01",1,},
{0x4F356F45,"mp_campdef_eastnewhanover_males_01",1,},
{0xF1C2D3BB,"mp_campdef_gaptoothbreach_females_01",1,},
{0xAAD4292A,"mp_campdef_gaptoothbreach_males_01",3,},
{0x219743D5,"mp_campdef_gaptoothridge_females_01",1,},
{0xB5FEE612,"mp_campdef_gaptoothridge_males_01",1,},
{0xC1B6341E,"mp_campdef_greatplains_males_01",2,},
{0x543F0860,"mp_campdef_grizzlies_males_01",2,},
{0x476306CA,"mp_campdef_heartlands1_males_01",2,},
{0xCF202B72,"mp_campdef_heartlands2_females_01",1,},
{0x3B46C480,"mp_campdef_heartlands2_males_01",2,},
{0x4166D3EF,"mp_campdef_hennigans_females_01",1,},
{0x62593BC8,"mp_campdef_hennigans_males_01",1,},
{0xF5A25A7E,"mp_campdef_littlecreek_females_01",1,},
{0xF4CAA01F,"mp_campdef_littlecreek_males_01",1,},
{0xE572A054,"mp_campdef_radleyspasture_females_01",1,},
{0x4A465245,"mp_campdef_radleyspasture_males_01",1,},
{0xC4DB3101,"mp_campdef_riobravo_females_01",1,},
{0x5CE15A39,"mp_campdef_riobravo_males_01",1,},
{0xEA68B402,"mp_campdef_roanoke_females_01",1,},
{0x24673B50,"mp_campdef_roanoke_males_01",1,},
{0x5608A222,"mp_campdef_talltrees_females_01",1,},
{0xD429EEF9,"mp_campdef_talltrees_males_01",1,},
{0xB05F95C2,"mp_campdef_tworocks_females_01",2,},
{0x20D9D1FF,"mp_chu_kid_armadillo_males_01",4,},
{0xD081C01E,"mp_chu_kid_diabloridge_males_01",4,},
{0xC45D87AE,"mp_chu_kid_emrstation_males_01",4,},
{0xD5B76DF0,"mp_chu_kid_greatplains2_males_01",4,},
{0xDBB0CB10,"mp_chu_kid_greatplains_males_01",4,},
{0x4E7A9BCF,"mp_chu_kid_heartlands_males_01",4,},
{0xBF8EE294,"mp_chu_kid_lagras_males_01",4,},
{0x26D5E34F,"mp_chu_kid_lemoyne_females_01",2,},
{0x24E340FC,"mp_chu_kid_lemoyne_males_01",2,},
{0xCE06BE54,"mp_chu_kid_recipient_males_01",22,},
{0x562372BD,"mp_chu_kid_rhodes_males_01",4,},
{0xF7B029BE,"mp_chu_kid_saintdenis_females_01",1,},
{0xF21F12DE,"mp_chu_kid_saintdenis_males_01",3,},
{0xBB574D98,"mp_chu_kid_scarlettmeadows_males_01",4,},
{0x199209F3,"mp_chu_kid_tumbleweed_males_01",4,},
{0xB59A184C,"mp_chu_kid_valentine_males_01",4,},
{0x91359C49,"mp_chu_rob_ambarino_males_01",3,},
{0xE8B7EB0E,"mp_chu_rob_annesburg_males_01",4,},
{0xED566DA8,"mp_chu_rob_benedictpoint_females_01",2,},
{0x2361B4FF,"mp_chu_rob_benedictpoint_males_01",2,},
{0x4DF62143,"mp_chu_rob_blackwater_males_01",4,},
{0xD1DD5373,"mp_chu_rob_caligahall_males_01",4,},
{0xE910B9B1,"mp_chu_rob_coronado_males_01",4,},
{0xEEB13746,"mp_chu_rob_cumberland_males_01",4,},
{0x3D8A8881,"mp_chu_rob_fortmercer_females_01",2,},
{0xA3C40220,"mp_chu_rob_fortmercer_males_01",2,},
{0x2B7FB829,"mp_chu_rob_greenhollow_males_01",4,},
{0x900768E4,"mp_chu_rob_macfarlanes_females_01",2,},
{0x0C11A638,"mp_chu_rob_macfarlanes_males_01",2,},
{0xA23C0877,"mp_chu_rob_macleans_males_01",4,},
{0x71F63119,"mp_chu_rob_millesani_males_01",4,},
{0xA33F8565,"mp_chu_rob_montanariver_males_01",4,},
{0xAE81DF28,"mp_chu_rob_paintedsky_males_01",4,},
{0x26141D84,"mp_chu_rob_rathskeller_males_01",4,},
{0xB5796996,"mp_chu_rob_recipient_males_01",33,},
{0x67C9491C,"mp_chu_rob_rhodes_males_01",4,},
{0x37AA104A,"mp_chu_rob_strawberry_males_01",4,},
{0xDEC0EF74,"mp_clay",1,},
{0x36C085D8,"mp_convoy_recipient_females_01",2,},
{0xE5ED64CE,"mp_convoy_recipient_males_01",19,},
{0xD2AFC802,"mp_de_u_f_m_bigvalley_01",1,},
{0xEB7C292D,"mp_de_u_f_m_bluewatermarsh_01",1,},
{0xC615E4DE,"mp_de_u_f_m_braithwaite_01",2,},
{0xFF7134DC,"mp_de_u_f_m_doverhill_01",1,},
{0xDD895162,"mp_de_u_f_m_greatplains_01",1,},
{0xCB42A78F,"mp_de_u_f_m_hangingrock_01",1,},
{0x410D82BF,"mp_de_u_f_m_heartlands_01",1,},
{0x8841B9D2,"mp_de_u_f_m_hennigansstead_01",2,},
{0xC50A2A9C,"mp_de_u_f_m_silentstead_01",1,},
{0xE079768D,"mp_de_u_m_m_aurorabasin_01",1,},
{0x1A06F260,"mp_de_u_m_m_barrowlagoon_01",1,},
{0x30F2FBC2,"mp_de_u_m_m_bigvalleygraves_01",1,},
{0x54666FF4,"mp_de_u_m_m_centralunionrr_01",1,},
{0x6965178B,"mp_de_u_m_m_pleasance_01",1,},
{0x7C77D19F,"mp_de_u_m_m_rileyscharge_01",1,},
{0x7AA6CC47,"mp_de_u_m_m_vanhorn_01",1,},
{0x196B59E0,"mp_de_u_m_m_westernhomestead_01",1,},
{0x1029BAEF,"mp_dr_u_f_m_bayougatorfood_01",1,},
{0x803C4357,"mp_dr_u_f_m_bigvalleycave_01",1,},
{0xE782AB5E,"mp_dr_u_f_m_bigvalleycliff_01",1,},
{0x5A8DED76,"mp_dr_u_f_m_bluewaterkidnap_01",1,},
{0xA3696C2E,"mp_dr_u_f_m_colterbandits_01",1,},
{0x911B4792,"mp_dr_u_f_m_colterbandits_02",1,},
{0xB9E9E8B1,"mp_dr_u_f_m_missingfisherman_01",1,},
{0x87AB8435,"mp_dr_u_f_m_missingfisherman_02",1,},
{0xA4C6684C,"mp_dr_u_f_m_mistakenbounties_01",1,},
{0x8C3740DD,"mp_dr_u_f_m_plaguetown_01",1,},
{0xEF81CFCA,"mp_dr_u_f_m_quakerscove_01",1,},
{0xFD486B57,"mp_dr_u_f_m_quakerscove_02",1,},
{0x20A8A154,"mp_dr_u_f_m_sdgraveyard_01",1,},
{0xC7DE347E,"mp_dr_u_m_m_bigvalleycave_01",1,},
{0xD9E86551,"mp_dr_u_m_m_bigvalleycliff_01",1,},
{0xA445B5D7,"mp_dr_u_m_m_bluewaterkidnap_01",1,},
{0x23135A75,"mp_dr_u_m_m_canoeescape_01",1,},
{0x322BCA91,"mp_dr_u_m_m_hwyrobbery_01",1,},
{0x103F4CF2,"mp_dr_u_m_m_mistakenbounties_01",1,},
{0xD63E91BF,"mp_dr_u_m_m_pikesbasin_01",1,},
{0xF2CDCADD,"mp_dr_u_m_m_pikesbasin_02",1,},
{0x59D8AB63,"mp_dr_u_m_m_plaguetown_01",1,},
{0x9A8AF99B,"mp_dr_u_m_m_roanokestandoff_01",1,},
{0xE80A6258,"mp_dr_u_m_m_sdgraveyard_01",1,},
{0xC33224A7,"mp_dr_u_m_m_sdmugging_01",1,},
{0x957FC943,"mp_dr_u_m_m_sdmugging_02",1,},
{0xAA266E1C,"mp_freeroam_tut_females_01",5,},
{0x217A0594,"mp_freeroam_tut_males_01",8,},
{0xC36F9B8C,"mp_gunvoutd2_males_01",11,},
{0x3D6054E3,"mp_gunvoutd3_bht_01",2,},
{0xAD674654,"mp_gunvoutd3_males_01",3,},
{0x556ADA44,"mp_g_f_m_laperlegang_01",26,},
{0x64F76F7E,"mp_g_f_m_laperlevips_01",13,},
{0xF7A82771,"mp_g_f_m_owlhootfamily_01",17,},
{0x9E00472E,"mp_g_m_m_armoredjuggernauts_01",12,},
{0xC6BEFCC7,"mp_g_m_m_bountyhunters_01",50,},
{0x8496557A,"mp_g_m_m_owlhootfamily_01",25,},
{0xC848BCB9,"mp_g_m_m_redbengang_01",38,},